├── .gitignore ├── Dropper ├── CreateLNK.cpp ├── DROP.txt ├── Dropper.cpp ├── Dropper.h ├── Dropper.ico ├── Dropper.rc ├── Dropper.vcxproj ├── Dropper.vcxproj.filters ├── Infiltration.cpp ├── Infiltration.h ├── ReadMe.txt ├── Resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ExampleDLL.dll ├── Exploit ├── Exploit.cpp ├── Exploit.h ├── Exploit.vcxproj └── Exploit.vcxproj.filters ├── GreenKit ├── BitcoinMiner.cpp ├── Exploit.cpp ├── FindFiles.cpp ├── FindFiles.h ├── GreenKit.cpp ├── GreenKit.h ├── GreenKit.ico ├── GreenKit.rc ├── GreenKit.sln ├── GreenKit.vcxproj ├── GreenKit.vcxproj.filters ├── NtEnumerateKey.cpp ├── NtEnumerateKey.h ├── NtQueryDirectoryFile.h ├── NtQuerySystemInformation.cpp ├── NtQuerySystemInformation.h ├── PortScan.cpp ├── PortScan.h ├── ReadMe.txt ├── RegEnumValue.cpp ├── Resource.h ├── detours.h ├── detours.lib ├── el_win_structs.cpp ├── el_win_structs.h ├── hooking.cpp ├── hooking.h ├── process.cpp ├── process.h ├── resource1.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── utils.cpp ├── utils.h └── windefs.h ├── GreenKitExe ├── BitcoinMiner.h ├── GreenKit.vcxproj.filters ├── GreenKitExe.cpp ├── GreenKitExe.h ├── GreenKitExe.ico ├── GreenKitExe.sln ├── GreenKitExe.vcxproj ├── GreenKitExe.vcxproj.filters ├── Injector.cpp ├── Injector.h ├── MemoryModule.cpp ├── MemoryModule.h ├── MyExploit.cpp ├── MyExploit.h ├── ReadMe.txt ├── Resource.h ├── portscan.h ├── process.cpp ├── process.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── utils.cpp └── utils.h ├── Tests ├── Project2.sln └── Project2 │ ├── Project2.vcxproj │ ├── Project2.vcxproj.filters │ └── Source.cpp ├── Utilities.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Dropper/CreateLNK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/CreateLNK.cpp -------------------------------------------------------------------------------- /Dropper/DROP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dropper/Dropper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.cpp -------------------------------------------------------------------------------- /Dropper/Dropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.h -------------------------------------------------------------------------------- /Dropper/Dropper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.ico -------------------------------------------------------------------------------- /Dropper/Dropper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.rc -------------------------------------------------------------------------------- /Dropper/Dropper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.vcxproj -------------------------------------------------------------------------------- /Dropper/Dropper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Dropper.vcxproj.filters -------------------------------------------------------------------------------- /Dropper/Infiltration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Infiltration.cpp -------------------------------------------------------------------------------- /Dropper/Infiltration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Infiltration.h -------------------------------------------------------------------------------- /Dropper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/ReadMe.txt -------------------------------------------------------------------------------- /Dropper/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/Resource.h -------------------------------------------------------------------------------- /Dropper/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/small.ico -------------------------------------------------------------------------------- /Dropper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/stdafx.cpp -------------------------------------------------------------------------------- /Dropper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/stdafx.h -------------------------------------------------------------------------------- /Dropper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Dropper/targetver.h -------------------------------------------------------------------------------- /ExampleDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/ExampleDLL.dll -------------------------------------------------------------------------------- /Exploit/Exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Exploit/Exploit.cpp -------------------------------------------------------------------------------- /Exploit/Exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Exploit/Exploit.h -------------------------------------------------------------------------------- /Exploit/Exploit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Exploit/Exploit.vcxproj -------------------------------------------------------------------------------- /Exploit/Exploit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Exploit/Exploit.vcxproj.filters -------------------------------------------------------------------------------- /GreenKit/BitcoinMiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/BitcoinMiner.cpp -------------------------------------------------------------------------------- /GreenKit/Exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/Exploit.cpp -------------------------------------------------------------------------------- /GreenKit/FindFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/FindFiles.cpp -------------------------------------------------------------------------------- /GreenKit/FindFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/FindFiles.h -------------------------------------------------------------------------------- /GreenKit/GreenKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.cpp -------------------------------------------------------------------------------- /GreenKit/GreenKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.h -------------------------------------------------------------------------------- /GreenKit/GreenKit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.ico -------------------------------------------------------------------------------- /GreenKit/GreenKit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.rc -------------------------------------------------------------------------------- /GreenKit/GreenKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.sln -------------------------------------------------------------------------------- /GreenKit/GreenKit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.vcxproj -------------------------------------------------------------------------------- /GreenKit/GreenKit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/GreenKit.vcxproj.filters -------------------------------------------------------------------------------- /GreenKit/NtEnumerateKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/NtEnumerateKey.cpp -------------------------------------------------------------------------------- /GreenKit/NtEnumerateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/NtEnumerateKey.h -------------------------------------------------------------------------------- /GreenKit/NtQueryDirectoryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/NtQueryDirectoryFile.h -------------------------------------------------------------------------------- /GreenKit/NtQuerySystemInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/NtQuerySystemInformation.cpp -------------------------------------------------------------------------------- /GreenKit/NtQuerySystemInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/NtQuerySystemInformation.h -------------------------------------------------------------------------------- /GreenKit/PortScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/PortScan.cpp -------------------------------------------------------------------------------- /GreenKit/PortScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/PortScan.h -------------------------------------------------------------------------------- /GreenKit/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/ReadMe.txt -------------------------------------------------------------------------------- /GreenKit/RegEnumValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/RegEnumValue.cpp -------------------------------------------------------------------------------- /GreenKit/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/Resource.h -------------------------------------------------------------------------------- /GreenKit/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/detours.h -------------------------------------------------------------------------------- /GreenKit/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/detours.lib -------------------------------------------------------------------------------- /GreenKit/el_win_structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/el_win_structs.cpp -------------------------------------------------------------------------------- /GreenKit/el_win_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/el_win_structs.h -------------------------------------------------------------------------------- /GreenKit/hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/hooking.cpp -------------------------------------------------------------------------------- /GreenKit/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/hooking.h -------------------------------------------------------------------------------- /GreenKit/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/process.cpp -------------------------------------------------------------------------------- /GreenKit/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/process.h -------------------------------------------------------------------------------- /GreenKit/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/resource1.h -------------------------------------------------------------------------------- /GreenKit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/stdafx.cpp -------------------------------------------------------------------------------- /GreenKit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/stdafx.h -------------------------------------------------------------------------------- /GreenKit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/targetver.h -------------------------------------------------------------------------------- /GreenKit/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/utils.cpp -------------------------------------------------------------------------------- /GreenKit/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/utils.h -------------------------------------------------------------------------------- /GreenKit/windefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKit/windefs.h -------------------------------------------------------------------------------- /GreenKitExe/BitcoinMiner.h: -------------------------------------------------------------------------------- 1 | void StartMiner(); -------------------------------------------------------------------------------- /GreenKitExe/GreenKit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKit.vcxproj.filters -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.cpp -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.h -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.ico -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.sln -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.vcxproj -------------------------------------------------------------------------------- /GreenKitExe/GreenKitExe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/GreenKitExe.vcxproj.filters -------------------------------------------------------------------------------- /GreenKitExe/Injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/Injector.cpp -------------------------------------------------------------------------------- /GreenKitExe/Injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/Injector.h -------------------------------------------------------------------------------- /GreenKitExe/MemoryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/MemoryModule.cpp -------------------------------------------------------------------------------- /GreenKitExe/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/MemoryModule.h -------------------------------------------------------------------------------- /GreenKitExe/MyExploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/MyExploit.cpp -------------------------------------------------------------------------------- /GreenKitExe/MyExploit.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "stdafx.h" 3 | 4 | int ExploitME(); -------------------------------------------------------------------------------- /GreenKitExe/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/ReadMe.txt -------------------------------------------------------------------------------- /GreenKitExe/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/Resource.h -------------------------------------------------------------------------------- /GreenKitExe/portscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/portscan.h -------------------------------------------------------------------------------- /GreenKitExe/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/process.cpp -------------------------------------------------------------------------------- /GreenKitExe/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/process.h -------------------------------------------------------------------------------- /GreenKitExe/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/stdafx.cpp -------------------------------------------------------------------------------- /GreenKitExe/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/stdafx.h -------------------------------------------------------------------------------- /GreenKitExe/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/targetver.h -------------------------------------------------------------------------------- /GreenKitExe/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/utils.cpp -------------------------------------------------------------------------------- /GreenKitExe/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/GreenKitExe/utils.h -------------------------------------------------------------------------------- /Tests/Project2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Tests/Project2.sln -------------------------------------------------------------------------------- /Tests/Project2/Project2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Tests/Project2/Project2.vcxproj -------------------------------------------------------------------------------- /Tests/Project2/Project2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Tests/Project2/Project2.vcxproj.filters -------------------------------------------------------------------------------- /Tests/Project2/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Tests/Project2/Source.cpp -------------------------------------------------------------------------------- /Utilities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nervous/GreenKit-Rootkit/HEAD/Utilities.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | Educational purpose only. 2 | --------------------------------------------------------------------------------