We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is the json data returned from the target site:
{ "subdomain": ["www","m","mail"] }
This is the extractors syntax I use:
extractors
extractors: - type: json part: body name: subdomain json: - '.subdomain[]'
The final output:
[test:status-1] [http] [info] https://test.com/subdomains [www,m,mail]
I want to add variables to the output
variables: domain: "xxx.com" extractors: - type: json part: body name: subdomain json: - '"\(.subdomain[]).{{domain}}"'
or
nuclei -var domain=xxx.com extractors: - type: json part: body name: subdomain json: - '"\(.subdomain[]).{{domain}}"'
Let the final output look like this:
[test:status-1] [http] [info] https://test.com/subdomains [www.xxx.com,m.xxx.com,mail.xxx.com]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Please describe your feature request:
This is the json data returned from the target site:
This is the
extractors
syntax I use:The final output:
Describe the use case of this feature:
I want to add variables to the output
or
Let the final output look like this:
The text was updated successfully, but these errors were encountered: