nuclei-templates/http/osint/phishing/python-phish.yaml

36 lines
689 B
YAML
Raw Normal View History

2024-02-17 19:59:25 +00:00
id: python-phish
2024-02-16 20:27:33 +00:00
info:
2024-02-17 19:59:25 +00:00
name: python phishing Detection
2024-02-16 20:27:33 +00:00
author: rxerium
severity: info
description: |
2024-02-17 19:59:25 +00:00
A python phishing website was detected
2024-02-16 20:27:33 +00:00
reference:
2024-02-17 19:59:25 +00:00
- https://python.org
2024-03-08 07:16:17 +00:00
tags: phishing,python,osint
2024-02-16 20:27:33 +00:00
http:
- method: GET
path:
- "{{BaseURL}}"
host-redirects: true
max-redirects: 2
matchers-condition: and
matchers:
- type: word
words:
2024-02-17 19:59:25 +00:00
- 'Welcome to Python.org'
- 'The official home of the Python Programming Language'
2024-02-24 16:33:10 +00:00
condition: and
2024-02-16 20:27:33 +00:00
- type: status
status:
- 200
- type: dsl
dsl:
2024-02-17 19:59:25 +00:00
- '!contains(host,"python.org")'