Ungrabber is a Python module designed for decompiling and extracting C2 (especially webhook) from info stealers.
- Clone the repository:
git clone https://github.com/lululepu/Ungrabber
- Navigate to the repository directory:
cd Ungrabber-main
- Install the module:
pip install .
Decompile a file and extract its data as a tuple:
import Ungrabber
result = Ungrabber.decompile("filename")
print(result) # The tuple of extracted data
Load a file as a stub object for further analysis:
import Ungrabber
with open("filename", "rb") as f:
stub = Ungrabber.load(f)
print(stub) # The stub object
Documentation will be added later
Contributions are welcome! Feel free to submit issues or pull requests to improve Ungrabber.
This project is licensed under the MIT License. See the LICENSE
file for more details.
For any inquiries or support, please open an issue on GitHub.