强化
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文件中
2022-12-27 16:10:37
4KB
Python
1