2020-05-07 10:09:09 +00:00
|
|
|
id: http-username-password
|
|
|
|
|
2020-05-25 08:24:39 +00:00
|
|
|
# Extract something like https://username:password@vulnerable.com
|
|
|
|
# can be improved
|
2020-05-07 10:09:09 +00:00
|
|
|
|
|
|
|
info:
|
|
|
|
name: Http usernamme password
|
|
|
|
author: nadino
|
|
|
|
severity: medium
|
|
|
|
|
|
|
|
requests:
|
|
|
|
- method: GET
|
|
|
|
path:
|
2020-08-19 14:59:38 +00:00
|
|
|
- "{{BaseURL}}/"
|
2020-07-30 08:16:37 +00:00
|
|
|
|
2020-05-07 10:09:09 +00:00
|
|
|
extractors:
|
|
|
|
- type: regex
|
|
|
|
part: body
|
|
|
|
regex:
|
2020-08-19 14:59:38 +00:00
|
|
|
- '(ftp|ftps|http|https)://[A-Za-z0-9-_:\.~]+(@)'
|