Que checkdmarc no analice subdominios www

This commit is contained in:
nukeador 2021-07-26 13:25:44 +02:00
parent fbd3c41fe1
commit 737b1d55a0

View File

@ -29,7 +29,7 @@ jobs:
# Using the API would be more flexible, but this is easier to implement for now.
- name: Check DMARC information about public sites
run: |
SITES=$(find {_data/general.json,_data/{comunidades,provincias}/*.json} | xargs cat | jq -r .webs[].url)
SITES=$(find {_data/general.json,_data/{comunidades,provincias}/*.json} | xargs cat | jq -r .webs[].url | sed 's/www.//g')
checkdmarc --skip-tls --timeout 1 ${SITES} | jq 'INDEX(.domain)' > _data/results/dmarc/summary.json
# The resulting commit will not trigger another GitHub Actions Workflow run.