forked from huirong/GScan
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGScan.py
More file actions
24 lines (18 loc) · 885 Bytes
/
GScan.py
File metadata and controls
24 lines (18 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding:utf-8
from lib.core.option import *
import os
# 作者:咚咚呛
# 版本:v0.1
# 功能:本程序旨在为安全应急响应人员对Linux主机排查时提供便利,实现主机侧安全Checklist的自动化,用于快速主机安全点排查。
if __name__ == '__main__':
version = 'v0.1'
progam = u'''
_______ _______. ______ ___ .__ __.
/ _____| / | / | / \ | \ | | {version:%s}
| | __ | (----`| ,----' / ^ \ | \| |
| | |_ | \ \ | | / /_\ \ | . ` | {author:咚咚呛}
| |__| | .----) | | `----. / _____ \ | |\ |
\______| |_______/ \______|/__/ \__\ |__| \__| http://grayddq.top
''' % version
print(progam)
main(os.path.dirname(os.path.abspath(__file__)))