Add files via upload

This commit is contained in:
achenc1013
2025-03-09 19:44:06 +08:00
committed by GitHub
parent ba7339b28c
commit 6f49427932
60 changed files with 10119 additions and 2 deletions

19
xss_scanner.py Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
XSS深度漏洞扫描器 - 主入口脚本
"""
import os
import sys
# 添加当前目录到Python路径
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# 导入主模块
from xss_scanner.main import main
if __name__ == "__main__":
# 调用主函数
main()