lets use mdaxfr.poy for faster processing
This commit is contained in:
parent
45c6f9da26
commit
11b125eb2b
16
.github/workflows/daily-axfr.yml
vendored
16
.github/workflows/daily-axfr.yml
vendored
@ -18,9 +18,19 @@ jobs:
|
||||
# Full git history needed to track changes
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install dnspython
|
||||
|
||||
- name: Set up environment
|
||||
run: |
|
||||
chmod +x ./mdaxfr
|
||||
chmod +x ./extras/mdaxfr.py
|
||||
mkdir -p axfrout
|
||||
|
||||
- name: Run AXFR scan
|
||||
@ -28,7 +38,9 @@ jobs:
|
||||
curl -s 'https://data.iana.org/TLD/tlds-alpha-by-domain.txt' | \
|
||||
tail -n +2 | \
|
||||
tr '[:upper:]' '[:lower:]' | \
|
||||
./mdaxfr
|
||||
while read domain; do
|
||||
python ./extras/mdaxfr.py -d "$domain"
|
||||
done
|
||||
|
||||
- name: Configure Git
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user