Updated Axis Camera Template (#3557)
* Updated Axis Camera Template * Added missing AND condition * syntax fix Co-authored-by: sandeep <sandeep@projectdiscovery.io>patch-1
parent
dbdc25b148
commit
4000a96d3b
|
@ -1,7 +1,7 @@
|
||||||
id: liveview-axis-camera
|
id: liveview-axis-camera
|
||||||
|
|
||||||
info:
|
info:
|
||||||
name: Live view AXIS Network Camera
|
name: Live View AXIS Network Camera
|
||||||
author: dhiyaneshDK
|
author: dhiyaneshDK
|
||||||
severity: info
|
severity: info
|
||||||
reference: https://www.exploit-db.com/ghdb/6843
|
reference: https://www.exploit-db.com/ghdb/6843
|
||||||
|
@ -11,11 +11,17 @@ requests:
|
||||||
- method: GET
|
- method: GET
|
||||||
path:
|
path:
|
||||||
- '{{BaseURL}}/view/viewer_index.shtml'
|
- '{{BaseURL}}/view/viewer_index.shtml'
|
||||||
matchers-condition: and
|
|
||||||
|
matchers-condition: or
|
||||||
matchers:
|
matchers:
|
||||||
- type: word
|
- type: dsl
|
||||||
words:
|
dsl:
|
||||||
- 'Live view - AXIS'
|
- 'status_code == 200'
|
||||||
- type: status
|
- 'contains(tolower(body), "live view - axis")'
|
||||||
status:
|
condition: and
|
||||||
- 200
|
|
||||||
|
- type: dsl
|
||||||
|
dsl:
|
||||||
|
- 'status_code == 200'
|
||||||
|
- 'contains(tolower(body), "/incl/axis_connection.js")'
|
||||||
|
condition: and
|
||||||
|
|
Loading…
Reference in New Issue