Giter VIP home page Giter VIP logo

ransw's Introduction

ransw

Simple ransomware designed to be used for educational purposes. This malware is the simplest version of a ransomware (without the "ransom" part), where, by using XOR encryption, program will loop though each file located on users desktop, encrypt it's binary form and overwrite the old file with the new encrypted version (ignoring any other directory).

The whole code is in C, so it is as close to hardware, as it gets (assuming, you are not trying to build it in Assembly).

XOR Encryption

Pretty much the simplest encryption algorithm, where the XOR is a logical operator that takes 2 bits and outputs 1 (The symbol "^" in the code down bellow represents the XOR operation). It is a simmetric algorithm, which means, that same key and function used for encryption, works for decryption.

for (int i = 0; i < fileSize; i++) {
  buffer[i] = buffer[i] ^ key[i % strlen(key)];
}

However, this type of encryption algorithm is very weak and reversible, thus i do not recommend using it.

Disclaimer

I am not responsible for any harm caused by this sample and as mentioned on top, the code is only for educational purposes, especially for students, that are learning about malware and its behavior like myself. Feel free to modify my code.

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.