
HTTP-Webserver-Sondierung
GitHub Action, die httpx mit einer Liste von Hosts ausführt
- name: 💥 httpx - HTTP Web Server probing
uses: projectdiscovery/httpx-action@main
with:
list: hosts.txt
Beispiel-Workflow: .github/workflows/httpx.yml
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
| Key | Beschreibung | Erforderlich |
|---|
list | Liste der Hosts, auf denen die HTTP/S-Webserver-Prüfung ausgeführt werden soll | false |
output | Datei zum Speichern des Ausgabergebnisses (Standard: httpx.log) | false |
json | Ergebnisse im JSON-Format schreiben | false |
flags | Zusätzliche zu verwendende httpx-CLI-Flags | false |