Giter VIP home page Giter VIP logo

obfuscatethis's Introduction

ObfuscateThis

Templated Obfuscation example in C++ for protecting/hiding values in memory

What is this?

A single file solution written in C++ for obfuscating both templated primitive types and strings. Currently two different methods are displayed in Obfuscate.cpp: regular arithmetic and 'key-based'. Arithmetic obfuscation uses a simple XOR operation along with an addition or subtraction on every even/odd byte (to prevent XOR brute forcing). Key-based uses a similar approach, except the value used to add and subtract after XORing is generated by seeding an RNG (mt19937). Using the key-based approach, values can only be properly deobfuscated if the correct key is given, and different variables can use different keys. String obfuscation loops over each letter in an input string and performs the same operation as mentioned above - XOR and then add or subtract. In our example, the class ProtectedData contains a templated type variable that we would like to obfuscate.

Memory Implications

All routines are set as __forceinline such that a single routine cannot be hooked and reversed to reveal secrets, and only copies of our protected data are returned from deobfuscation functions. This ensures our protected data stays obfuscated within memory, and there are only a couple of assembler instructions where our protected data's memory address contains the origial value.

Thank you for reading and taking an interest, happy coding.

obfuscatethis's People

Contributors

alsch092 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.