toolkit/TOOLS.md

469 lines
29 KiB
Markdown
Raw Normal View History

2022-02-16 02:08:17 -03:00
# Tools
1. [Analysis](#analysis)
1. [Decompilers](#decompilers)
1. [Dissasembler](#dissasembler)
2022-02-16 02:10:22 -03:00
1. [Hex editor](#hex-editor)
2022-02-16 02:08:17 -03:00
1. [Monitor](#monitor)
2022-02-27 19:10:36 -03:00
1. [NFOMaker](#nfomaker)
2022-02-16 02:08:17 -03:00
1. [Other](#other)
2022-02-27 19:10:36 -03:00
1. [Patcher](#patcher)
2022-02-16 02:10:22 -03:00
1. [Rootkits detector](#rootkits-detector)
2022-02-16 02:08:17 -03:00
1. [Unpacking](#unpacking)
## Analysis
2022-04-27 13:20:31 -03:00
### 4n4lDetector
***Web:*** https://github.com/4n0nym0us/4n4lDetector <br/>
***Developer:*** 4n0nym0us <br/>
***Description:*** 4n4lDetector is an analysis tool for Microsoft Windows executable files, libraries, drivers and mdumps for x86 and x64. As of v1.8 an extended use for analyzing anomalies in Linux ELF executables was also included. <br/>
2022-02-16 02:08:17 -03:00
### CAPA
***Web:*** https://github.com/fireeye/capa <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** mandiant - www.mandiant.com <br/>
***Description:*** Capa detects capabilities in executable files. Run this tool against a PE, ELF, or shellcode file and it tells you what it thinks the program can do. For example, it might suggest that the file is a backdoor, is capable of installing services, or relies on HTTP to communicate. <br/>
2022-02-16 02:08:17 -03:00
### DIE
***Web:*** https://github.com/horsicq/DIE-engine <br/>
***Developer:*** Hors <br/>
***Description:*** Detect It Easy, or abbreviated "DIE" is a program for determining types of files. DIE-Engine is a Graphical User Interface for DIE. <br/>
2022-02-16 02:08:17 -03:00
2022-05-05 20:34:13 -03:00
### Exe Explorer
***Web:*** https://www.mitec.cz/exe.html <br/>
***Developer:*** Michal Multi <br/>
***Description:*** It reads and displays executable file properties and structure. It is compatible with PE32 (Portable Executable), PE32+ (64bit), NE (Windows 3.x New Executable) and VxD (Windows 9x Virtual Device Driver) file types. .NET executables are supported too. It contains powerful Resource Viewer that is able to abalyze and display al basic resouce types and some extra ones as JPEG, PNG, GIF, AVI, REGISTRY. <br/>
2022-02-16 02:08:17 -03:00
### ExeinfoPe
***Web:*** https://github.com/ExeinfoASL/ASL <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** ASL - http://www.exeinfo.byethost18.com <br/>
***Description:*** ExEinfo PE detects packers, obfuscators, compilers & protectors in binary files. <br/>
2022-02-16 02:08:17 -03:00
### PE-Bear
***Web:*** https://github.com/hasherezade/pe-bear-releases <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** hasherezade <br/>
***Description:*** PE-bear is a freeware reversing tool for PE files. Its objective is to deliver fast and flexible “first view” for malware analysts, stable and capable to handle malformed PE files. <br/>
2022-02-16 02:08:17 -03:00
2022-02-26 12:02:05 -03:00
### PEiD (with plugins and databases)
2022-02-27 19:39:23 -03:00
***Web:*** https://web.archive.org/web/20110924071419/http://www.peid.info/ <br/>
***Developer:*** snaker <br/>
***Description:*** PEiD (short for PE iDentifier) is a well-known professional, extensible packer/cryptor/compiler detecting tool. Its so powerful that it can detect the types/signatures of almost any PE file packing tools (at present, the number has been more than 600 kinds) <br/>
2022-02-16 02:08:17 -03:00
### PEStudio
***Web:*** https://www.winitor.com/download <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** winitor <br/>
***Description:*** The goal of pestudio is to spot artifacts of executable files in order to ease and accelerate Malware Initial Assessment. The tool is used by Computer Emergency Response Teams (CERT), Security Operations Centers (SOC) and Digital-Forensic Labs worldwide. <br/>
2022-02-16 02:08:17 -03:00
### ProtectionID
2022-02-27 19:39:23 -03:00
***Web:*** https://web.archive.org/web/20210331144912/https://protectionid.net/ <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** CDKiller & TippeX <br/>
2022-02-27 19:39:23 -03:00
***Description:*** PiD Team's Protection ID started as a PC game protection detector, and quickly became a swiss-army knife to detect packers & .NET protections. <br/>
2022-02-16 02:08:17 -03:00
### XAPKDetector
***Web:*** https://github.com/horsicq/XAPKDetector <br/>
***Developer:*** Hors <br/>
***Description:*** This tool shows information about build tools, libraries and protection of APK/DEX files. Has heuristic capabilities, and runs in Win/MacOS/Linux. <br/>
2022-02-16 02:08:17 -03:00
### XELFViewer
***Web:*** https://github.com/horsicq/XELFViewer <br/>
***Developer:*** Hors <br/>
***Description:*** This is an ELF file viewer/editor for Windows, Linux and MacOS. <br/>
2022-02-16 02:08:17 -03:00
### XPEViewer
***Web:*** https://github.com/horsicq/XPEViewer <br/>
***Developer:*** Hors <br/>
***Description:*** This tool is a PE file viewer/editor for Windows, Linux and MacOS. <br/>
2022-02-16 02:08:17 -03:00
## Decompilers
### [ANDROID] JADX
***Web:*** https://github.com/skylot/jadx <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** skylot <br/>
***Description:*** Dex to Java decompiler: command line and GUI tools for producing Java source code from Android Dex and Apk files <br/>
2022-02-16 02:08:17 -03:00
### [AUTOIT] Exe2Aut
2022-02-20 01:25:20 -03:00
***Web:*** www.exe2aut.com <br/>
2022-04-15 12:21:48 -03:00
***Developer:*** Unknown <br/>
2022-02-20 01:25:20 -03:00
***Description:*** Exe2Aut is designed to be the easiest to use and most versatile
decompiler for compiled AutoIt3 scripts one could think of. Exe2Aut is even capable of decompiling
executables that have been packed and protected using AutoIt3Camo, Themida, Armadillo, Safengine and so forth due to its low level nature. <br/>
2022-02-16 02:08:17 -03:00
### [AUTOIT] MyAutToExe
2022-02-20 01:25:20 -03:00
***Web:*** https://files.planet-dl.org/Cw2k/MyAutToExe/index.html <br/>
2022-02-16 02:08:17 -03:00
***Developer:*** CW2K@gmx.de <br/>
***Description:*** Decompiles 'compiled' AutoIT Exe files. <br/>
2022-02-20 17:13:59 -03:00
### [DELPHI] Dede
***Web:*** https://code.google.com/archive/p/dedex/ <br/>
***Developer:*** DaFixer <br/>
***Description:*** DeDe is a very fast program that can analize executables compiled with Delphi 3,4,5,6, C++Builder and Kylix and give you all dfm files on the target, every published method in well-commented Assembler, and lots of other information.- <br/>
2022-02-16 02:08:17 -03:00
2022-02-20 17:13:59 -03:00
### [DELPHI] IDR
2022-02-16 02:08:17 -03:00
***Web:*** https://github.com/crypto2011/IDR <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** crypto2011 <br/>
***Description:*** IDR is a decompiler of executable files (EXE) and dynamic libraries (DLL), written in Delphi and executed in Windows32 environment, with the final aim of being capable to restore the most part of initial Delphi source codes from the compiled file. <br/>
2022-02-16 02:08:17 -03:00
### [DOTNET] dnSpyEx
***Web:*** https://github.com/dnSpyEx/dnSpy <br/>
***Developer:*** dnSpy team <br/>
***Description:*** dnSpy is a debugger and .NET assembly editor. You can use it to edit and debug assemblies even if you don't have any source code available. <br/>
2022-02-16 02:08:17 -03:00
### [DOTNET] GrayWolf
2022-02-27 19:39:23 -03:00
***Web:*** https://web.archive.org/web/20181114171712/http://www.digitalbodyguard.com/graywolf.html <br/>
2022-02-16 02:08:17 -03:00
***Developer:*** DigitalBodyGuard <br/>
***Description:*** GrayWolf is a reverse engineering tool focused on .NET Framework Applications. It can de-obfuscate binaries, live-edit IL, add payloads, edit attributes, and copy strong names signing on EXE/DLL. <br/>
2022-02-16 02:08:17 -03:00
### [DOTNET] ILSpy
***Web:*** https://github.com/icsharpcode/ILSpy <br/>
2022-02-27 19:39:23 -03:00
***Developer:*** ic#code <br/>
***Description:*** ILSpy is the open-source .NET assembly browser and decompiler. <br/>
2022-02-16 02:08:17 -03:00
### [JAVA] JD-GUI
***Web:*** https://github.com/java-decompiler/jd-gui <br/>
2022-02-27 19:39:23 -03:00
***Developer:*** the Java Decompiler dev team <br/>
***Description:*** This is a standalone graphical utility that displays Java sources from CLASS files. <br/>
2022-02-16 02:08:17 -03:00
### [JAVA] Recaf
***Web:*** https://github.com/Col-E/Recaf <br/>
2022-02-20 17:13:59 -03:00
***Developer:*** Matt Coley (Col-E) <br/>
***Description:*** An easy to use modern Java bytecode editor that abstracts away the complexities of Java programs. Recaf abstracts away constant pool, stack frames, wide instructions, and more. <br/>
2022-02-16 02:08:17 -03:00
### [PYTHON] PyInstxtractor
***Web:*** https://github.com/extremecoders-re/pyinstxtractor <br/>
2022-02-27 16:25:54 -03:00
***Developer:*** extremecoders-re <br/>
***Description:*** Python script to extract the contents of a PyInstaller generated Windows executable file. The contents of the pyz file (usually pyc files) present inside the executable are also extracted. The header of the pyc files are automatically fixed so that a Python bytecode decompiler will recognize it. <br/>
### [VB] VB Decompiler
***Web:*** https://www.vb-decompiler.org <br/>
***Developer:*** DotFix Software <br/>
***Description:*** VB Decompiler is an advanced tool that can decompile programs (EXE, DLL, or OCX) written in Visual Basic 5.0/6.0 and disassemble programs based on .NET technology. As you know, programs written in Visual Basic can be compiled to interpreted p-code or to native code, and a .NET assembly is always compiled to Microsoft intermediate language (MSIL). <br/>
2022-02-16 02:08:17 -03:00
## Dissasembler
### BDASM
2022-02-20 12:08:26 -03:00
***Web:*** www.bsasm.com (closed) <br/>
***Developer:*** Manuel Jiménez <br/>
***Description:*** BDASM is a multi-cpu, multi format file disassembler for Windows. Currently it supports ELF, X-Box, PE and raw binary files. The CPU support includes the Intel x86 16/32bits processor family up to SSE2 instructions, and PowerPc 603,604 32bits CPUs. <br/>
2022-02-16 02:08:17 -03:00
### Cutter
***Web:*** https://github.com/rizinorg/cutter <br/>
2022-02-20 12:08:26 -03:00
***Developer:*** https://rizin.re <br/>
***Description:*** Cutter is a free and open-source reverse engineering platform powered by Rizin (fork of the radare2 reverse engineering framework). It aims at being an advanced and customizable reverse engineering platform while keeping the user experience in mind. Cutter is created by reverse engineers for reverse engineers. <br/>
2022-02-16 02:08:17 -03:00
### Immunity Debugger
2022-02-20 12:08:26 -03:00
***Web:*** https://www.immunityinc.com/products/debugger/ <br/>
***Developer:*** Immunity <br/>
***Description:*** Immunity Debugger is a powerful new way to write exploits, analyze malware, and reverse engineer binary files. It builds on a solid user interface with function graphing, the industry's first heap analysis tool built specifically for heap creation, and a large and well supported Python API for easy extensibility. <br/>
2022-02-16 02:08:17 -03:00
2022-02-27 16:25:54 -03:00
### OllyDbg 1.10 (with plugins and scripts)
2022-02-20 01:25:20 -03:00
***Web:*** https://www.ollydbg.de <br/>
***Developer:*** Oleh Yuschuk <br/>
***Description:*** OllyDbg is an x86 debugger that emphasizes binary code analysis, which is useful when source code is not available. It traces registers, recognizes procedures, API calls, switches, tables, constants and strings, as well as locates routines from object files and libraries. It has a user friendly interface, and its functionality can be extended by third-party plugins. <br/>
2022-02-16 02:08:17 -03:00
2022-02-27 16:25:54 -03:00
### w32Dasm (with all versions)
2022-02-20 12:08:26 -03:00
***Web:*** http://members.home.net/w32dasm/ (closed) <br/>
***Developer:*** URSoftware <br/>
***Description:*** W32DASM is a disassembler: a tool made to translate machine language back into assembly language. It's ideal for those interested in reverse engineering, who want to take code apart and find out how it works.
Although W32DASM is ancient since hasn't received updates for a very long time (it's officially discontinued), it works without any trouble on Windows 10. <br/>
2022-02-16 02:08:17 -03:00
### x64dbg
2022-02-20 12:08:26 -03:00
***Web:*** www.x64dbg.com <br/>
***Developer:*** Duncan Ogilvie (mrexodia) <br/>
***Description:*** An open-source binary debugger for Windows, aimed at malware analysis and reverse engineering of executables you do not have the source code for. There are many features available and a comprehensive plugin system to add your own. <br/>
2022-02-16 02:08:17 -03:00
## HEX Editor
### HxD
***Web:*** https://mh-nexus.de/en/hxd <br/>
2022-02-16 02:10:22 -03:00
***Developer:*** Maël Hörz <br/>
2022-02-20 17:13:59 -03:00
***Description:*** HxD is a carefully designed and fast hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size.
The easy to use interface offers features such as searching and replacing, exporting, checksums/digests, insertion of byte patterns, a file shredder, concatenation or splitting of files, statistics and much more. <br/>
2022-02-16 02:08:17 -03:00
### ImHex
***Web:*** https://github.com/WerWolv/ImHex <br/>
***Developer:*** WerWolv <br/>
2022-02-20 17:13:59 -03:00
***Description:*** ImHex is a Hex Editor, a tool to display, decode and analyze binary data to reverse engineer their format, extract informations or patch values in them.
What makes ImHex special is that it has many advanced features that can often only be found in paid applications. Such features are a completely custom binary template and pattern language to decode and highlight structures in the data, a graphical node-based data processor to pre-process values before they're displayed, a disassembler, diffing support, bookmarks and much much more. <br/>
2022-02-16 02:08:17 -03:00
### REHex
***Web:*** https://github.com/solemnwarning/rehex <br/>
2022-02-20 17:13:59 -03:00
***Developer:*** Daniel Collins (solemnwarning) <br/>
2022-02-20 12:29:54 -03:00
***Description:*** A cross-platform (Windows, Linux, Mac) hex editor for reverse engineering, and everything else. <br/>
2022-02-16 02:08:17 -03:00
## Monitor
### Api Monitor
***Web:*** http://www.rohitab.com/apimonitor <br/>
***Developer:*** Rohitab <br/>
***Description:*** This fine tool lets you monitor and control API calls made by applications and services. Its a powerful tool for seeing how applications and services work or for tracking down problems that you have in your own applications. <br/>
2022-02-16 02:08:17 -03:00
### Autoruns
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns <br/>
***Developer:*** Sysinternals <br/>
***Description:*** This utility, which has the most comprehensive knowledge of auto-starting locations of any startup monitor, shows you what programs are configured to run during system bootup or login, and when you start various built-in Windows applications like Internet Explorer, Explorer and media players. <br/>
2022-02-16 02:08:17 -03:00
### CurrPorts
***Web:*** https://www.nirsoft.net/utils/cports.html <br/>
***Developer:*** NirSoft <br/>
***Description:*** CurrPorts is network monitoring software that displays the list of all currently opened TCP/IP and UDP ports on your local computer. For each port in the list, information about the process that opened the port is also displayed, including the process name, full path of the process, version information of the process (product name, file description, and so on), the time that the process was created, and the user that created it. <br/>
2022-02-16 02:08:17 -03:00
### HollowsHunter
***Web:*** https://github.com/hasherezade/hollows_hunter <br/>
***Developer:*** hasherezade <br/>
***Description:*** Scans all running processes. Recognizes and dumps a variety of potentially malicious implants (replaced/implanted PEs, shellcodes, hooks, in-memory patches). <br/>
2022-02-16 02:08:17 -03:00
### MultiMon
***Web:*** https://www.resplendence.com/multimon_whatsnew <br/>
***Developer:*** Resplendence Software Projects Sp. <br/>
***Description:*** MultiMon is an advanced multifunctional system monitoring tool for Windows which displays detailed output of a wide range of activities in real-time. The system monitor displays process and thread creation as well as binary image loading. The file system monitor displays activity from the perspective of the file system. The registry monitor shows registry activity in real time. <br/>
2022-02-16 02:08:17 -03:00
### PE-sieve
***Web:*** https://github.com/hasherezade/pe-sieve <br/>
***Developer:*** hasherezade <br/>
***Description:*** PE-sieve is a tool that helps to detect malware running on the system, as well as to collect the potentially malicious material for further analysis. Recognizes and dumps variety of implants within the scanned process: replaced/injected PEs, shellcodes, hooks, and other in-memory patches. Detects inline hooks, Process Hollowing, Process Doppelgänging, Reflective DLL Injection, etc. <br/>
2022-02-16 02:08:17 -03:00
### Portmon
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/portmon <br/>
***Developer:*** SysInternals <br/>
***Description:*** Portmon is a utility that monitors and displays all serial and parallel port activity on a system. It has advanced filtering and search capabilities that make it a powerful tool for exploring the way Windows works, seeing how applications use ports, or tracking down problems in system or application configurations. <br/>
2022-02-16 02:08:17 -03:00
### Process Explorer
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/process-explorer <br/>
***Developer:*** Sysinternals <br/>
***Description:*** Ever wondered which program has a particular file or directory open? Now you can find out. Process Explorer shows you information about which handles and DLLs processes have opened or loaded. <br/>
2022-02-16 02:08:17 -03:00
### Process Hacker 3
***Web:*** https://processhacker.sourceforge.io <br/>
2022-02-16 02:08:17 -03:00
***Developer:*** Process Hacker <br/>
***Description:*** A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware. <br/>
2022-02-16 02:08:17 -03:00
### Procmon
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/procmon <br/>
***Developer:*** Sysinternals <br/>
***Description:*** Process Monitor is an advanced monitoring tool for Windows that shows real-time file system, Registry and process/thread activity. It combines the features of two legacy Sysinternals utilities, Filemon and Regmon, and adds an extensive list of enhancements. <br/>
2022-02-16 02:08:17 -03:00
### RegShot
***Web:*** https://github.com/Seabreg/Regshot <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** Seabreg <br/>
***Description:*** Regshot is a small, free and open-source registry compare utility that allows you to quickly
take a snapshot of your registry and then compare it with a second one - done after doing
system changes or installing a new software product. <br/>
2022-02-16 02:08:17 -03:00
### SysAnalyzer
***Web:*** https://github.com/dzzie/SysAnalyzer <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** dzzie <br/>
***Description:*** SysAnalyzer is an application that was designed to give malcode analysts an
automated tool to quickly collect, compare, and report on the actions a
binary took while running on the system. <br/>
2022-02-16 02:08:17 -03:00
### TCPView
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview <br/>
***Developer:*** Sysinternals <br/>
***Description:*** TCPView is a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections. <br/>
2022-02-16 02:08:17 -03:00
2022-02-27 19:10:36 -03:00
## NFOMaker
### Ascii Generator 2
***Web:*** https://ascgendotnet.jmsoftware.co.uk <br/>
***Developer:*** Jonathan Mathews <br/>
***Description:*** Ascii Generator 2 (Ascgen2) is an advanced and open-source Windows application to convert images into high quality ASCII art text that accurately represents the original image. <br/>
It is the first and only program of its kind to support output for display in variable width fonts, with real-time output adjustment and much more. <br/>
### Cool Beans NFO Creator
***Web:*** https://www.coolbeans.ws/nfocreator.shtml <br/>
***Developer:*** Cool Beans Software <br/>
***Description:*** Cool Beans NFO Creator is a small program that generates detailed .nfo text files based on nearly fifty user-input fields. <br/>
### NFO Maker
***Web:*** Unknown <br/>
***Developer:*** tHE EGOiSTE - The Millenium Group <br/>
***Description:*** NFO Maker generator <br/>
2022-02-16 02:08:17 -03:00
## Other
### APKEasyTool
***Web:*** https://forum.xda-developers.com/t/tool-windows-apk-easy-tool-v1-59-2-2021-04-03.3333960/ <br/>
***Developer:*** Evildog1 <br/>
***Description:*** Apk Easy Tool is a lightweight GUI application that enables you to manage, sign, compile and decompile the APK files for the apps you are working on. <br/>
2022-02-16 02:08:17 -03:00
### ApkStudio
***Web:*** https://github.com/vaibhavpandeyvpz/apkstudio <br/>
***Developer:*** Vaibhav Pandey -aka- VPZ <br/>
***Description:*** Open-source, cross-platform Qt based IDE for reverse-engineering Android application packages. <br/>
### AstroGrep
***Web:*** https://sourceforge.net/projects/astrogrep <br/>
***Developer:*** AstroComma Inc. <br/>
***Description:*** AstroGrep is a Microsoft Windows GUI File Searching (grep) utility. Its features include regular expressions, versatile printing options, stores most recent used paths and has a "context" feature which is very nice for looking at source code. <br/>
2022-02-16 02:08:17 -03:00
### AVFucker
2022-02-20 17:13:59 -03:00
***Web:*** www.indetectables.net <br/>
***Developer:*** Sr Sombrero <br/>
***Description:*** AVFucker is a tool that helps you evade Antivirus using the “replace byte signature” technique. <br/>
2022-02-16 02:08:17 -03:00
### FLOSS
***Web:*** https://github.com/fireeye/flare-floss <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** mandiant <br/>
***Description:*** The FLARE Obfuscated String Solver (FLOSS, formerly FireEye Labs Obfuscated String Solver) uses advanced static analysis techniques to automatically deobfuscate strings from malware binaries. You can use it just like strings.exe to enhance basic static analysis of unknown binaries. <br/>
2022-02-16 02:08:17 -03:00
2022-02-27 16:25:54 -03:00
### HashCalc
***Web:*** https://www.slavasoft.com/hashcalc/ <br/>
***Developer:*** SlavaSoft <br/>
***Description:*** A fast and easy-to-use calculator that allows to compute message digests, checksums and HMACs for files, as well as for text and hex strings. It offers a choice of 13 of the most popular hash and checksum algorithms for calculations. <br/>
2022-02-16 02:08:17 -03:00
### HashMyFiles
***Web:*** https://www.nirsoft.net/utils/hash_my_files.html <br/>
***Developer:*** NirSoft <br/>
***Description:*** HashMyFiles is small utility that allows you to calculate the MD5 and SHA1 hashes of one or more files in your system. You can easily copy the MD5/SHA1 hashes list into the clipboard, or save them into text/html/xml file. <br/>
2022-02-16 02:08:17 -03:00
2022-02-26 12:02:05 -03:00
### ImpREC (with plugins)
***Web:*** Unknown <br/>
***Developer:*** MackT/uCF <br/>
***Description:*** ImpRec is a very handy tool that can be used to repair/reconstruct the import table for packed programs. <br/>
2022-02-16 02:08:17 -03:00
### Indetectables Offset Locator
2022-02-20 17:13:59 -03:00
***Web:*** https://www.indetectables.net/viewtopic.php?t=29725 <br/>
***Developer:*** Mingo, Yorll & Metal <br/>
***Description:*** This is a classic, great tool to clean AV signatures in executables. <br/>
2022-02-16 02:08:17 -03:00
### ProcDOT
***Web:*** https://www.procdot.com/downloadprocdotbinaries.htm <br/>
***Developer:*** CERT.at <br/>
***Description:*** ProcDOT aids malware analysis via visual means, by correlating ProcMon and PCAP data and showing it as an interactive, animated graph. It also detects and shows Thread Injection, smartly follows algorithms, filters out noise, and correlates network events with the involved processes. <br/>
2022-02-16 02:08:17 -03:00
### Process-Dump
***Web:*** http://split-code.com/processdump.html <br/>
***Developer:*** Split-Code <br/>
***Description:*** Process Dump is a Windows reverse-engineering tool to dump malware memory components back to disk for analysis. It uses an aggressive import reconstruction approach to make analysis easier, and supports 32 and 64 bit modules. <br/>
2022-02-16 02:08:17 -03:00
### Resource Hacker
***Web:*** http://www.angusj.com/resourcehacker <br/>
***Developer:*** Angus Johnson <br/>
***Description:*** Resource Hacker is a resource editor for 32bit and 64bit Windows applications. It's both a resource compiler aand a decompiler, enabling viewing and editing resources in executables. <br/>
2022-02-16 02:08:17 -03:00
### Scylla
***Web:*** https://github.com/NtQuery/Scylla <br/>
***Developer:*** The NtQuery team <br/>
***Description:*** Great tool for the purpose of rebuilding an Import Table. This is an alternative to ImpRec. <br/>
2022-02-16 02:08:17 -03:00
### ShowString
2022-02-26 12:02:05 -03:00
***Web:*** Unknown <br/>
***Developer:*** figugegl <br/>
***Description:*** This little tool shows all ASCII and UNICODE strings in a file. You can edit, copy, paste, sort, search and much more. <br/>
2022-02-16 02:08:17 -03:00
### Strings
***Web:*** https://docs.microsoft.com/en-us/sysinternals/downloads/strings <br/>
***Developer:*** Sysinternals <br/>
***Description:*** Search for ANSI and Unicode strings in binary images. <br/>
### Threadtear
***Web:*** https://github.com/GraxCode/threadtear <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** GraxCode <br/>
***Description:*** Threadtear is a multifunctional deobfuscation tool for java. Android application support is coming soon (Currently working on a dalvik to java converter). Suitable for easier code analysis without worrying too much about obfuscation. <br/>
2022-02-16 02:08:17 -03:00
### VirusTotalUploader
***Web:*** https://github.com/SamuelTulach/VirusTotalUploader <br/>
***Developer:*** Samuel Tulach <br/>
***Description:*** VirusTotal file uploader <br/>
2022-02-16 02:08:17 -03:00
### XOpCodeCalc
***Web:*** https://github.com/horsicq/XOpcodeCalc <br/>
***Developer:*** Hors <br/>
***Description:*** This tool is an x86/64 Opcode calculator. The program works on macOS, Linux and Windows. <br/>
2022-02-16 02:08:17 -03:00
2022-07-25 16:39:02 -03:00
### x64dbg Plugin Manager
***Web:*** https://github.com/horsicq/x64dbg-Plugin-Manager <br/>
***Developer:*** Hors <br/>
***Description:*** Plugin manager for x64dbg. <br/>
2022-02-16 02:08:17 -03:00
2022-02-27 19:10:36 -03:00
## Patcher
### AT4RE Patcher
***Web:*** https://www.at4re.net/f/thread-54.html <br/>
***Developer:*** Agmcz & Sn!per X <br/>
***Description:*** Patch generator. Currently the most complete and best that can be used. <br/>
### dUP
***Web:*** https://web.archive.org/web/20120327143407/http://diablo2oo2.cjb.net:80/ <br/>
***Developer:*** diablo2oo2 <br/>
***Description:*** dUP 2 is a freeware patch generator which can build a small standalone patcher executable for microsoft windows systems. <br/>
### uPPP
***Web:*** https://forum.tuts4you.com/forum/120-uppp/ <br/>
***Developer:*** Ufo-Pu55y <br/>
***Description:*** Another patch generator. Requires .NET Runtime 2.0 for the GUI. <br/>
2022-02-16 02:08:17 -03:00
## Rootkits Detector
### GMER
2022-02-20 17:13:59 -03:00
***Web:*** www.gmer.net <br/>
***Developer:*** The GMER dev team. <br/>
***Description:*** GMER is an application that detects and removes rootkits. <br/>
2022-02-16 02:08:17 -03:00
### Sysinspector
***Web:*** https://www.eset.com/int/support/sysinspector/ <br/>
2022-02-16 02:08:17 -03:00
***Developer:*** ESET <br/>
2022-02-20 17:13:59 -03:00
***Description:*** SysInspector scans your operating system and captures details such as running processes, registry content, startup items and network connections. ESET SysInspector is a convenient utility for the toolbox of every IT expert and first responder. <br/>
2022-02-16 02:08:17 -03:00
### Windows Kernel Explorer
***Web:*** https://github.com/AxtMueller/Windows-Kernel-Explorer <br/>
2022-02-20 21:06:16 -03:00
***Developer:*** Axt Müller (AxtMueller) <br/>
2022-02-20 17:13:59 -03:00
***Description:*** Windows Kernel Explorer is a free but powerful kernel research tool. It supports from Windows XP to Windows 11. Compared with WIN64AST and PCHunter, WKE can run on the latest Windows 11 without updating binary files. <br/>
2022-02-16 02:08:17 -03:00
## UnPacking
### De4Dot
***Web:*** https://github.com/de4dot/de4dot <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** de4dot <br/>
2022-02-20 21:06:16 -03:00
***Description:*** de4dot is an open source .NET deobfuscator and unpacker written in C#. It will try its best to restore a packed and obfuscated assembly to almost the original assembly.
Most of the obfuscation can be completely restored (eg. string encryption), but symbol renaming is impossible to restore since the original names aren't (usually) part of the obfuscated assembly.<br/>
2022-02-16 02:08:17 -03:00
### GUnPacker
2022-02-20 21:06:16 -03:00
***Web:*** Unknown <br/>
***Developer:*** Unknown <br/>
***Description:*** This tool is a generic unpacker. It has two main functionalities: (A) OEP positioning, and (B) the dumped code and data can be used to repair the follow-up of a PE header.
From Chinese developers. Competitor of Quick Unpack. <br/>
2022-02-16 02:08:17 -03:00
### NETUnpack
2022-02-20 21:06:16 -03:00
***Web:*** https://ntcore.com/?page_id=353 <br/>
***Developer:*** Erik Pistelli (NTCore) <br/>
***Description:*** This is a program to dump .NET packed applications. Of course no serious .NET protection relies on packing. In fact, this software shows how easily you can unpack a protected assemly. <br/>
2022-02-16 02:08:17 -03:00
### QUnpack
2022-02-20 21:06:16 -03:00
***Web:*** http://qunpack.ahteam.org <br/>
***Developer:*** Archer & FEUERRADER <br/>
***Description:*** The program is intended for a dynamic unpacking of binders, crypters, packers and protectors.
QuickUnpack tries to bypass all possible scramblers/obfuscators and restores redirected import. From the version 1 the opportunity of unpacking dll is added. From the version 2 the attach process feature added which allows to use QuickUnpack as a dumper and import recoverer. Scripts are also supported from version 2 which allows unpacking of more complicated protections. Version 3 brought x64 support and hardware virtualization debugging engine. This makes QuickUnpack a unique software product which has no similar analogues in the world! <br/>
2022-02-16 02:08:17 -03:00
2022-02-26 12:59:46 -03:00
### RL!dePacker (with unpack SDK)
2022-02-20 21:06:16 -03:00
***Web:*** http://www.reversinglabs.com <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** Ap0x <br/>
2022-02-26 12:02:05 -03:00
***Description:*** Reversing Labs RL!dePacker has a build in option to detect OEP. However this option does not work with VB (always use FindOEP! function with VB applications and Force to manual OEP?) and some packers. So if RL!dePacker can not unpack the file use FindOEP! function to detect correct OEP, but use it only as a second resort since it can be jammed! <br/>
Generic unpacker can unpack ONLY packers that do not use IAT redirection, that dont steal APIs and which fill out IAT table in correct order. All ordinals that can be converted to API names are converted, others are inserted into IAT as ordinals! <br/>
2022-02-16 02:08:17 -03:00
### UniExtract
***Web:*** https://github.com/Bioruebe/UniExtract2 <br/>
2022-02-20 01:25:20 -03:00
***Developer:*** Bioruebe <br/>
***Description:*** Universal Extractor 2 is a tool designed to extract files from any type of extractable file. <br/>
2022-02-26 12:02:05 -03:00
Unlike most archiving programs, UniExtract is not limited to **standard archives** such as `.zip` and `.rar`. It can also deal with **application installers**, **disk images** and even **game archives** and other **multimedia files**. An overview of supported file types can be found [here](https://github.com/Bioruebe/UniExtract2/blob/master/docs/FORMATS.md)
2022-02-16 02:08:17 -03:00
2022-02-28 17:19:53 -03:00
### VMUnpacker (with all versions)
***Web:*** https://web.archive.org/web/20080318210939/http://dswlab.com/d3.html <br/>
***Developer:*** dswlab <br/>
***Description:*** This tool uses the technology of Virtual Machines. It can unpack various known & unknown shells. It is suitable for unpacking the shelled Trojan horse in virus analysis, and because all codes are run under the VM, they will not take any danger to your system. <br/>
2022-02-16 02:08:17 -03:00
### XVolkolak
2022-02-20 21:06:16 -03:00
***Web:*** https://horsicq.github.io/ <br/>
***Developer:*** Hors <br/>
***Description:*** XVolkolak is an unpacker emulator. Unlike programs of this type, it does not use DebugAPI and other features of the operating system. Everything is emulated. You can safely unpack malware for further investigation without the risk of damaging the system.
All machine instructions are not executed on a real processor, so unpacking occurs regardless of the processor type and the operating system. <br/>