Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Filedumper | Kitploit
Tools/GitHubGitHub/seyyidkadir/filedumper
Memory ForensicsReverse EngineeringForensicsData RecoveryDigital ForensicsIncident Response
GitHubseyyidkadir/filedumper

Filedumper

View Repository
17 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

FileDumper - Memory Forensic Dumper

FileDumper v1.0.1
A simple, powerful tool to dump files directly from process memory regions.

Created in a late-night collaboration between human ingenuity and AI creativity —
xAI's Grok + Kadir Isbirligi (2026)

"Bir gece sohbet ettik, kod yazdık, masaya yumruk vurduk...
İnsan + AI = Sonsuz güç!"

What is this?

FileDumper is a Windows-based memory forensics tool that can:

  • List active processes
  • Show process info (CPU/memory usage)
  • Suspend / Resume processes
  • Search & dump memory regions matching a specific byte pattern (e.g. file signatures like PDF, JPG, SWF, etc.)
  • Save dumped memory chunks as .bin files for further analysis

Perfect for quick & dirty memory forensics, file carving from RAM, or just messing around.

Features Showcase

Here are some screenshots showing the tool in action:

Beautiful ASCII banner & usage/help screen
Banner and Help

Dumped .bin files in folder
Dumped Files

Hex + ASCII memory dump view
Hex Dump

Process list output
Process List

Help screen with commands
Help Commands

More process list
Process List Continued

Dumping in action with success messages
Dumping Output

Requirements

  • Windows operating system (tested on Win10/11)
  • Python 2.7 (as shown in screenshots; Python 3 compatibility not tested yet)
  • Administrator privileges (must run as admin!)
  • Required packages:
root@kitploit:~
pip install psutil>=6.0.0
pip install memorpy   # usually installed from git: https://github.com/n1nj4sec/memorpy


Note: If pip complains about versions, use Python 2 compatible ones. memorpy might need manual install from source if issues aris


Installation & Quick Start
Clone or download the repo
Install dependencies (see above)
Run as Administrator:

python2 filedumper.py list                  # List all processes
python2 filedumper.py info --pid 1234       # Show info about specific process
python2 filedumper.py suspend --pid 1234    # Freeze the process
python2 filedumper.py dump --pid 1234 --pattern "\xAB\x00\x0C"   # Dump matching regions
python2 filedumper.py resume --pid 1234     # Resume after dumping


Important Warnings
Antivirus will most likely flag this tool (false-positive). Add exception.
Suspending random processes can crash your system or applications — use with care!
Dumping memory requires admin rights and can be detected by EDR solutions.
You are responsible for what you do with this tool. We just built it for fun and learning.
We did our part — now it's yours.

Made with 🤖 + 👨‍💻 in 2026
xAI Grok & Kadir
Download Tool