Skip to content

chore(deps): bump github.com/projectdiscovery/utils from 0.2.9 to 0.2.10 #777

chore(deps): bump github.com/projectdiscovery/utils from 0.2.9 to 0.2.10

chore(deps): bump github.com/projectdiscovery/utils from 0.2.9 to 0.2.10 #777

Workflow file for this run

name: 🔨 Build Test
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: Test Builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test
run: go test ./...
- name: Build
run: go build .
working-directory: cmd/shuffledns/
# Installing massdns
- uses: actions/checkout@v4
with:
repository: blechschmidt/massdns
path: ./massdns
- name: Install massdns
working-directory: ./massdns
run: |
make all
sudo make install
# Tests
- name: Bruteforce Mode Test
run: go run . -v -d scanme.sh -r ../../tests/resolvers.txt -w ../../tests/wordlist.txt -mode bruteforce
working-directory: cmd/shuffledns/
- name: Resolve Mode Test
run: go run . -l ../../tests/subdomains.txt -v -d wrongdomain.sh -r ../../tests/resolvers.txt -mode resolve -auto-domain
working-directory: cmd/shuffledns/