├── .gitignore ├── README ├── bind_tcp_standalone ├── GetProcAddressR.c ├── GetProcAddressR.h ├── LoadLibraryR.c ├── LoadLibraryR.h ├── ReflectiveDLLInjection.h ├── bind_tcp_standalone.c ├── bind_tcp_standalone.vcxproj └── bind_tcp_standalone.vcxproj.filters ├── new_bind_meterpreter ├── new_bind_meterpreter.c ├── new_bind_meterpreter.vcxproj └── new_bind_meterpreter.vcxproj.filters ├── new_reverse_meterpreter ├── new_reverse_meterpreter.c ├── new_reverse_meterpreter.vcxproj └── new_reverse_meterpreter.vcxproj.filters ├── python-proxy ├── encrypting_proxy_bind.py └── encrypting_proxy_reverse.py ├── reverse_tcp_standalone ├── GetProcAddressR.c ├── GetProcAddressR.h ├── LoadLibraryR.c ├── LoadLibraryR.h ├── ReflectiveDLLInjection.h ├── reverse_tcp_standalone.c ├── reverse_tcp_standalone.vcxproj └── reverse_tcp_standalone.vcxproj.filters └── undetected-meterpreter-stagers.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/README -------------------------------------------------------------------------------- /bind_tcp_standalone/GetProcAddressR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/GetProcAddressR.c -------------------------------------------------------------------------------- /bind_tcp_standalone/GetProcAddressR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/GetProcAddressR.h -------------------------------------------------------------------------------- /bind_tcp_standalone/LoadLibraryR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/LoadLibraryR.c -------------------------------------------------------------------------------- /bind_tcp_standalone/LoadLibraryR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/LoadLibraryR.h -------------------------------------------------------------------------------- /bind_tcp_standalone/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /bind_tcp_standalone/bind_tcp_standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/bind_tcp_standalone.c -------------------------------------------------------------------------------- /bind_tcp_standalone/bind_tcp_standalone.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/bind_tcp_standalone.vcxproj -------------------------------------------------------------------------------- /bind_tcp_standalone/bind_tcp_standalone.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/bind_tcp_standalone/bind_tcp_standalone.vcxproj.filters -------------------------------------------------------------------------------- /new_bind_meterpreter/new_bind_meterpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_bind_meterpreter/new_bind_meterpreter.c -------------------------------------------------------------------------------- /new_bind_meterpreter/new_bind_meterpreter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_bind_meterpreter/new_bind_meterpreter.vcxproj -------------------------------------------------------------------------------- /new_bind_meterpreter/new_bind_meterpreter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_bind_meterpreter/new_bind_meterpreter.vcxproj.filters -------------------------------------------------------------------------------- /new_reverse_meterpreter/new_reverse_meterpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_reverse_meterpreter/new_reverse_meterpreter.c -------------------------------------------------------------------------------- /new_reverse_meterpreter/new_reverse_meterpreter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_reverse_meterpreter/new_reverse_meterpreter.vcxproj -------------------------------------------------------------------------------- /new_reverse_meterpreter/new_reverse_meterpreter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/new_reverse_meterpreter/new_reverse_meterpreter.vcxproj.filters -------------------------------------------------------------------------------- /python-proxy/encrypting_proxy_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/python-proxy/encrypting_proxy_bind.py -------------------------------------------------------------------------------- /python-proxy/encrypting_proxy_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/python-proxy/encrypting_proxy_reverse.py -------------------------------------------------------------------------------- /reverse_tcp_standalone/GetProcAddressR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/GetProcAddressR.c -------------------------------------------------------------------------------- /reverse_tcp_standalone/GetProcAddressR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/GetProcAddressR.h -------------------------------------------------------------------------------- /reverse_tcp_standalone/LoadLibraryR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/LoadLibraryR.c -------------------------------------------------------------------------------- /reverse_tcp_standalone/LoadLibraryR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/LoadLibraryR.h -------------------------------------------------------------------------------- /reverse_tcp_standalone/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /reverse_tcp_standalone/reverse_tcp_standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/reverse_tcp_standalone.c -------------------------------------------------------------------------------- /reverse_tcp_standalone/reverse_tcp_standalone.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/reverse_tcp_standalone.vcxproj -------------------------------------------------------------------------------- /reverse_tcp_standalone/reverse_tcp_standalone.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/reverse_tcp_standalone/reverse_tcp_standalone.vcxproj.filters -------------------------------------------------------------------------------- /undetected-meterpreter-stagers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiabloHorn/undetected-meterpreter-stagers/HEAD/undetected-meterpreter-stagers.sln --------------------------------------------------------------------------------