-
Notifications
You must be signed in to change notification settings - Fork 842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: httpx results dashboard #1834
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ehsandeep
requested changes
Jul 21, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Allow user to configure if missing / invalid API key upon
-dashboard
option in use.
echo example.com | httpx -pd
__ __ __ _ __
/ /_ / /_/ /_____ | |/ /
/ __ \/ __/ __/ __ \| /
/ / / / /_/ /_/ /_/ / |
/_/ /_/\__/\__/ .___/_/|_|
/_/
projectdiscovery.io
[INF] Current httpx version v1.6.6 (latest)
[ERR] ProjectDiscovery Cloud Platform (pdcp) API key is missing or invalid api key.
[INF] Get your free api key from https://cloud.projectdiscovery.io/?ref=api_key
[*] Enter PDCP API Key (exit to abort):
[INF] Successfully configured API as (@sandeep)
-
PDCP_API_SERVER
env is not configurable, below example still make api call to prod api.
PDCP_API_SERVER=https://api.dev.projectdisocvery.io HTTPS_PROXY=http://127.0.0.1:8080 ./httpx -pd -l test.txt
- Add option to upload local httpx output file (jsonl only)
-pdu, -dashboard-upload upload httpx output file (jsonl) in projectdiscovery cloud (pdcp) UI dashboard
Example:
htttpx -dashboard-upload output_file -silent
[INF] Uploaded 11 results, View uploaded results in UI dashboard : https://cloud.projectdiscovery.io/assets/cqed72mbh6us73bj4o3g
ehsandeep
approved these changes
Jul 25, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ PDCP_API_KEY=XXX PDCP_API_SERVER=https://api.dev.projectdiscovery.io ./httpx -pdu test_output
__ __ __ _ __
/ /_ / /_/ /_____ | |/ /
/ __ \/ __/ __/ __ \| /
/ / / / /_/ /_/ /_/ / |
/_/ /_/\__/\__/ .___/_/|_|
/_/
projectdiscovery.io
[INF] Current httpx version v1.6.6 (latest)
[INF] To view results in UI dashboard, visit https://cloud.projectdiscovery.io/assets upon completion.
[INF] Found 11 results, View found results in dashboard : https://cloud.projectdiscovery.io/assets/cqh57m9htlrs73be80og
$ chaos -d hackerone.com | PDCP_API_KEY=XXX PDCP_API_SERVER=https://api.dev.projectdiscovery.io ./httpx -dashboard
__ __ __ _ __
/ /_ / /_/ /_____ | |/ /
/ __ \/ __/ __/ __ \| /
/ / / / /_/ /_/ /_/ / |
/_/ /_/\__/\__/ .___/_/|_|
/_/
projectdiscovery.io
[INF] Current httpx version v1.6.6 (latest)
[INF] To view results in UI dashboard, visit https://cloud.projectdiscovery.io/assets upon completion.
https://mta-sts.managed.hackerone.com
https://mta-sts.forwarding.hackerone.com
https://mta-sts.hackerone.com
http://a.ns.hackerone.com
https://api.hackerone.com
https://www.hackerone.com
https://docs.hackerone.com
https://gslink.hackerone.com
https://support.hackerone.com
http://b.ns.hackerone.com
https://resources.hackerone.com
[INF] Found 11 results, View found results in dashboard : https://cloud.projectdiscovery.io/assets/cqh56s9htlrs73be80o0
Mzack9999
approved these changes
Jul 26, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposed Changes
Probe and Upload
Upload Already Existing JSONL output file
Available Flags
-dashboard
option #1833