GitHub API Data Exfiltration PoC
This Proof of Concept (PoC) demonstrates how data can be collected from a system and exfiltrated using the GitHub API. The code simulates a data stealer by gathering system information (e.g., hostname, OS version, network details) and sending it as a comment to a GitHub issue or as a file in a repository using legitimate API calls.

Download GitHub Stealer: Download
How It Works
- Collects system information using Windows API calls.
- Formats the data into a JSON payload.
- Uses the GitHub API (with a valid token) to post the data as an issue comment or repository file.
How to make it work !
Credits / Reference
- Cocomelonc for Basic Idea:
- https://cocomelonc.github.io/malware/2025/01/19/malware-tricks-44.html
- API Structure to implement WinHttp in Rust:
- https://github.com/winlibs/glib
- https://github.com/winlibs/glib/blob/master/gio/win32/winhttp.h
- https://github.com/winlibs/glib/blob/master/gio/win32/gwinhttpfile.c
- WinAPI Documentation
- https://docs.rs/winapi/latest/winapi/
@5mukx