🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

ungrabber

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ungrabber

Ungrabber is a python module to automatically decompile and get the C2/Type of almost every known python grabbers

pipPyPI
Version
0.0.6
Maintainers
1

Ungrabber

Ungrabber is a Python module designed for decompiling and extracting C2 (especially webhook) from info stealers.

Installation

  • Clone the repository:
    git clone https://github.com/lululepu/Ungrabber
    
  • Navigate to the repository directory:
    cd Ungrabber-main
    
  • Install the module:
    pip install .
    

Usage

1. Direct Decompiling

Decompile a file and extract its data as a tuple:

import Ungrabber

result = Ungrabber.decompile("filename")
print(result)  # The tuple of extracted data

2. Load as a Stub Object

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

Contributing

Contributions are welcome! Feel free to submit issues or pull requests to improve Ungrabber.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contact

For any inquiries or support, please open an issue on GitHub.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts