8 Repos
Systems that inject and execute code into running environments without requiring full process restarts.
Distinct from Code Execution Runtimes: Focuses on the dynamic injection of code into a warm runtime, unlike general execution environments.
Explore 8 awesome GitHub repositories matching devops & infrastructure · Dynamic Code Loaders. Refine with filters or upvote what's useful.
Fission is a function-as-a-service platform and serverless framework for Kubernetes. It manages the lifecycle and execution of code snippets as serverless functions, providing an orchestrator that triggers these functions based on HTTP requests, message queues, or scheduled events. The platform features a cold-start optimized runtime that utilizes warm container pools and dynamic loaders to achieve millisecond execution. It includes a native autoscaler to adjust the number of function instances based on real-time traffic demand and supports canary release testing to split incoming traffic bet
Injects function code into running containers at runtime to eliminate the overhead of container restarts.
jsfuck ist eine esoterische Programmiersprache und ein JavaScript-Quellcode-Obfuscator. Er fungiert als Code-Encoder, der Standard-JavaScript-Quellcode in ein funktionales Äquivalent transformiert, das aus einem minimalen Zeichensatz besteht. Das Projekt beschränkt seinen Quellcode auf sechs spezifische Zeichen, um Logik zu verbergen und Sicherheitsfilter zu umgehen, die standardmäßige alphanumerische Zeichen blockieren. Dies wird durch Typ-Coercion erreicht, um Symbole abzuleiten und auf interne Sprachobjekte durch Prototyp-Manipulation zuzugreifen. Das System ermöglicht die Ausführung beliebigen JavaScript-Codes durch die Umwandlung von Strings in ausführbare Funktionen und den Zugriff auf den globalen Scope über den Ausführungskontext. Es verwaltet komplexe Logik und Funktionsargumente durch die Verwendung von Array-Wrappern und nativen Konstruktor-Aufrufen.
Enables the execution of arbitrary logic by converting obfuscated strings into executable JavaScript functions.
This project is a comprehensive library of practical Python code examples and patterns. It provides a collection of scripts and snippets designed to demonstrate a wide range of programming tasks, from basic syntax to advanced implementation patterns. The repository focuses on several core domains, including the implementation of concurrency and multithreading examples, data analysis snippets for cleaning and manipulating tabular data, and various data visualization examples. It also covers automation scripts for file system management and a variety of general programming patterns. Additional
A Python capability that compiles a text string into executable code and runs it within the current environment.
A True Instrumentable Binary Emulation Framework
Provides a dynamic code hotpatching engine that modifies emulated code at runtime without restarting the binary.
Dieses Projekt ist ein umfassender Leitfaden für das Schreiben von Neovim-Konfigurationen und Plugins unter Verwendung der Programmiersprache Lua. Es dient als Handbuch für die Nutzung der nativen Neovim-Lua-API zur Verwaltung von Buffern, Fenstern und Editor-Optionen. Der Leitfaden konzentriert sich auf die Interoperabilität zwischen Lua und Vimscript und bietet Anleitungen, wie Vimscript aus Lua ausgeführt und wie Lua-Funktionen aus Vimscript aufgerufen werden können. Zudem bietet er ein Framework für die Plugin-Entwicklung, das die Organisation von Code in externe Module sowie die Erstellung benutzerdefinierter Befehle und Key-Mappings abdeckt. Die Dokumentation umfasst weiterführende Funktionen wie die Automatisierung von Editor-Workflows, die Manipulation interner Variablen und die Verwaltung von Editor-Optionen. Sie enthält zudem Anleitungen zum Sourcing externer Dateien und zum Modifizieren von Buffer-Zeilen.
Describes the process of executing Vimscript command strings from within Lua scripts.
Dieses Projekt ist eine Sammlung von Malware-Analyseberichten und dekompiliertem Code, die sich auf eine in eine Android-Anwendung eingebettete Backdoor konzentriert. Es dient als Studie zu Android-APK-Malware und dokumentiert die spezifischen Codemuster, die für unbefugten Datenzugriff und die Umgehung von Systemsicherheitsmechanismen verwendet werden. Die Forschung konzentriert sich auf dynamisches Bytecode-Laden und die Ausführung von Remote-Dateien zur Implementierung von Persistenz. Sie analysiert spezifisch Mechanismen zum Herunterladen und Ausführen von Remote-Dalvik-Executable-Dateien, um das Anwendungsverhalten zu ändern, ohne das installierte Paket zu aktualisieren. Die Analyse deckt mehrere Sicherheitsdomänen ab, einschließlich der Forschung zur Privilegienerweiterung, um zu identifizieren, wie Systemprüfungen für erhöhte Berechtigungen umgangen werden. Sie enthält zudem Audits von Datenexfiltrationstechniken, die zum Abfangen von Systembenachrichtigungen und Anwendungsnutzungsaufzeichnungen verwendet werden.
Investigates the injection and execution of remote DEX files into running Android environments for persistence.
Freeline is a mobile application update framework and bytecode hot-swap engine designed to deliver incremental binary updates to devices. It functions as a binary diff patching tool and a mobile over-the-air patching framework that allows for the delivery of small update packages to fix bugs and replace resources without requiring a full application reinstall. The system distinguishes itself through its ability to perform dynamic code swapping and native library updating. It replaces shared object binaries and code segments in a running process via socket servers, enabling logic updates and h
Injects and executes updated code into a running mobile environment without requiring a full process restart.
Haml is a Ruby HTML template engine and server-side rendering library. It functions as an HTML markup preprocessor that transforms a concise, indentation-based shorthand syntax into standard HTML and XHTML markup. The system uses hierarchical whitespace instead of explicit closing tags to define the structure of documents, reducing boilerplate during markup authoring. It integrates Ruby logic directly into templates to evaluate conditional statements, process dynamic data, and interpolate values. The engine provides tools for managing element attributes through hashes, controlling output whi
Integrates logic into templates by executing Ruby code to output results or run control statements.