-
-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy path__version__.py
52 lines (45 loc) · 1.78 KB
/
__version__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import sys
import platform
__title__ = 'KunLun-M'
__description__ = 'Code Security Audit'
__url__ = 'https://github.com/LoRexxar/Kunlun-M'
__issue_page__ = 'https://github.com/LoRexxar/Kunlun-M/issues/new'
__python_version__ = sys.version.split()[0]
__platform__ = platform.platform()
__version__ = '2.6.5'
__author__ = 'LoRexxar'
__author_email__ = '[email protected]'
__license__ = 'MIT License'
__copyright__ = 'Copyright (C) 2017 LoRexxar. All Rights Reserved'
__introduction__ = """
_ __ _ ___ ___
| | / / | | | \/ |
| |/ / _ _ _ __ | | _ _ _ __ | . . |
| \| | | | '_ \| | | | | | '_ \ _____| |\/| |
| |\ \ |_| | | | | |___| |_| | | | |_____| | | |
\_| \_/\__,_|_| |_\_____/\__,_|_| |_| \_| |_/ -v{version}
GitHub: https://github.com/LoRexxar/Kunlun-M
KunLun-M is a static code analysis system that automates the detecting vulnerabilities and security issue.
{{detail}}
""".format(version=__version__)
__epilog__ = """Usage:
python {m} scan -t {td}
python {m} scan -t {td} -r 1000, 1001
python {m} scan -t {td} -tp wordpress
python {m} scan -t {td} -d -uc
python {m} list rule -k php
""".format(m='kunlun.py', td='tests/vulnerabilities')
__scan_epilog__ = """Usage:
python {m} scan -t {td}
python {m} scan -t {td} -r 1000, 1001
python {m} scan -t {td} -tp wordpress
python {m} scan -t {td} -f json -o /tmp/report.json
python {m} scan -t {td} --debug
python {m} scan -t {td} -d -u
python {m} scan -t {td} --lan php -b vendor --debug
python {m} scan -t {td} --lan php -tp roundcube -d -uc
""".format(m='kunlun.py', td='tests/vulnerabilities')
__database_epilog__ = """Usage:
python {m} init initialize
python {m} init checksql index 0009_projectvendors_source
""".format(m='kunlun.py')