From 6b0d3788ebe0f3630224518e2db27787fab72656 Mon Sep 17 00:00:00 2001 From: Nikola Jokic Date: Tue, 9 Apr 2024 19:58:10 +0200 Subject: [PATCH] add missing -d flag to subfinder example --- content/1.workflows/1.syntax.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/1.workflows/1.syntax.md b/content/1.workflows/1.syntax.md index 14d061b..d5907be 100644 --- a/content/1.workflows/1.syntax.md +++ b/content/1.workflows/1.syntax.md @@ -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. @@ -121,7 +121,7 @@ scans: uploads: - subfinder.out steps: - - run: subfinder ${{ var.DOMAIN }} > subfinder.out + - run: subfinder -d ${{ var.DOMAIN }} > subfinder.out shell: bash probe-subdomains: on: @@ -129,7 +129,7 @@ scans: 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