From e5b4923b7bafcb1e7d968ea96ff1097e46fc5934 Mon Sep 17 00:00:00 2001 From: Fernando Ochoa Olivares Date: Thu, 26 Dec 2024 01:25:10 -0600 Subject: [PATCH] Create owasp.yml Signed-off-by: Fernando Ochoa Olivares --- .github/workflows/owasp.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/owasp.yml diff --git a/.github/workflows/owasp.yml b/.github/workflows/owasp.yml new file mode 100644 index 0000000..f38c173 --- /dev/null +++ b/.github/workflows/owasp.yml @@ -0,0 +1,14 @@ + - name: OWASP Amass Enum + # You may pin to the exact commit or the version. + # uses: fguisso/amass-action@b5db9490e22b59278100f93bbadca2b99250de5a + uses: fguisso/amass-action@1.0 + with: + # Domain names separated by commas (can be used multiple times) + domains: x.com + # Disable DNS resolution of names and dependent features + passive: # optional + # Execute brute forcing after searches + brute: true + # Path to the text file containing terminal stdout/stderr + output: errorlog.txt +