Skip to content

Commit

Permalink
add missing -d flag to subfinder example
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-jokic committed Apr 9, 2024
1 parent 7febf83 commit 6b0d378
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/1.workflows/1.syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The editor however does contain a basic syntax, so you can leverage autocomplete

### `scans`

Each workflow is made of one or more `scans`. Each scan has a unique name, which is a key in the scans object.
Each workflow is made of one or more `scans`. Each scan has a unique name, which is a key in the scans object.

You can have the unlimited number of scans, as long as their names are unique.

Expand Down Expand Up @@ -121,15 +121,15 @@ scans:
uploads:
- subfinder.out
steps:
- run: subfinder ${{ var.DOMAIN }} > subfinder.out
- run: subfinder -d ${{ var.DOMAIN }} > subfinder.out
shell: bash
probe-subdomains:
on:
expr: assetfinder is done and subfinder is done
steps:
# Prepare a list of subdomains
- run: cat ${{ job.assetfinder }}/assetfinder.out > subdomains.txt
shell: bash
shell: bash
- run: cat ${{ job.subfinder }}/subfinder.out >> subdomains.txt
shell: bash
- run: sort -o subdomains.txt -u subdomains.txt
Expand Down

0 comments on commit 6b0d378

Please sign in to comment.