Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xvpr/rust-malware-concept
x64 Rust malware for windows.
https://github.com/0xvpr/rust-malware-concept
malware poc proof-of-concept rust shell tcp-sockets virus windows
Last synced: 3 months ago
JSON representation
x64 Rust malware for windows.
- Host: GitHub
- URL: https://github.com/0xvpr/rust-malware-concept
- Owner: 0xvpr
- License: mit
- Created: 2021-04-11T01:56:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-04T22:27:30.000Z (9 months ago)
- Last Synced: 2024-05-05T22:36:52.229Z (9 months ago)
- Topics: malware, poc, proof-of-concept, rust, shell, tcp-sockets, virus, windows
- Language: Rust
- Homepage:
- Size: 65.4 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Rust Malware Concept
---
A Concept design of a simple malware executable compiled using rust.
The payload is calc.exe.### Table of Contents
- [How it works](#how-it-works)
- [Building It Yourself](#building-it-yourself)### How it works
#### TL;DR
The file moves itself, renames itself (as backdoor.exe), hides itself, and re-executes itself
inside of the target's **AppData** folder.**Detailed explanation**
The application is a Trojan that moves itself into the usersAppData
folder and sets its
attribute to hidden. In my case the payload iscalc.exe
You can set this to whatever you want obviously.### Building It Yourself
If you compile this code as is, it IS NOT malicious in any way shape or form.- WSL2/Ubuntu (Docker)
```bash
make docker-container
make docker-build
```