mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
15 lines
373 B
Python
15 lines
373 B
Python
import re
|
|
|
|
|
|
__item__ = "Armor Protection (Armor Defense)"
|
|
|
|
|
|
def detect(content, **kwargs):
|
|
content = str(content)
|
|
detection_schema = (
|
|
re.compile(r"\barmor\b", re.I),
|
|
re.compile(r"blocked.by.website.protection.from.armour", re.I)
|
|
)
|
|
for detection in detection_schema:
|
|
if detection.search(content) is not None:
|
|
return True
|