Skip to content

x1nerama/maldev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ Malware Development

This repo contains projects I have prepared for malware development. I am new to malware development and I will add every project I make to this repo to improve myself. Projects in this repository:

ASM

C/C++

💻 NOTE

In some projects you will also see Assembly projects. You can use the appropriate syntax below to run these projects:

gcc -o <project> <project.c> -L. -l<dllName (without .dll)>

For example, if you want to compile and run the DLL Injection project, you need to run the following code:

gcc -o injection main.c -L. -lexecution

In order to use the functions I created with assembly in C projects, I convert assembly projects into dlls and include them as libraries during compilation.

So you don't need to compile the assembly projects separately. You only need to compile the main C project with the dll.

⚠️ WARNING

The projects shared here are purely for educational and informative purposes. While developing the projects, I develop them in a way that can prevent illegal situations and I do not condone the use of these programs for illegal activities.