forked from rabbitmask/WeblogicScanServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeblogicScanStart.py
More file actions
26 lines (22 loc) · 920 Bytes
/
Copy pathWeblogicScanStart.py
File metadata and controls
26 lines (22 loc) · 920 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
25
26
#!/usr/bin/env python3
# _*_ coding:utf-8 _*_
'''
____ _ _ _ _ __ __ _
| _ \ __ _| |__ | |__ (_) |_| \/ | __ _ ___| | __
| |_) / _` | '_ \| '_ \| | __| |\/| |/ _` / __| |/ /
| _ < (_| | |_) | |_) | | |_| | | | (_| \__ \ <
|_| \_\__,_|_.__/|_.__/|_|\__|_| |_|\__,_|___/_|\_\
'''
import WeblogicScanServer
version='V3.0'
banner='''
__ __ _ _ _ ____
\ \ / /__| |__ | | ___ __ _(_) ___ / ___| ___ __ _ _ __
\ \ /\ / / _ \ '_ \| |/ _ \ / _` | |/ __| \___ \ / __/ _` | '_ \
\ V V / __/ |_) | | (_) | (_| | | (__ ___) | (_| (_| | | | |
\_/\_/ \___|_.__/|_|\___/ \__, |_|\___| |____/ \___\__,_|_| |_|
By RabbitMask | {}
'''.format(version)
print(banner)
print("\nWelcome to WeblogicScan.Have a good time~")
WeblogicScanServer.app.run(host='0.0.0.0',port=521, debug=False)