Files
xingrin/backend/apps/scan/flows/url_fetch/__init__.py
2025-12-12 18:04:57 +08:00

22 lines
804 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
URL Fetch Flow 模块
提供 URL 获取相关的 Flow
- url_fetch_flow: 主 Flow按输入类型编排 + 统一后处理)
- domain_name_url_fetch_flow: 基于 domain_name来自 target_name输入的 URL 获取子 Flow如 waymore
- domains_url_fetch_flow: 基于 domains_file 输入的 URL 获取子 Flow如 gau、waybackurls
- sites_url_fetch_flow: 基于 sites_file 输入的 URL 获取子 Flow如 katana 等爬虫)
"""
from .main_flow import url_fetch_flow
from .domain_name_url_fetch_flow import domain_name_url_fetch_flow
from .domains_url_fetch_flow import domains_url_fetch_flow
from .sites_url_fetch_flow import sites_url_fetch_flow
__all__ = [
'url_fetch_flow',
'domain_name_url_fetch_flow',
'domains_url_fetch_flow',
'sites_url_fetch_flow',
]