Codebase list cmseek / 52f49a4 VersionDetect / subcms.py
52f49a4

Tree @52f49a4 (Download .tar.gz)

subcms.py @52f49a4raw · history · blame

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# This is a part of CMSeeK, check the LICENSE file for more information
# Copyright (c) 2018 - 2020 Tuhinshubhra

# Subrion CMS version detection
# Rev 1

import cmseekdb.basic as cmseek
import re

def start(ga_content):
    regex = re.findall(r'Subrion CMS (.*?) - ', ga_content)
    if regex != []:
        version = regex[0]
        cmseek.success('Subrion CMS version ' + cmseek.bold + cmseek.fgreen + version + cmseek.cln + ' detected')
        return version
    else:
        cmseek.error('Version detection failed!')
        return '0'