Giter Club home page Giter Club logo

universal-proxy-remover's Introduction

Jomtek's Universal Proxy-Remover

Unfortunately, at the moment, this proxy fixer can only fix proxies which return literal values. For example, this proxy won't get fixed :

static int myProxy() {
	return 1 + 1;
} 

But I'm doing my best to update it asap :)

What is a proxy ?

When we're talking about IL code and .NET reverse engineering, a "proxy" is an intermediate method to a value. Quick example

static void main(string[] args) {
	Console.WriteLine(myProxy());
}

static int myProxy() {
	return "hello!;
}

As you can see, proxies can make values harder to read. Now imagine this applied to thousands of values, submersed in thousands of lines of code...

Proxy depth

Obviously, proxies can call other proxies, which will then call other proxies... That's why I added a "depth" setting on this proxy remover. Quick example of a depth 2 proxified code.

static void main(string[] args) {
    Console.WriteLine(myProxy());
}

static int myProxy() {
    return anotherProxy();
}

static int anotherProxy() {
    return "hello!";
}


Result after proxy removal :

static void main(string[] args) {
    Console.WriteLine("hello!");
}

Credits

Special thanks to

  • the NetShields Obfuscator community
  • 0x4d4 (dnlib's inventor)
  • Mindsystemm (a nice friend of mine)

universal-proxy-remover's People

Contributors

jomtek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.