x1nerama / maldev

⚠️ Malware Development training ⚠️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚠️ 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.

About

⚠️ Malware Development training ⚠️

License:GNU General Public License v3.0


Languages

Language:Assembly 66.4%Language:C 26.6%Language:C++ 7.0%