31 lines
508 B
YAML
31 lines
508 B
YAML
|
id: lexmark-detect
|
||
|
|
||
|
info:
|
||
|
name: Lexmark Device Detect
|
||
|
author: princechaddha
|
||
|
severity: info
|
||
|
tags: tech,airtame,printer
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}"
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
regex:
|
||
|
- "<title>Lexmark (.*)</title>"
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- "<title>Lexmark (.*)</title>"
|