Giter VIP home page Giter VIP logo

richkware's Introduction

Richkware

Framework for building Windows malwares, written in C++.

Description

It's a library of network and OS functions, that you can use to create a malware. The composition of these functions permits the application to assume behaviors referable to the following types of malware:

  • Virus
  • Worms
  • Bot
  • Spyware
  • Keylogger
  • Scareware

Related Projects

Richkware-Manager-Server: Service for management of hosts where is present a malware developped using Richkware framework.

Richkware-Manager-Client: Client of Richkware-Manager-Server, that obtains list of all hosts and is able to send commands to do at each of them.

Functions

Network

  • StartServer: start a server on an arbitrary port, to receive commands from the Internet, thus allowing to run commands or make changes to application state;
  • RawRequest: send a request to a server;

System

  • SaveValueReg and LoadValueReg
  • SaveSession and LoadSession: save the application state(encrypted) in the system;
  • IsAdmin and RequestAdminPrivileges: check and require administrator privileges;
  • Persistance: install itself permanently in the system.
  • StealthWindow: hide applications;
  • OpenApp: open arbitrary applications;
  • BlockApps e UnBlockApps: block and Unblock applications (antivirus, ...);
  • Keylogger

Cryptography

  • EncryptDecrypt

Other

  • RandMouse: move randomly the mouse cursor
  • Hibernation: hibernate system;

Compile

After main.cpp implementation, you can compile as follows.

Using MinGW for Windows or MinGW cross compiler for Linux build environment

make

Using Microsoft C++ compiler (Visual Studio)

  • C/C++ > Preprocessor > Preprocessor Definitions, add "_CRT_SECURE_NO_WARNINGS"
  • Linker > Input > Additional Dependencies, add "Ws2_32.lib"

Remotely command ececution

Call function StartServer in the main, that starts server on port 8000.

int main () {
	Richkware richkware ;
	richkware.StartServer ("8000");
	return 0;
}

Connect from Unix systems

In Unix systems, you can use netcat.

nc <serverName> 8000

Connect from Windows

In Windows, you can use telnet.

telnet <serverName> 8000

richkware's People

Contributors

richkmeli avatar

Watchers

 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.