Coder Social home page Coder Social logo

perfectproxydll's Introduction

Perfect Proxy

A simple and stable proxy DLL for Windows x64.

Notes

Assembly inlining is not supported in MSVC on x64, therefore this project uses GCC through MinGW.

Compilation

  • mingw-w64 7.0.0+
  • CMake 3.16+

If you get an error like: undefined reference to 'orig_somefunc', you may need to prefix your assembly symbols with an underscore:

#define WRAPPER_GENFUNC(name) \
	FARPROC orig_##name; \
	__declspec(naked) void _##name() \
	{ \
-		asm("jmp *orig_"#name); \
+		asm("jmp *_orig_"#name); \
	}

Source: https://stackoverflow.com/a/36359457

References

perfectproxydll's People

Contributors

virb3 avatar

Stargazers

43trh avatar Nathan Hutchision avatar Brandon Lopez avatar Mimiron avatar  avatar NunYah_BitNiz avatar IKD avatar YoungChief avatar  avatar  avatar

Watchers

James Cloos avatar  avatar  avatar

Forkers

mmg1

perfectproxydll's Issues

32-bit support

Any idea how to get this work under 32-bit environment ? I can compile the the project without issues, but any application I launch where this library gets initialized crashes with access violation after I confirm the message box

Originally posted by @iceman-77 in #2 (comment)

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.