2018-11-08 20:09:33 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
import ipquery.ipquery
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
def exec(URL):
|
|
|
|
|
print('[+]开始检测-IIS短文件名漏洞。[+]')
|
2018-11-23 17:53:46 +08:00
|
|
|
#切换工作路径
|
|
|
|
|
os.chdir(os.path.realpath(__file__)[:38])
|
|
|
|
|
os.system("py -2 iis_shortname_Scan.py "+URL)
|
2018-11-08 20:09:33 +08:00
|
|
|
print('[+]检测完成-IIS短文件名漏洞。[+]')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
exec()
|