├── GRAT2_Client.sln ├── GRAT2_Client ├── Anti-Functions.cs ├── Client.cs ├── Config.cs ├── DInvoke │ ├── DInterop.cs │ └── DynamicInvokeClass.cs ├── DNSClient.cs ├── Encryption.cs ├── Execute.cs ├── GRAT2_Client.csproj ├── GRAT2_Client.csproj.user ├── Injectious │ ├── CreateRemThread.cs │ ├── DCreateRemThread.cs │ ├── DecGzip.cs │ ├── PPID.cs │ ├── SearchPID.cs │ ├── UserAPC.cs │ ├── UserAPCPPID.cs │ └── procHollowing.cs ├── PInvoke │ ├── Interop.cs │ └── flags.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── app.config ├── Tasks.cs └── Tokens_UAC │ ├── ProcessImpersonation.cs │ └── UAC_Bypass.cs ├── GRAT2_Server ├── Agents │ └── README.md ├── Data │ └── README.md ├── GRAT2_Shellcodes │ └── README.md ├── Net_Assemblies │ └── README.md ├── dnslistener.py ├── encrypt.py ├── grat2.py ├── handlers.py ├── powershell_scripts │ └── README.md └── tasks.py ├── LICENSE ├── README.md ├── images ├── config.PNG ├── configserver.PNG ├── interact_agent.PNG └── start_server.PNG └── requirements.txt /GRAT2_Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client.sln -------------------------------------------------------------------------------- /GRAT2_Client/Anti-Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Anti-Functions.cs -------------------------------------------------------------------------------- /GRAT2_Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Client.cs -------------------------------------------------------------------------------- /GRAT2_Client/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Config.cs -------------------------------------------------------------------------------- /GRAT2_Client/DInvoke/DInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/DInvoke/DInterop.cs -------------------------------------------------------------------------------- /GRAT2_Client/DInvoke/DynamicInvokeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/DInvoke/DynamicInvokeClass.cs -------------------------------------------------------------------------------- /GRAT2_Client/DNSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/DNSClient.cs -------------------------------------------------------------------------------- /GRAT2_Client/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Encryption.cs -------------------------------------------------------------------------------- /GRAT2_Client/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Execute.cs -------------------------------------------------------------------------------- /GRAT2_Client/GRAT2_Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/GRAT2_Client.csproj -------------------------------------------------------------------------------- /GRAT2_Client/GRAT2_Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/GRAT2_Client.csproj.user -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/CreateRemThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/CreateRemThread.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/DCreateRemThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/DCreateRemThread.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/DecGzip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/DecGzip.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/PPID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/PPID.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/SearchPID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/SearchPID.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/UserAPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/UserAPC.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/UserAPCPPID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/UserAPCPPID.cs -------------------------------------------------------------------------------- /GRAT2_Client/Injectious/procHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Injectious/procHollowing.cs -------------------------------------------------------------------------------- /GRAT2_Client/PInvoke/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/PInvoke/Interop.cs -------------------------------------------------------------------------------- /GRAT2_Client/PInvoke/flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/PInvoke/flags.cs -------------------------------------------------------------------------------- /GRAT2_Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Program.cs -------------------------------------------------------------------------------- /GRAT2_Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GRAT2_Client/Properties/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Properties/app.config -------------------------------------------------------------------------------- /GRAT2_Client/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Tasks.cs -------------------------------------------------------------------------------- /GRAT2_Client/Tokens_UAC/ProcessImpersonation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Tokens_UAC/ProcessImpersonation.cs -------------------------------------------------------------------------------- /GRAT2_Client/Tokens_UAC/UAC_Bypass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Client/Tokens_UAC/UAC_Bypass.cs -------------------------------------------------------------------------------- /GRAT2_Server/Agents/README.md: -------------------------------------------------------------------------------- 1 | Agent 2 | -------------------------------------------------------------------------------- /GRAT2_Server/Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/Data/README.md -------------------------------------------------------------------------------- /GRAT2_Server/GRAT2_Shellcodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/GRAT2_Shellcodes/README.md -------------------------------------------------------------------------------- /GRAT2_Server/Net_Assemblies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/Net_Assemblies/README.md -------------------------------------------------------------------------------- /GRAT2_Server/dnslistener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/dnslistener.py -------------------------------------------------------------------------------- /GRAT2_Server/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/encrypt.py -------------------------------------------------------------------------------- /GRAT2_Server/grat2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/grat2.py -------------------------------------------------------------------------------- /GRAT2_Server/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/handlers.py -------------------------------------------------------------------------------- /GRAT2_Server/powershell_scripts/README.md: -------------------------------------------------------------------------------- 1 | Place your powershell scripts here. -------------------------------------------------------------------------------- /GRAT2_Server/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/GRAT2_Server/tasks.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/README.md -------------------------------------------------------------------------------- /images/config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/images/config.PNG -------------------------------------------------------------------------------- /images/configserver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/images/configserver.PNG -------------------------------------------------------------------------------- /images/interact_agent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/images/interact_agent.PNG -------------------------------------------------------------------------------- /images/start_server.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3nhat/GRAT2/HEAD/images/start_server.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dnslib 2 | termcolor --------------------------------------------------------------------------------