forked from Tuhinshubhra/CMSeeK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabda.py
More file actions
22 lines (18 loc) · 719 Bytes
/
abda.py
File metadata and controls
22 lines (18 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# This is a part of CMSeeK, check the LICENSE file for more information
# Copyright (c) 2018 - 2020 Tuhinshubhra
# Al Mubda version detection
# Rev 1
import cmseekdb.basic as cmseek
import re
def start(source):
cmseek.statement("Detecting Al Mubda version using source code [Method 1 of 1]")
regex = re.findall(r'Powered by Al Mubda version (\d.*?)</a>', source)
if regex != []:
if regex[0] != '' and regex[0] != ' ':
version = regex[0]
cmseek.success('Al Mubda version ' + cmseek.bold + cmseek.fgreen + version + cmseek.cln + ' detected')
return version
cmseek.error('Version detection failed!')
return '0'