-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Create readmeForJsmon #1632
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
Create readmeForJsmon #1632
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| ## Using Jsmon as a Data Source in Subfinder | ||
|
|
||
| Jsmon is now available as a subdomain data source in **Subfinder**. To use it, you need a Jsmon API key and a workspace ID. | ||
|
|
||
| 1. Clone and build Subfinder | ||
| ```bash | ||
| git clone https://github.com/projectdiscovery/subfinder.git | ||
| cd subfinder | ||
| go build . | ||
| 2. Get your Jsmon API Key and Workspace ID | ||
| Go to https://jsmon.sh/ and create an account. | ||
| After logging in, create a workspace. | ||
| From the dashboard, open the main menu → Jsmon API → API Keys / Quota. | ||
| Copy your API Key. | ||
| Note your Workspace ID (available in your workspace settings). | ||
| 3. Configure Subfinder for Jsmon | ||
| The Jsmon configuration format is: | ||
| apiKey:wkspId | ||
| apiKey → Your Jsmon API Key | ||
| wkspId → Your Workspace ID | ||
| Edit your Subfinder provider config file (~/.config/subfinder/provider-config.yaml) and add: | ||
| jsmon: | ||
| - "apiKey:yourWorkspaceId" | ||
|
Comment on lines
+16
to
+23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct the configuration format and example. The current example suggests a literal string Apply this diff: - The Jsmon configuration format is:
- apiKey:wkspId
- apiKey → Your Jsmon API Key
- wkspId → Your Workspace ID
- Edit your Subfinder provider config file (~/.config/subfinder/provider-config.yaml) and add:
- jsmon:
- - "apiKey:yourWorkspaceId"
+ The Jsmon credential format is:
+ API_KEY:WORKSPACE_ID
+ - API_KEY: your Jsmon API key
+ - WORKSPACE_ID: your workspace ID
+ Edit your Subfinder provider config file (~/.config/subfinder/provider-config.yaml) and add:
+ ```yaml
+ jsmon:
+ - "YOUR_API_KEY:YOUR_WORKSPACE_ID"
+ ```🤖 Prompt for AI Agents |
||
| 4. Run Subfinder with Jsmon | ||
| Now you can run Subfinder using Jsmon as a source: | ||
| subfinder -d <domain> -sources jsmon | ||
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.
Close the code fence and fix the build command.
go build .won’t produce the CLI binary. Build the subfinder command package instead.Apply this diff:
🤖 Prompt for AI Agents