Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
faraday_plugins — 用于 Faradaysec.com 的安全工具报告解析器 | Kitploit
工具/GitHubGitHub/infobyte/faraday_plugins
漏洞扫描器渗透测试DevSecOps
GitHubinfobyte/faraday_plugins

faraday_plugins

用于 Faradaysec.com 的安全工具报告解析器

查看仓库网站
612227天前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

安装

root@kitploit:~
pip install faraday-plugins

命令

列出插件

列出所有插件,并检查其是否兼容命令和/或报告

可选参数:

  • -cpf / --custom-plugins-folder PATH:如果指定,也会在该路径中查找自定义插件
root@kitploit:~
faraday-plugins list-plugins

从命令测试自动检测插件

root@kitploit:~
faraday-plugins detect-command "ping -c 4 www.google.com"

Faraday Plugin: ping

使用插件测试处理命令

可选参数:

  • --plugin_id PLUGIN_ID:不自动检测插件,使用此插件
  • -cpf / --custom-plugins-folder PATH:如果指定,也会在该路径中查找自定义插件
  • -dr / --dont-run:不运行,仅显示生成的命令
  • -o / --output-file PATH:将 JSON 输出发送到文件而不是 stdout
  • -sh / --show-output:显示命令的输出
root@kitploit:~
faraday-plugins process-command "ping -c4 www.google.com"
{
    "hosts": [
        {
            "ip": "216.58.202.36",
            "os": "unknown",
            "hostnames": [
                "www.google.com"
            ],
            "description": "",
            "mac": null,
            "credentials": [],
            "services": [],
            "vulnerabilities": [],
            "tags": []
        }
    ],
    "command": {
        "tool": "ping",
        "command": "ping",
        "params": "-c4 www.google.com",
        "user": "user",
        "hostname": "",
        "start_date": "2020-06-19T17:02:37.982293",
        "duration": 39309,
        "import_source": "shell"
    }
}

从报告测试自动检测插件

root@kitploit:~
faraday-plugins detect-report /path/to/report.xml

Faraday Plugin: Nmap

使用插件测试处理报告

可选参数:

  • --plugin_id PLUGIN_ID:不自动检测插件,使用此插件
  • -cpf / --custom-plugins-folder PATH:如果指定,也会在该路径中查找自定义插件
root@kitploit:~
faraday-plugins process-report /path/to/nmap_report.xml

{
    "hosts": [
        {
            "ip": "192.168.66.1",
            "os": "unknown",
            "hostnames": [],
            "description": "",
            "mac": "00:00:00:00:00:00",
            "credentials": [],
            "services": [
                {
                    "name": "domain",
                    "protocol": "tcp",
                    "port": 53,
                    "status": "open",
                    "version": "",
                    "description": "domain",
                    "credentials": [],
                    "vulnerabilities": [],
                    "tags": []
                },
                {
                    "name": "netbios-ssn",
                    "protocol": "tcp",
                    "port": 139,
                    "status": "open",
                    "version": "",
                    "description": "netbios-ssn",
                    "credentials": [],
                    "vulnerabilities": [],
                    "tags": []
                }
            ],
            "vulnerabilities": [],
            "tags": []
        }
    ],
    "command": {
        "tool": "Nmap",
        "command": "Nmap",
        "params": "/path/to/nmap_report.xml",
        "user": "user",
        "hostname": "",
        "start_date": "2020-06-19T17:22:11.608134",
        "duration": 1233,
        "import_source": "report"
    }
}

插件日志记录器

要使用它,你必须调用 self.logger.debug("some message")

root@kitploit:~
export PLUGIN_DEBUG=1
faraday-plugins proces-report /path/to/report.xml
2019-11-15 20:37:03,355 - faraday.faraday_plugins.plugins.manager - INFO [manager.py:113 - _load_plugins()]  Loading Native Plugins...
2019-11-15 20:37:03,465 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [acunetix]
2019-11-15 20:37:03,495 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [amap]
2019-11-15 20:37:03,549 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [appscan]
2019-11-15 20:37:03,580 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [arachni]
2019-11-15 20:37:03,613 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [arp_scan]
2019-11-15 20:37:03,684 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [beef]
2019-11-15 20:37:03,714 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [brutexss]
2019-11-15 20:37:03,917 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [burp]
2019-11-15 20:37:03,940 - faraday.faraday_plugins.plugins.manager - DEBUG [manager.py:123 - _load_plugins()]  Load Plugin [dig]
...

更多文档请参阅 https://docs.faradaysec.com/Basic-plugin-development/

下载工具