https://github.com/projectdiscovery/httpx-action
HTTP Web Server probing
https://github.com/projectdiscovery/httpx-action
Last synced: about 1 year ago
JSON representation
HTTP Web Server probing
- Host: GitHub
- URL: https://github.com/projectdiscovery/httpx-action
- Owner: projectdiscovery
- License: mit
- Created: 2021-06-15T07:56:52.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-25T19:10:33.000Z (over 2 years ago)
- Last Synced: 2025-04-28T16:14:36.333Z (about 1 year ago)
- Homepage:
- Size: 6.84 KB
- Stars: 8
- Watchers: 9
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
httpx Action makes it easy to orchestrate httpx with GitHub Action.
Example Usage
-----
**GitHub Action running httpx on list of hosts**
```yaml
- name: 💥 httpx - HTTP Web Server probing
uses: projectdiscovery/httpx-action@main
with:
list: hosts.txt
```
**Example workflow**: `.github/workflows/httpx.yml`
```yaml
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
------
| Key | Description | Required |
|----------|--------------------------------------------------|----------|
| `list` | List of hosts to run HTTP/S Web server probing | false |
| `output` | File to save output result (default - httpx.log) | false |
| `json` | Write results in JSON format | false |
| `flags` | Additional httpx CLI flags to use | false |