├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── weblogic.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/we8i/weblogic-exploits/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/we8i/weblogic-exploits/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/we8i/weblogic-exploits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # weblogic-exploits for CVE-2016 2 | 代码随便写的。 3 | python a.py IP 端口 "whoami" 4 | 5 | 要带着jar包 比较麻烦 6 | 包上传的时候有问题 自己去编译名字->ysoserial-0.0.5-SNAPSHOT-all 7 | 然后放在python根目录下 8 | 9 | -------------------------------------------------------------------------------- /weblogic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/we8i/weblogic-exploits/HEAD/weblogic.py --------------------------------------------------------------------------------