Merge pull request #1875 from righettod/feature_add_oauth2_tpl
Add detection template for OAUTH2patch-1
commit
357790b73a
|
@ -0,0 +1,28 @@
|
|||
id: oauth2-detect
|
||||
|
||||
info:
|
||||
name: OAuth 2.0 Authorization Server Detection Template
|
||||
author: righettod
|
||||
severity: info
|
||||
description: Try to detect OAuth 2.0 Authorization Server via the "oauth/token" endpoint
|
||||
tags: tech,oauth
|
||||
|
||||
requests:
|
||||
- method: POST
|
||||
path:
|
||||
- "{{BaseURL}}/oauth/token"
|
||||
|
||||
body: "grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx"
|
||||
|
||||
matchers-condition: and
|
||||
matchers:
|
||||
- type: status
|
||||
status:
|
||||
- 401
|
||||
- 400
|
||||
condition: or
|
||||
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- 'error":"invalid_client"'
|
Loading…
Reference in New Issue