Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/projectdiscovery/httpx-action
ReconnaissanceNetwork MappingScripting & AutomationInformation GatheringWeb SecurityDevSecOps
GitHubprojectdiscovery/httpx-action

httpx-action

HTTP Web Server probing

View Repository
1462 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
httpx-action — HTTP Web Server probing | Kitploit

httpx

httpx Action makes it easy to orchestrate httpx with GitHub Action.

Example Usage

GitHub Action running httpx on list of hosts

root@kitploit:~
      - name: 💥 httpx - HTTP Web Server probing
        uses: projectdiscovery/httpx-action@main
        with:
          list: hosts.txt

Example workflow: .github/workflows/httpx.yml

root@kitploit:~
name: 💥 httpx - HTTP Web Server probing

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

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

      - name: 💥 httpx - HTTP Web Server probing
        uses: projectdiscovery/httpx-action@main
        with:
          list: hosts.txt

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

Available Inputs

Download Tool
KeyDescriptionRequired
listList of hosts to run HTTP/S Web server probingfalse
outputFile to save output result (default - httpx.log)false
jsonWrite results in JSON formatfalse
flagsAdditional httpx CLI flags to usefalse