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
|
||||
|
||||
info:
|
||||
name: Live view AXIS Network Camera
|
||||
name: Live View AXIS Network Camera
|
||||
author: dhiyaneshDK
|
||||
severity: info
|
||||
reference: https://www.exploit-db.com/ghdb/6843
|
||||
|
@ -11,11 +11,17 @@ requests:
|
|||
- method: GET
|
||||
path:
|
||||
- '{{BaseURL}}/view/viewer_index.shtml'
|
||||
matchers-condition: and
|
||||
|
||||
matchers-condition: or
|
||||
matchers:
|
||||
- type: word
|
||||
words:
|
||||
- 'Live view - AXIS'
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
||||
- type: dsl
|
||||
dsl:
|
||||
- 'status_code == 200'
|
||||
- 'contains(tolower(body), "live view - axis")'
|
||||
condition: and
|
||||
|
||||
- type: dsl
|
||||
dsl:
|
||||
- 'status_code == 200'
|
||||
- 'contains(tolower(body), "/incl/axis_connection.js")'
|
||||
condition: and
|
||||
|
|
Loading…
Reference in New Issue