发布时间:2019-08-28 09:10:29编辑:auto阅读(2083)
#-*- coding:utf-8 -*- import os import sys if len(sys.argv) == 2: filename=sys.argv[1] if not os.path.isfile(filename): print '[-]' + filename + 'does not exist.' exit(0) if not os.access(filename, os.R_OK): print '[-]' + filename + 'access denied.' exit(0) print '[+] reading vulnerabilities from : ' + filename
执行结果:第一个是不存在的文件,第二个是存在且有权限的文件
上一篇: python学习:Indentation
下一篇: CentOS 6.4 安装python2
51568
51145
41665
38421
32908
29881
28601
23562
23493
21841
1991°
2702°
2265°
2188°
2639°
2207°
2958°
4886°
4722°
3358°