mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
25 lines
725 B
Python
25 lines
725 B
Python
|
|
import re
|
||
|
|
|
||
|
|
|
||
|
|
__product__ = "1024-CMS"
|
||
|
|
__description__ = (
|
||
|
|
"1024 is one of a few CMS's leading the way with "
|
||
|
|
"the implementation of the AJAX technology into "
|
||
|
|
"all its areas. This includes dynamic administration "
|
||
|
|
"and user interaction. 1024 offers you to ability to "
|
||
|
|
"set up your own community forums, download area, news "
|
||
|
|
"posts, member management and more."
|
||
|
|
)
|
||
|
|
|
||
|
|
|
||
|
|
def search(html, **kwargs):
|
||
|
|
html = str(html)
|
||
|
|
plugin_detection_schema = (
|
||
|
|
re.compile(r".1024cms.", re.I),
|
||
|
|
re.compile(r"<.+>powered.by.1024.cms<.+.>", re.I),
|
||
|
|
re.compile(r"1024.cms", re.I)
|
||
|
|
)
|
||
|
|
for plugin in plugin_detection_schema:
|
||
|
|
if plugin.search(html) is not None:
|
||
|
|
return True
|