├── .gitattributes ├── .gitignore ├── LICENSE ├── Native ├── Native.cpp ├── Native.vcxproj ├── Native.vcxproj.filters ├── ReadMe.txt ├── ReflectiveDLLInjection.h ├── ReflectiveLoader.c ├── ReflectiveLoader.h ├── RemoteReconKS_dll.hpp ├── clr.cpp ├── clr.hpp ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── utils.hpp ├── New-RemoteReconHeader.ps1 ├── README.md ├── RemoteRecon.js ├── RemoteRecon.ps1 ├── RemoteReconCore ├── Core.cs ├── FodyWeavers.xml ├── Impersonate.cs ├── Injector.cs ├── Jobs.cs ├── Keylogger.cs ├── PowerShell.cs ├── Properties │ └── AssemblyInfo.cs ├── RemoteReconCore.csproj ├── Screenshot.cs ├── WinApi.cs └── packages.config ├── RemoteReconKS.sln └── RemoteReconKS ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── RemoteReconKS.csproj ├── WinApi.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/LICENSE -------------------------------------------------------------------------------- /Native/Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/Native.cpp -------------------------------------------------------------------------------- /Native/Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/Native.vcxproj -------------------------------------------------------------------------------- /Native/Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/Native.vcxproj.filters -------------------------------------------------------------------------------- /Native/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/ReadMe.txt -------------------------------------------------------------------------------- /Native/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /Native/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/ReflectiveLoader.c -------------------------------------------------------------------------------- /Native/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/ReflectiveLoader.h -------------------------------------------------------------------------------- /Native/RemoteReconKS_dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/RemoteReconKS_dll.hpp -------------------------------------------------------------------------------- /Native/clr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/clr.cpp -------------------------------------------------------------------------------- /Native/clr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/clr.hpp -------------------------------------------------------------------------------- /Native/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/dllmain.cpp -------------------------------------------------------------------------------- /Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/stdafx.cpp -------------------------------------------------------------------------------- /Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/stdafx.h -------------------------------------------------------------------------------- /Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/targetver.h -------------------------------------------------------------------------------- /Native/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/Native/utils.hpp -------------------------------------------------------------------------------- /New-RemoteReconHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/New-RemoteReconHeader.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/README.md -------------------------------------------------------------------------------- /RemoteRecon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteRecon.js -------------------------------------------------------------------------------- /RemoteRecon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteRecon.ps1 -------------------------------------------------------------------------------- /RemoteReconCore/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Core.cs -------------------------------------------------------------------------------- /RemoteReconCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/FodyWeavers.xml -------------------------------------------------------------------------------- /RemoteReconCore/Impersonate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Impersonate.cs -------------------------------------------------------------------------------- /RemoteReconCore/Injector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Injector.cs -------------------------------------------------------------------------------- /RemoteReconCore/Jobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Jobs.cs -------------------------------------------------------------------------------- /RemoteReconCore/Keylogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Keylogger.cs -------------------------------------------------------------------------------- /RemoteReconCore/PowerShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/PowerShell.cs -------------------------------------------------------------------------------- /RemoteReconCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RemoteReconCore/RemoteReconCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/RemoteReconCore.csproj -------------------------------------------------------------------------------- /RemoteReconCore/Screenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/Screenshot.cs -------------------------------------------------------------------------------- /RemoteReconCore/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/WinApi.cs -------------------------------------------------------------------------------- /RemoteReconCore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconCore/packages.config -------------------------------------------------------------------------------- /RemoteReconKS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS.sln -------------------------------------------------------------------------------- /RemoteReconKS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS/Program.cs -------------------------------------------------------------------------------- /RemoteReconKS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RemoteReconKS/RemoteReconKS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS/RemoteReconKS.csproj -------------------------------------------------------------------------------- /RemoteReconKS/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS/WinApi.cs -------------------------------------------------------------------------------- /RemoteReconKS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RemoteRecon/HEAD/RemoteReconKS/app.config --------------------------------------------------------------------------------