├── $Docs ├── Documentation.docx ├── Fonts │ ├── Electrolize-OFL.txt │ ├── Electrolize-Regular.ttf │ ├── OFL-SourceCodePro.txt │ └── SourceCodePro-Regular.ttf ├── PebApiComputeHash.cpp └── Removed.cpp ├── $Examples ├── ControlPipe.cpp ├── InstallShellCode.cpp └── InstallShellCode.cs ├── .gitattributes ├── .gitignore ├── BuildTask ├── BuildTask.cs └── BuildTask.csproj ├── Example ├── App.xaml ├── App.xaml.cs ├── CpuUsage.cs ├── Example.csproj ├── Example.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Example32.png │ ├── Help16.png │ └── Warning16.png └── app.manifest ├── Global └── R77Const.cs ├── Helper ├── Helper.c ├── Helper.h └── Helper.vcxitems ├── Helper32 ├── Helper32.vcxproj └── Helper32.vcxproj.filters ├── Helper64 ├── Helper64.vcxproj └── Helper64.vcxproj.filters ├── Install ├── Install.c ├── Install.h ├── Install.vcxproj ├── Install.vcxproj.filters ├── Resource.rc ├── Resources │ └── .gitkeep └── resource.h ├── InstallShellcode ├── InstallShellcode.asm ├── InstallShellcode.vcxitems ├── PebApi.asm ├── PebApi.inc ├── RunPE.asm └── nt.inc ├── LICENSE.md ├── README.md ├── ReflectiveDllMain ├── ReflectiveDllMain.c ├── ReflectiveDllMain.h └── ReflectiveDllMain.vcxitems ├── Service ├── ControlPipeListener.c ├── ControlPipeListener.h ├── ProcessListener.c ├── ProcessListener.h ├── Service.c ├── Service.h └── Service.vcxitems ├── Service32 ├── Service32.vcxproj └── Service32.vcxproj.filters ├── Service64 ├── Service64.vcxproj └── Service64.vcxproj.filters ├── SlnBin ├── FASM │ ├── FASM.EXE │ └── INCLUDE │ │ ├── API │ │ ├── ADVAPI32.INC │ │ ├── COMCTL32.INC │ │ ├── COMDLG32.INC │ │ ├── GDI32.INC │ │ ├── KERNEL32.INC │ │ ├── SHELL32.INC │ │ ├── USER32.INC │ │ └── WSOCK32.INC │ │ ├── ENCODING │ │ ├── UTF8.INC │ │ ├── WIN1250.INC │ │ ├── WIN1251.INC │ │ ├── WIN1252.INC │ │ ├── WIN1253.INC │ │ ├── WIN1254.INC │ │ ├── WIN1255.INC │ │ ├── WIN1256.INC │ │ ├── WIN1257.INC │ │ ├── WIN1258.INC │ │ └── WIN874.INC │ │ ├── EQUATES │ │ ├── COMCTL32.INC │ │ ├── COMCTL64.INC │ │ ├── COMDLG32.INC │ │ ├── COMDLG64.INC │ │ ├── GDI32.INC │ │ ├── GDI64.INC │ │ ├── KERNEL32.INC │ │ ├── KERNEL64.INC │ │ ├── SHELL32.INC │ │ ├── SHELL64.INC │ │ ├── USER32.INC │ │ ├── USER64.INC │ │ └── WSOCK32.INC │ │ ├── MACRO │ │ ├── COM32.INC │ │ ├── COM64.INC │ │ ├── EXPORT.INC │ │ ├── IF.INC │ │ ├── IMPORT32.INC │ │ ├── IMPORT64.INC │ │ ├── MASM.INC │ │ ├── PROC32.INC │ │ ├── PROC64.INC │ │ ├── RESOURCE.INC │ │ └── STRUCT.INC │ │ ├── PCOUNT │ │ ├── ADVAPI32.INC │ │ ├── COMCTL32.INC │ │ ├── COMDLG32.INC │ │ ├── GDI32.INC │ │ ├── KERNEL32.INC │ │ ├── SHELL32.INC │ │ ├── USER32.INC │ │ └── WSOCK32.INC │ │ ├── WIN32A.INC │ │ ├── WIN32AX.INC │ │ ├── WIN32AXP.INC │ │ ├── WIN32W.INC │ │ ├── WIN32WX.INC │ │ ├── WIN32WXP.INC │ │ ├── WIN64A.INC │ │ ├── WIN64AX.INC │ │ ├── WIN64AXP.INC │ │ ├── WIN64W.INC │ │ ├── WIN64WX.INC │ │ └── WIN64WXP.INC ├── x64 │ └── detours.lib └── x86 │ └── detours.lib ├── Stager ├── Helper.cs ├── Inject.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── .gitkeep ├── Stager.cs ├── Stager.csproj ├── Stager.res └── Unhook.cs ├── TestConsole ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── LoadingOverlay.cs │ └── LoadingOverlay.xaml ├── Converters │ ├── LogMessageToTextBlockConverter.cs │ ├── TextBoxConverter.cs │ └── TextBoxConverterMethod.cs ├── Helper │ ├── ApplicationDirectory.cs │ ├── ConfigSystem.cs │ ├── ControlCode.cs │ ├── ControlPipe.cs │ ├── HelperDll.cs │ ├── Log.cs │ └── ProcessList.cs ├── Model │ ├── ConfigSystem │ │ ├── ConfigSystemDirectory.cs │ │ ├── ConfigSystemDirectoryTreeNode.cs │ │ ├── ConfigSystemEntry.cs │ │ └── ConfigSystemEntryTreeNode.cs │ ├── Logging │ │ ├── LogDetailsItem.cs │ │ ├── LogFileItem.cs │ │ ├── LogItem.cs │ │ ├── LogLinkItem.cs │ │ ├── LogMessage.cs │ │ ├── LogMessageType.cs │ │ └── LogTextItem.cs │ ├── ProcessList │ │ ├── ProcessModel.cs │ │ └── ProcessStatus.cs │ ├── TreeViewNode.cs │ └── ViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── x64.pubxml │ │ └── x86.pubxml ├── Resources │ ├── Icons │ │ ├── ClearList.svg │ │ ├── CollapseAll.svg │ │ ├── ConfigSystem.svg │ │ ├── DeleteFolder.svg │ │ ├── DeleteItem.svg │ │ ├── DetachAll.svg │ │ ├── Documentation.svg │ │ ├── Error.svg │ │ ├── Example16.png │ │ ├── Exe16.png │ │ ├── ExeUac16.png │ │ ├── ExpandAll.svg │ │ ├── FolderClosed.svg │ │ ├── FolderOpened.svg │ │ ├── GitHub.svg │ │ ├── Hidden.svg │ │ ├── Information.svg │ │ ├── InjectAll.svg │ │ ├── Injected.svg │ │ ├── NewItem.svg │ │ ├── R77Helper.svg │ │ ├── R77Service.svg │ │ ├── Registry.svg │ │ ├── RegistryIntegerValue.svg │ │ ├── RegistryStringValue.svg │ │ ├── Uac.svg │ │ ├── Visible.svg │ │ ├── Warning.svg │ │ └── Website.svg │ └── Images │ │ ├── AboutBanner.png │ │ └── WindowLogo.png ├── TestConsole.csproj ├── TestConsole.ico ├── Windows │ ├── AboutDialog │ │ ├── AboutDialog.xaml │ │ ├── AboutDialog.xaml.cs │ │ └── AboutDialogViewModel.cs │ ├── ConfigSystemEntryDialog │ │ ├── ConfigSystemEntryDialog.xaml │ │ ├── ConfigSystemEntryDialog.xaml.cs │ │ └── ConfigSystemEntryDialogViewModel.cs │ └── MainWindow │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowViewModel.cs │ │ └── SubControls │ │ ├── ConfigSystemUserControl.xaml │ │ ├── ConfigSystemUserControl.xaml.cs │ │ ├── ConfigSystemUserControlViewModel.cs │ │ ├── ControlPipeUserControl.xaml │ │ ├── ControlPipeUserControl.xaml.cs │ │ ├── ControlPipeUserControlViewModel.cs │ │ ├── LogUserControl.xaml │ │ ├── LogUserControl.xaml.cs │ │ ├── LogUserControlViewModel.cs │ │ ├── ProcessListUserControl.xaml │ │ ├── ProcessListUserControl.xaml.cs │ │ ├── ProcessListUserControlViewModel.cs │ │ ├── R77ServiceUserControl.xaml │ │ ├── R77ServiceUserControl.xaml.cs │ │ └── R77ServiceUserControlViewModel.cs └── app.manifest ├── TestConsoleLauncher ├── TestConsole.ico ├── TestConsoleLauncher.c ├── TestConsoleLauncher.rc ├── TestConsoleLauncher.vcxproj ├── TestConsoleLauncher.vcxproj.filters ├── app.manifest └── resource.h ├── Unhook ├── Syscalls.asm ├── Syscalls.h ├── Unhook.c ├── Unhook.h └── Unhook.vcxitems ├── Uninstall ├── Resource.rc ├── Resources │ └── .gitkeep ├── Uninstall.c ├── Uninstall.vcxproj ├── Uninstall.vcxproj.filters └── resource.h ├── Uninstall64 ├── Uninstall64.c ├── Uninstall64.vcxproj └── Uninstall64.vcxproj.filters ├── r77-x64 ├── r77-x64.vcxproj └── r77-x64.vcxproj.filters ├── r77-x86 ├── r77-x86.vcxproj └── r77-x86.vcxproj.filters ├── r77.sln ├── r77 ├── Config.c ├── Config.h ├── Hooks.c ├── Hooks.h ├── Rootkit.c ├── Rootkit.h ├── detours.h ├── r77.c └── r77.vcxitems └── r77api ├── clist.c ├── clist.h ├── ntdll.h ├── peb.c ├── peb.h ├── r77api.vcxitems ├── r77config.c ├── r77config.h ├── r77def.h ├── r77header.c ├── r77header.h ├── r77mindef.h ├── r77process.c ├── r77process.h ├── r77win.c └── r77win.h /$Docs/Documentation.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Documentation.docx -------------------------------------------------------------------------------- /$Docs/Fonts/Electrolize-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Fonts/Electrolize-OFL.txt -------------------------------------------------------------------------------- /$Docs/Fonts/Electrolize-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Fonts/Electrolize-Regular.ttf -------------------------------------------------------------------------------- /$Docs/Fonts/OFL-SourceCodePro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Fonts/OFL-SourceCodePro.txt -------------------------------------------------------------------------------- /$Docs/Fonts/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Fonts/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /$Docs/PebApiComputeHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/PebApiComputeHash.cpp -------------------------------------------------------------------------------- /$Docs/Removed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Docs/Removed.cpp -------------------------------------------------------------------------------- /$Examples/ControlPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Examples/ControlPipe.cpp -------------------------------------------------------------------------------- /$Examples/InstallShellCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Examples/InstallShellCode.cpp -------------------------------------------------------------------------------- /$Examples/InstallShellCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/$Examples/InstallShellCode.cs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | SlnBin/FASM/** linguist-detectable=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildTask/BuildTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/BuildTask/BuildTask.cs -------------------------------------------------------------------------------- /BuildTask/BuildTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/BuildTask/BuildTask.csproj -------------------------------------------------------------------------------- /Example/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/App.xaml -------------------------------------------------------------------------------- /Example/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/App.xaml.cs -------------------------------------------------------------------------------- /Example/CpuUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/CpuUsage.cs -------------------------------------------------------------------------------- /Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Example.csproj -------------------------------------------------------------------------------- /Example/Example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Example.ico -------------------------------------------------------------------------------- /Example/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/MainWindow.xaml -------------------------------------------------------------------------------- /Example/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/Resources/Example32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Resources/Example32.png -------------------------------------------------------------------------------- /Example/Resources/Help16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Resources/Help16.png -------------------------------------------------------------------------------- /Example/Resources/Warning16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/Resources/Warning16.png -------------------------------------------------------------------------------- /Example/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Example/app.manifest -------------------------------------------------------------------------------- /Global/R77Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Global/R77Const.cs -------------------------------------------------------------------------------- /Helper/Helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper/Helper.c -------------------------------------------------------------------------------- /Helper/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper/Helper.h -------------------------------------------------------------------------------- /Helper/Helper.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper/Helper.vcxitems -------------------------------------------------------------------------------- /Helper32/Helper32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper32/Helper32.vcxproj -------------------------------------------------------------------------------- /Helper32/Helper32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper32/Helper32.vcxproj.filters -------------------------------------------------------------------------------- /Helper64/Helper64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper64/Helper64.vcxproj -------------------------------------------------------------------------------- /Helper64/Helper64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Helper64/Helper64.vcxproj.filters -------------------------------------------------------------------------------- /Install/Install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/Install.c -------------------------------------------------------------------------------- /Install/Install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/Install.h -------------------------------------------------------------------------------- /Install/Install.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/Install.vcxproj -------------------------------------------------------------------------------- /Install/Install.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/Install.vcxproj.filters -------------------------------------------------------------------------------- /Install/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/Resource.rc -------------------------------------------------------------------------------- /Install/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Install/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Install/resource.h -------------------------------------------------------------------------------- /InstallShellcode/InstallShellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/InstallShellcode.asm -------------------------------------------------------------------------------- /InstallShellcode/InstallShellcode.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/InstallShellcode.vcxitems -------------------------------------------------------------------------------- /InstallShellcode/PebApi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/PebApi.asm -------------------------------------------------------------------------------- /InstallShellcode/PebApi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/PebApi.inc -------------------------------------------------------------------------------- /InstallShellcode/RunPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/RunPE.asm -------------------------------------------------------------------------------- /InstallShellcode/nt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/InstallShellcode/nt.inc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/README.md -------------------------------------------------------------------------------- /ReflectiveDllMain/ReflectiveDllMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/ReflectiveDllMain/ReflectiveDllMain.c -------------------------------------------------------------------------------- /ReflectiveDllMain/ReflectiveDllMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/ReflectiveDllMain/ReflectiveDllMain.h -------------------------------------------------------------------------------- /ReflectiveDllMain/ReflectiveDllMain.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/ReflectiveDllMain/ReflectiveDllMain.vcxitems -------------------------------------------------------------------------------- /Service/ControlPipeListener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/ControlPipeListener.c -------------------------------------------------------------------------------- /Service/ControlPipeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/ControlPipeListener.h -------------------------------------------------------------------------------- /Service/ProcessListener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/ProcessListener.c -------------------------------------------------------------------------------- /Service/ProcessListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/ProcessListener.h -------------------------------------------------------------------------------- /Service/Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/Service.c -------------------------------------------------------------------------------- /Service/Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/Service.h -------------------------------------------------------------------------------- /Service/Service.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service/Service.vcxitems -------------------------------------------------------------------------------- /Service32/Service32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service32/Service32.vcxproj -------------------------------------------------------------------------------- /Service32/Service32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service32/Service32.vcxproj.filters -------------------------------------------------------------------------------- /Service64/Service64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service64/Service64.vcxproj -------------------------------------------------------------------------------- /Service64/Service64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Service64/Service64.vcxproj.filters -------------------------------------------------------------------------------- /SlnBin/FASM/FASM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/FASM.EXE -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/ADVAPI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/ADVAPI32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/COMCTL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/COMDLG32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/GDI32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/KERNEL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/SHELL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/USER32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/API/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/API/WSOCK32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/UTF8.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/UTF8.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1250.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1250.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1251.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1251.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1252.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1252.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1253.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1253.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1254.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1254.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1255.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1255.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1256.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1256.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1257.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1257.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN1258.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN1258.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/ENCODING/WIN874.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/ENCODING/WIN874.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/COMCTL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/COMCTL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/COMCTL64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/COMDLG32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/COMDLG64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/COMDLG64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/GDI32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/GDI64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/GDI64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/KERNEL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/KERNEL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/KERNEL64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/SHELL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/SHELL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/SHELL64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/USER32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/USER64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/USER64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/EQUATES/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/EQUATES/WSOCK32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/COM32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/COM32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/COM64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/COM64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/EXPORT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/EXPORT.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/IF.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/IF.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/IMPORT32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/IMPORT32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/IMPORT64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/IMPORT64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/MASM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/MASM.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/PROC32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/PROC32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/PROC64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/PROC64.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/RESOURCE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/RESOURCE.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/MACRO/STRUCT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/MACRO/STRUCT.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/ADVAPI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/ADVAPI32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/COMCTL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/COMDLG32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/GDI32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/KERNEL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/SHELL32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/USER32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/PCOUNT/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/PCOUNT/WSOCK32.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32A.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32AX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32AX.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32AXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32AXP.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32W.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32W.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32WX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32WX.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN32WXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN32WXP.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64A.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64AX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64AX.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64AXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64AXP.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64W.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64W.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64WX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64WX.INC -------------------------------------------------------------------------------- /SlnBin/FASM/INCLUDE/WIN64WXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/FASM/INCLUDE/WIN64WXP.INC -------------------------------------------------------------------------------- /SlnBin/x64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/x64/detours.lib -------------------------------------------------------------------------------- /SlnBin/x86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/SlnBin/x86/detours.lib -------------------------------------------------------------------------------- /Stager/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Helper.cs -------------------------------------------------------------------------------- /Stager/Inject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Inject.cs -------------------------------------------------------------------------------- /Stager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Stager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Properties/Resources.resx -------------------------------------------------------------------------------- /Stager/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stager/Stager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Stager.cs -------------------------------------------------------------------------------- /Stager/Stager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Stager.csproj -------------------------------------------------------------------------------- /Stager/Stager.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Stager.res -------------------------------------------------------------------------------- /Stager/Unhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Stager/Unhook.cs -------------------------------------------------------------------------------- /TestConsole/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/App.xaml -------------------------------------------------------------------------------- /TestConsole/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/App.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Controls/LoadingOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Controls/LoadingOverlay.cs -------------------------------------------------------------------------------- /TestConsole/Controls/LoadingOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Controls/LoadingOverlay.xaml -------------------------------------------------------------------------------- /TestConsole/Converters/LogMessageToTextBlockConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Converters/LogMessageToTextBlockConverter.cs -------------------------------------------------------------------------------- /TestConsole/Converters/TextBoxConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Converters/TextBoxConverter.cs -------------------------------------------------------------------------------- /TestConsole/Converters/TextBoxConverterMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Converters/TextBoxConverterMethod.cs -------------------------------------------------------------------------------- /TestConsole/Helper/ApplicationDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/ApplicationDirectory.cs -------------------------------------------------------------------------------- /TestConsole/Helper/ConfigSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/ConfigSystem.cs -------------------------------------------------------------------------------- /TestConsole/Helper/ControlCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/ControlCode.cs -------------------------------------------------------------------------------- /TestConsole/Helper/ControlPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/ControlPipe.cs -------------------------------------------------------------------------------- /TestConsole/Helper/HelperDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/HelperDll.cs -------------------------------------------------------------------------------- /TestConsole/Helper/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/Log.cs -------------------------------------------------------------------------------- /TestConsole/Helper/ProcessList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Helper/ProcessList.cs -------------------------------------------------------------------------------- /TestConsole/Model/ConfigSystem/ConfigSystemDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ConfigSystem/ConfigSystemDirectory.cs -------------------------------------------------------------------------------- /TestConsole/Model/ConfigSystem/ConfigSystemDirectoryTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ConfigSystem/ConfigSystemDirectoryTreeNode.cs -------------------------------------------------------------------------------- /TestConsole/Model/ConfigSystem/ConfigSystemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ConfigSystem/ConfigSystemEntry.cs -------------------------------------------------------------------------------- /TestConsole/Model/ConfigSystem/ConfigSystemEntryTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ConfigSystem/ConfigSystemEntryTreeNode.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogDetailsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogDetailsItem.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogFileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogFileItem.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogItem.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogLinkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogLinkItem.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogMessage.cs -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogMessageType.cs: -------------------------------------------------------------------------------- 1 | namespace TestConsole.Model; 2 | 3 | public enum LogMessageType 4 | { 5 | Information, 6 | Warning, 7 | Error 8 | } -------------------------------------------------------------------------------- /TestConsole/Model/Logging/LogTextItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/Logging/LogTextItem.cs -------------------------------------------------------------------------------- /TestConsole/Model/ProcessList/ProcessModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ProcessList/ProcessModel.cs -------------------------------------------------------------------------------- /TestConsole/Model/ProcessList/ProcessStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ProcessList/ProcessStatus.cs -------------------------------------------------------------------------------- /TestConsole/Model/TreeViewNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/TreeViewNode.cs -------------------------------------------------------------------------------- /TestConsole/Model/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Model/ViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestConsole/Properties/PublishProfiles/x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Properties/PublishProfiles/x64.pubxml -------------------------------------------------------------------------------- /TestConsole/Properties/PublishProfiles/x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Properties/PublishProfiles/x86.pubxml -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/ClearList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/ClearList.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/CollapseAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/CollapseAll.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/ConfigSystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/ConfigSystem.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/DeleteFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/DeleteFolder.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/DeleteItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/DeleteItem.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/DetachAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/DetachAll.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Documentation.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Error.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Example16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Example16.png -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Exe16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Exe16.png -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/ExeUac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/ExeUac16.png -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/ExpandAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/ExpandAll.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/FolderClosed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/FolderClosed.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/FolderOpened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/FolderOpened.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/GitHub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/GitHub.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Hidden.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Information.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/InjectAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/InjectAll.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Injected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Injected.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/NewItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/NewItem.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/R77Helper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/R77Helper.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/R77Service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/R77Service.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Registry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Registry.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/RegistryIntegerValue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/RegistryIntegerValue.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/RegistryStringValue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/RegistryStringValue.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Uac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Uac.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Visible.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Warning.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Icons/Website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Icons/Website.svg -------------------------------------------------------------------------------- /TestConsole/Resources/Images/AboutBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Images/AboutBanner.png -------------------------------------------------------------------------------- /TestConsole/Resources/Images/WindowLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Resources/Images/WindowLogo.png -------------------------------------------------------------------------------- /TestConsole/TestConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/TestConsole.csproj -------------------------------------------------------------------------------- /TestConsole/TestConsole.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/TestConsole.ico -------------------------------------------------------------------------------- /TestConsole/Windows/AboutDialog/AboutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/AboutDialog/AboutDialog.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/AboutDialog/AboutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/AboutDialog/AboutDialog.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/AboutDialog/AboutDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/AboutDialog/AboutDialogViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialog.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialog.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/ConfigSystemEntryDialog/ConfigSystemEntryDialogViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/MainWindow.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/MainWindowViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControl.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControl.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ConfigSystemUserControlViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControl.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControl.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ControlPipeUserControlViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/LogUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/LogUserControl.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/LogUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/LogUserControl.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/LogUserControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/LogUserControlViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ProcessListUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ProcessListUserControl.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ProcessListUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ProcessListUserControl.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/ProcessListUserControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/ProcessListUserControlViewModel.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControl.xaml -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControl.xaml.cs -------------------------------------------------------------------------------- /TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/Windows/MainWindow/SubControls/R77ServiceUserControlViewModel.cs -------------------------------------------------------------------------------- /TestConsole/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsole/app.manifest -------------------------------------------------------------------------------- /TestConsoleLauncher/TestConsole.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/TestConsole.ico -------------------------------------------------------------------------------- /TestConsoleLauncher/TestConsoleLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/TestConsoleLauncher.c -------------------------------------------------------------------------------- /TestConsoleLauncher/TestConsoleLauncher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/TestConsoleLauncher.rc -------------------------------------------------------------------------------- /TestConsoleLauncher/TestConsoleLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/TestConsoleLauncher.vcxproj -------------------------------------------------------------------------------- /TestConsoleLauncher/TestConsoleLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/TestConsoleLauncher.vcxproj.filters -------------------------------------------------------------------------------- /TestConsoleLauncher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/app.manifest -------------------------------------------------------------------------------- /TestConsoleLauncher/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/TestConsoleLauncher/resource.h -------------------------------------------------------------------------------- /Unhook/Syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Unhook/Syscalls.asm -------------------------------------------------------------------------------- /Unhook/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Unhook/Syscalls.h -------------------------------------------------------------------------------- /Unhook/Unhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Unhook/Unhook.c -------------------------------------------------------------------------------- /Unhook/Unhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Unhook/Unhook.h -------------------------------------------------------------------------------- /Unhook/Unhook.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Unhook/Unhook.vcxitems -------------------------------------------------------------------------------- /Uninstall/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall/Resource.rc -------------------------------------------------------------------------------- /Uninstall/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Uninstall/Uninstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall/Uninstall.c -------------------------------------------------------------------------------- /Uninstall/Uninstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall/Uninstall.vcxproj -------------------------------------------------------------------------------- /Uninstall/Uninstall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall/Uninstall.vcxproj.filters -------------------------------------------------------------------------------- /Uninstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall/resource.h -------------------------------------------------------------------------------- /Uninstall64/Uninstall64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall64/Uninstall64.c -------------------------------------------------------------------------------- /Uninstall64/Uninstall64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall64/Uninstall64.vcxproj -------------------------------------------------------------------------------- /Uninstall64/Uninstall64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/Uninstall64/Uninstall64.vcxproj.filters -------------------------------------------------------------------------------- /r77-x64/r77-x64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77-x64/r77-x64.vcxproj -------------------------------------------------------------------------------- /r77-x64/r77-x64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77-x64/r77-x64.vcxproj.filters -------------------------------------------------------------------------------- /r77-x86/r77-x86.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77-x86/r77-x86.vcxproj -------------------------------------------------------------------------------- /r77-x86/r77-x86.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77-x86/r77-x86.vcxproj.filters -------------------------------------------------------------------------------- /r77.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77.sln -------------------------------------------------------------------------------- /r77/Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Config.c -------------------------------------------------------------------------------- /r77/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Config.h -------------------------------------------------------------------------------- /r77/Hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Hooks.c -------------------------------------------------------------------------------- /r77/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Hooks.h -------------------------------------------------------------------------------- /r77/Rootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Rootkit.c -------------------------------------------------------------------------------- /r77/Rootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/Rootkit.h -------------------------------------------------------------------------------- /r77/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/detours.h -------------------------------------------------------------------------------- /r77/r77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/r77.c -------------------------------------------------------------------------------- /r77/r77.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77/r77.vcxitems -------------------------------------------------------------------------------- /r77api/clist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/clist.c -------------------------------------------------------------------------------- /r77api/clist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/clist.h -------------------------------------------------------------------------------- /r77api/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/ntdll.h -------------------------------------------------------------------------------- /r77api/peb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/peb.c -------------------------------------------------------------------------------- /r77api/peb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/peb.h -------------------------------------------------------------------------------- /r77api/r77api.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77api.vcxitems -------------------------------------------------------------------------------- /r77api/r77config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77config.c -------------------------------------------------------------------------------- /r77api/r77config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77config.h -------------------------------------------------------------------------------- /r77api/r77def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77def.h -------------------------------------------------------------------------------- /r77api/r77header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77header.c -------------------------------------------------------------------------------- /r77api/r77header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77header.h -------------------------------------------------------------------------------- /r77api/r77mindef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77mindef.h -------------------------------------------------------------------------------- /r77api/r77process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77process.c -------------------------------------------------------------------------------- /r77api/r77process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77process.h -------------------------------------------------------------------------------- /r77api/r77win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77win.c -------------------------------------------------------------------------------- /r77api/r77win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecode77/r77-rootkit/HEAD/r77api/r77win.h --------------------------------------------------------------------------------