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

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

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

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

工具目录

分类

查看所有分类
Loading categories
dnsx-action — 快速且多用途的 DNS 工具包,允许运行多个 DNS 查询。 | Kitploit
工具/GitHubGitHub/projectdiscovery/dnsx-action
侦察网络映射信息收集实用工具与框架子域名枚举DNS 分析
GitHubprojectdiscovery/dnsx-action

dnsx-action

快速且多用途的 DNS 工具包,允许运行多个 DNS 查询。

查看仓库
1564年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

dnsx

dnsx Action 让通过 GitHub Action 编排 dnsx 变得简单。

示例用法

在主机列表上运行 dnsx 的 GitHub Action

root@kitploit:~
      - name: 💥 dnsx - DNS Resolver
        uses: projectdiscovery/dnsx-action@main
        with:
          list: hosts.txt

使用自定义解析器运行 dnsx 的 GitHub Action

root@kitploit:~
      - name: 💥 dnsx - DNS Resolver
        uses: projectdiscovery/dnsx-action@main
        with:
          list: hosts.txt
          resolver: resolver.txt

示例工作流:.github/workflows/dnsx.yml

root@kitploit:~
name: 💥 dnsx - DNS Resolver

on:
    schedule:
      - cron: '0 0 * * *'
    workflow_dispatch:

jobs:
  dnsx-scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-go@v3
        with:
          go-version: 1.17

      - name: 💥 dnsx - DNS Resolver
        uses: projectdiscovery/dnsx-action@main
        with:
          list: hosts.txt

      - name: GitHub Workflow artifacts
        uses: actions/upload-artifact@v2
        with:
          name: dnsx.log
          path: dnsx.log

可用输入

下载工具
KeyDescriptionRequired
list要执行 DNS 解析的主机列表true
output保存输出结果的文件(默认为 dnsx.log)false
json以 JSON 格式写入结果false
resolver要使用的自定义解析器列表false
flags要使用的其他 dnsx CLI 标志false