awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 रिपॉजिटरी

Awesome GitHub RepositoriesSource Code Obfuscation

Techniques for making source code intentionally difficult for humans to read and maintain.

Distinct from Code Obfuscators: Distinct from Code Obfuscators which are typically automated tools for reverse-engineering prevention; this focuses on manual coding patterns for unmaintainability.

Explore 5 awesome GitHub repositories matching software engineering & architecture · Source Code Obfuscation. Refine with filters or upvote what's useful.

Awesome Source Code Obfuscation GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • zeit/pkgzeit का अवतार

    zeit/pkg

    24,366GitHub पर देखें↗

    pkg is a Node.js executable packager and cross-platform binary compiler. It bundles a project and its dependencies into a single standalone executable file that runs without a pre-installed runtime on the target machine. The tool uses a virtual filesystem bundler to embed project assets and native modules into a binary snapshot. It includes a bytecode obfuscator that compiles source code into bytecode to prevent the extraction of raw logic. The project supports cross-platform distribution, allowing the generation of binaries for different operating systems and architectures from a single hos

    Compiles source code into bytecode to obscure raw logic and prevent easy extraction.

    JavaScript
    GitHub पर देखें↗24,366
  • droogans/unmaintainable-codeDroogans का अवतार

    Droogans/unmaintainable-code

    10,161GitHub पर देखें↗

    This project is a programming satire project and a curated catalog of software anti-patterns designed to demonstrate how to write intentionally unmaintainable and fragile code. It serves as a maintainability educational resource and a study in poor design choices, using extreme examples of obfuscated logic to teach developers how to recognize and avoid technical debt. The project provides a comprehensive guide to code obfuscation, focusing on techniques to hide program logic through deceptive naming, bizarre control flows, and misleading documentation. It distinguishes itself by intentionally

    Provides a comprehensive guide on using confusing naming and bizarre logic to prevent effective codebase maintenance.

    GitHub पर देखें↗10,161
  • aemkei/jsfuckaemkei का अवतार

    aemkei/jsfuck

    8,596GitHub पर देखें↗

    jsfuck एक गूढ़ (esoteric) प्रोग्रामिंग भाषा और JavaScript सोर्स ऑब्फ़ुस्केटर है। यह एक कोड एन्कोडर के रूप में कार्य करता है जो स्टैंडर्ड JavaScript सोर्स कोड को एक न्यूनतम कैरेक्टर सेट से बने कार्यात्मक समकक्ष में बदल देता है। यह प्रोजेक्ट अपने सोर्स कोड को छह विशिष्ट कैरेक्टर्स तक सीमित करता है ताकि लॉजिक को छिपाया जा सके और उन सुरक्षा फ़िल्टर्स को बायपास किया जा सके जो स्टैंडर्ड अल्फ़ान्यूमेरिक कैरेक्टर्स को ब्लॉक करते हैं। यह प्रतीकों को प्राप्त करने के लिए टाइप कोएर्शन (type coercion) का उपयोग करके और प्रोटोटाइप मैनिपुलेशन के माध्यम से आंतरिक भाषा ऑब्जेक्ट्स तक पहुंच प्राप्त करके इसे हासिल करता है। यह सिस्टम स्ट्रिंग्स को निष्पादन योग्य फंक्शन्स में बदलकर और निष्पादन संदर्भ (execution context) के माध्यम से ग्लोबल स्कोप तक पहुंच प्राप्त करके मनमाना JavaScript निष्पादन सक्षम बनाता है। यह ऐरे रैपर्स और नेटिव कंस्ट्रक्टर कॉल्स का उपयोग करके जटिल लॉजिक और फ़ंक्शन तर्कों को प्रबंधित करता है।

    Hides JavaScript logic by transforming it into an unconventional format of six characters that is difficult for humans to read.

    JavaScript
    GitHub पर देखें↗8,596
  • reinderien/mimicreinderien का अवतार

    reinderien/mimic

    3,755GitHub पर देखें↗

    Mimic is a unicode homoglyph generator and text obfuscation tool. It functions as a character substitutor that replaces standard ASCII characters with visually similar Unicode symbols to create text that appears correct to humans but is functionally different. The project is used for source code obfuscation by inserting subtle syntax errors into code to hide intent or break automated analysis. It also serves as a tool for textual adversarial testing to evaluate the resilience of software filters against maliciously crafted input. The utility achieves these results through a mapping system th

    Inserts subtle syntax errors into source code using deceptive Unicode characters to hide intent or break analysis.

    Python
    GitHub पर देखें↗3,755
  • zeusssz/hercules-obfuscatorzeusssz का अवतार

    zeusssz/hercules-obfuscator

    217GitHub पर देखें↗

    Hercules is a security tool designed to protect Lua source code from reverse engineering and unauthorized analysis. It functions as a code transformation engine that secures application logic by applying multiple layers of obfuscation, including control flow manipulation and the wrapping of scripts within a custom virtual machine environment. The project distinguishes itself through a multi-stage pipeline architecture that allows for the development of custom, multi-layered protection strategies. By replacing standard language instructions with custom opcodes and reorganizing linear code into

    Transforms Lua scripts using techniques like variable renaming and control flow manipulation to prevent reverse engineering of proprietary application logic.

    Lualualua-obfuscatorobfuscator
    GitHub पर देखें↗217
  1. Home
  2. Software Engineering & Architecture
  3. Source Code Obfuscation

सब-टैग एक्सप्लोर करें

  • Lua Source Code ObfuscatorsTools that transform Lua scripts to prevent reverse engineering through renaming and control flow manipulation. **Distinct from Source Code Obfuscation:** Distinct from Source Code Obfuscation: focuses on automated Lua-specific obfuscation tools rather than manual coding patterns.
  • Obfuscation ShowcasesStatic interfaces demonstrating code transformation and obfuscation techniques for developer review. **Distinct from Source Code Obfuscation:** Distinct from Source Code Obfuscation: focuses on the presentation/showcase of obfuscation results rather than the obfuscation techniques themselves.