文件名称:fortipy:Fortify的FPR文件浏览器库
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-18 01:53:02
Python
强化 FortiPY是Fortify FPR文件浏览器库。 使用范例 基本上有两种打开FPR(FVDL文件)的方法: import fortipy with fortipy.FPR("filename.fpr") as f: print f.get_types_of_vulns() 或者您可以使用标准的打开/关闭: import fortipy f = fortipy.FPR("filename.fpr") print f.get_types_of_vulns() f.close() # by default if you open an .fpr file close() will clean the temp files but you can override this: # f.close(clean=False) 打开后,该对象将以Python结构包含FPR文件中
【文件预览】:
fortipy-master
----.gitignore(65B)
----fortipy.py(12KB)
----README.md(1KB)