├── .gitignore ├── CS └── CheckExplorerExeExtensions.cs ├── Delphi ├── GetProcAddress_ALT_Example.pas ├── GetProcessName_Method1.pas ├── GetProcessName_Method2.pas ├── GetProcessName_Method2_Remote.pas ├── GetProcessName_Method3.pas ├── GetProcessName_Method4.pas ├── SelectFilesOnExplorer │ ├── SelectFilesOnExplorer.dpr │ ├── SelectFilesOnExplorer.dproj │ └── SelectFilesOnExplorer.res └── UntEnumDLLExport.pas ├── Images ├── Phrozen.png ├── Unprotect.png └── mgallery.png ├── LICENSE ├── Malware Gallery ├── change-window-state.pas ├── check-process-elevation.pas ├── close-process-via-SendMessage.pas ├── close-process-via-TerminateProcess.pas ├── close-window-via-PostMessage.pas ├── copy-ansi-text-to-clipboard-via-SetClipboardData.pas ├── copy-files-to-clipboard-via-SetClipboardData.pas ├── copy-unicode-text-to-clipboard-via-SetClipboardData.pas ├── desktop-window-screenshot-via-BitBlt.pas ├── dump-process-memory-via-minidumpwritedump.pas ├── dump-process-memory-via-readprocessmemory.pas ├── enumerate-files-via-FindFirstFile-FindNextFile.pas ├── enumerate-local-process-modules-via-peb.pas ├── enumerate-network-share-via-NetShareEnum.pas ├── enumerate-process-modules-via-CreateToolhelp32Snapshot.pas ├── enumerate-process-via-NtQuerySystemInformation.pas ├── enumerate-process-via-createtoolhelp32snapshot.pas ├── enumerate-process-via-error-exception.pas ├── enumerate-remote-process-modules-via-peb.pas ├── enumerate-remote-shares-via-WNetEnumResource.pas ├── enumerate-window-via-EnumWindows.pas ├── enumerate-windows-registry-winapi.pas ├── enumerate-windows-services-via-EnumServicesStatus.pas ├── enumerate-windows-usernames.pas ├── execute-application-via-CreateProcess.pas ├── execute-application-via-ShellExecute.pas ├── execute-application-via-winexec.pas ├── get-active-window-title.pas ├── get-computer-name.pas ├── get-current-windows-user.pas ├── get-main-hard-drive-serial.pas ├── get-process-name-via-queryfullprocessimagename.pas ├── get-user-idle-time.pas ├── get-user-sid.pas ├── get-window-caption-title.pas ├── message-hijacking-via-SetWindowLongPtr.pas ├── open-close-cddvd-tray.pas ├── search-for-files-via-FindFirstFile-FindNextFile.pas ├── search-for-registry-keys-values.pas ├── show-hide-window.pas ├── update-window-caption.pas ├── update-window-opacity-level.pas └── update-window-position-and-size.pas ├── Python ├── ExtractStrings.py ├── cave-explorer.py └── malinx.py ├── README.md └── Unprotect ├── CS ├── DetectMacAddress.cs ├── FtpC2.cs ├── Melt.cs ├── NamedPipes_SMB.cs ├── NtQueryInformationProcess.cs └── Timestomp.cs ├── Delphi ├── ADB_NtSetInformationThread.dpr ├── APCInjector.dpr ├── APCRun.dpr ├── AntiSandboxScanService.dpr ├── DLLInjection_CreateRemoteThread_LoadLibrary.dpr ├── DetectMouseMove.dpr ├── FindWindowAPI.dpr ├── FtpC2.pas ├── IsDebuggerPresent.dpr ├── Melt.dpr ├── NamedPipes_SMB.pas ├── NtQueryObject.dpr ├── NtQueryProcessInformation.dpr ├── NtSetDebugFilterState.dpr ├── OutputDebugString.dpr ├── ProcEnvInjection_DLLInjection.dpr ├── ReflectiveDLL.dpr ├── RunPE.dpr ├── SuspendThread.dpr ├── UntDataStreamObject.pas └── UntPEBDebug.pas ├── FASM └── x32 │ └── apc_injection.asm └── Python ├── CodeCaveHelper.py └── FindWindow.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /CS/CheckExplorerExeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/CS/CheckExplorerExeExtensions.cs -------------------------------------------------------------------------------- /Delphi/GetProcAddress_ALT_Example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcAddress_ALT_Example.pas -------------------------------------------------------------------------------- /Delphi/GetProcessName_Method1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcessName_Method1.pas -------------------------------------------------------------------------------- /Delphi/GetProcessName_Method2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcessName_Method2.pas -------------------------------------------------------------------------------- /Delphi/GetProcessName_Method2_Remote.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcessName_Method2_Remote.pas -------------------------------------------------------------------------------- /Delphi/GetProcessName_Method3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcessName_Method3.pas -------------------------------------------------------------------------------- /Delphi/GetProcessName_Method4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/GetProcessName_Method4.pas -------------------------------------------------------------------------------- /Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.dpr -------------------------------------------------------------------------------- /Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.dproj -------------------------------------------------------------------------------- /Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/SelectFilesOnExplorer/SelectFilesOnExplorer.res -------------------------------------------------------------------------------- /Delphi/UntEnumDLLExport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Delphi/UntEnumDLLExport.pas -------------------------------------------------------------------------------- /Images/Phrozen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Images/Phrozen.png -------------------------------------------------------------------------------- /Images/Unprotect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Images/Unprotect.png -------------------------------------------------------------------------------- /Images/mgallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Images/mgallery.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /Malware Gallery/change-window-state.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/change-window-state.pas -------------------------------------------------------------------------------- /Malware Gallery/check-process-elevation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/check-process-elevation.pas -------------------------------------------------------------------------------- /Malware Gallery/close-process-via-SendMessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/close-process-via-SendMessage.pas -------------------------------------------------------------------------------- /Malware Gallery/close-process-via-TerminateProcess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/close-process-via-TerminateProcess.pas -------------------------------------------------------------------------------- /Malware Gallery/close-window-via-PostMessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/close-window-via-PostMessage.pas -------------------------------------------------------------------------------- /Malware Gallery/copy-ansi-text-to-clipboard-via-SetClipboardData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/copy-ansi-text-to-clipboard-via-SetClipboardData.pas -------------------------------------------------------------------------------- /Malware Gallery/copy-files-to-clipboard-via-SetClipboardData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/copy-files-to-clipboard-via-SetClipboardData.pas -------------------------------------------------------------------------------- /Malware Gallery/copy-unicode-text-to-clipboard-via-SetClipboardData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/copy-unicode-text-to-clipboard-via-SetClipboardData.pas -------------------------------------------------------------------------------- /Malware Gallery/desktop-window-screenshot-via-BitBlt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/desktop-window-screenshot-via-BitBlt.pas -------------------------------------------------------------------------------- /Malware Gallery/dump-process-memory-via-minidumpwritedump.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/dump-process-memory-via-minidumpwritedump.pas -------------------------------------------------------------------------------- /Malware Gallery/dump-process-memory-via-readprocessmemory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/dump-process-memory-via-readprocessmemory.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-files-via-FindFirstFile-FindNextFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-files-via-FindFirstFile-FindNextFile.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-local-process-modules-via-peb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-local-process-modules-via-peb.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-network-share-via-NetShareEnum.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-network-share-via-NetShareEnum.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-process-modules-via-CreateToolhelp32Snapshot.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-process-modules-via-CreateToolhelp32Snapshot.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-process-via-NtQuerySystemInformation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-process-via-NtQuerySystemInformation.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-process-via-createtoolhelp32snapshot.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-process-via-createtoolhelp32snapshot.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-process-via-error-exception.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-process-via-error-exception.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-remote-process-modules-via-peb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-remote-process-modules-via-peb.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-remote-shares-via-WNetEnumResource.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-remote-shares-via-WNetEnumResource.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-window-via-EnumWindows.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-window-via-EnumWindows.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-windows-registry-winapi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-windows-registry-winapi.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-windows-services-via-EnumServicesStatus.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-windows-services-via-EnumServicesStatus.pas -------------------------------------------------------------------------------- /Malware Gallery/enumerate-windows-usernames.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/enumerate-windows-usernames.pas -------------------------------------------------------------------------------- /Malware Gallery/execute-application-via-CreateProcess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/execute-application-via-CreateProcess.pas -------------------------------------------------------------------------------- /Malware Gallery/execute-application-via-ShellExecute.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/execute-application-via-ShellExecute.pas -------------------------------------------------------------------------------- /Malware Gallery/execute-application-via-winexec.pas: -------------------------------------------------------------------------------- 1 | WinExec('notepad.exe', SW_SHOW); -------------------------------------------------------------------------------- /Malware Gallery/get-active-window-title.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-active-window-title.pas -------------------------------------------------------------------------------- /Malware Gallery/get-computer-name.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-computer-name.pas -------------------------------------------------------------------------------- /Malware Gallery/get-current-windows-user.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-current-windows-user.pas -------------------------------------------------------------------------------- /Malware Gallery/get-main-hard-drive-serial.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-main-hard-drive-serial.pas -------------------------------------------------------------------------------- /Malware Gallery/get-process-name-via-queryfullprocessimagename.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-process-name-via-queryfullprocessimagename.pas -------------------------------------------------------------------------------- /Malware Gallery/get-user-idle-time.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-user-idle-time.pas -------------------------------------------------------------------------------- /Malware Gallery/get-user-sid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-user-sid.pas -------------------------------------------------------------------------------- /Malware Gallery/get-window-caption-title.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/get-window-caption-title.pas -------------------------------------------------------------------------------- /Malware Gallery/message-hijacking-via-SetWindowLongPtr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/message-hijacking-via-SetWindowLongPtr.pas -------------------------------------------------------------------------------- /Malware Gallery/open-close-cddvd-tray.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/open-close-cddvd-tray.pas -------------------------------------------------------------------------------- /Malware Gallery/search-for-files-via-FindFirstFile-FindNextFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/search-for-files-via-FindFirstFile-FindNextFile.pas -------------------------------------------------------------------------------- /Malware Gallery/search-for-registry-keys-values.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/search-for-registry-keys-values.pas -------------------------------------------------------------------------------- /Malware Gallery/show-hide-window.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/show-hide-window.pas -------------------------------------------------------------------------------- /Malware Gallery/update-window-caption.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/update-window-caption.pas -------------------------------------------------------------------------------- /Malware Gallery/update-window-opacity-level.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/update-window-opacity-level.pas -------------------------------------------------------------------------------- /Malware Gallery/update-window-position-and-size.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Malware Gallery/update-window-position-and-size.pas -------------------------------------------------------------------------------- /Python/ExtractStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Python/ExtractStrings.py -------------------------------------------------------------------------------- /Python/cave-explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Python/cave-explorer.py -------------------------------------------------------------------------------- /Python/malinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Python/malinx.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/README.md -------------------------------------------------------------------------------- /Unprotect/CS/DetectMacAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/DetectMacAddress.cs -------------------------------------------------------------------------------- /Unprotect/CS/FtpC2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/FtpC2.cs -------------------------------------------------------------------------------- /Unprotect/CS/Melt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/Melt.cs -------------------------------------------------------------------------------- /Unprotect/CS/NamedPipes_SMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/NamedPipes_SMB.cs -------------------------------------------------------------------------------- /Unprotect/CS/NtQueryInformationProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/NtQueryInformationProcess.cs -------------------------------------------------------------------------------- /Unprotect/CS/Timestomp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/CS/Timestomp.cs -------------------------------------------------------------------------------- /Unprotect/Delphi/ADB_NtSetInformationThread.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/ADB_NtSetInformationThread.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/APCInjector.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/APCInjector.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/APCRun.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/APCRun.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/AntiSandboxScanService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/AntiSandboxScanService.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/DLLInjection_CreateRemoteThread_LoadLibrary.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/DLLInjection_CreateRemoteThread_LoadLibrary.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/DetectMouseMove.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/DetectMouseMove.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/FindWindowAPI.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/FindWindowAPI.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/FtpC2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/FtpC2.pas -------------------------------------------------------------------------------- /Unprotect/Delphi/IsDebuggerPresent.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/IsDebuggerPresent.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/Melt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/Melt.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/NamedPipes_SMB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/NamedPipes_SMB.pas -------------------------------------------------------------------------------- /Unprotect/Delphi/NtQueryObject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/NtQueryObject.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/NtQueryProcessInformation.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/NtQueryProcessInformation.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/NtSetDebugFilterState.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/NtSetDebugFilterState.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/OutputDebugString.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/OutputDebugString.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/ProcEnvInjection_DLLInjection.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/ProcEnvInjection_DLLInjection.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/ReflectiveDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/ReflectiveDLL.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/RunPE.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/RunPE.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/SuspendThread.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/SuspendThread.dpr -------------------------------------------------------------------------------- /Unprotect/Delphi/UntDataStreamObject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/UntDataStreamObject.pas -------------------------------------------------------------------------------- /Unprotect/Delphi/UntPEBDebug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Delphi/UntPEBDebug.pas -------------------------------------------------------------------------------- /Unprotect/FASM/x32/apc_injection.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/FASM/x32/apc_injection.asm -------------------------------------------------------------------------------- /Unprotect/Python/CodeCaveHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Python/CodeCaveHelper.py -------------------------------------------------------------------------------- /Unprotect/Python/FindWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhrozenIO/Snippets/HEAD/Unprotect/Python/FindWindow.py --------------------------------------------------------------------------------