From 9a7c690c17c0ac3c8e7d33821383bbc7eafbcdc6 Mon Sep 17 00:00:00 2001 From: epi Date: Wed, 13 Apr 2022 17:55:33 -0500 Subject: [PATCH] changed to SecLists --- .github/workflows/build.yml | 32 ++++++++++++++++---------------- src/lib.rs | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ad8e10..92dcc5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,22 +73,22 @@ jobs: name: ${{ matrix.name }}.tar.gz path: ${{ matrix.name }}.tar.gz - build-deb: - needs: [build-nix] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Install cargo-deb - run: cargo install -f cargo-deb - - name: Install musl toolchain - run: rustup target add x86_64-unknown-linux-musl - - name: Deb Build - run: cargo deb --target=x86_64-unknown-linux-musl - - name: Upload Deb Artifact - uses: actions/upload-artifact@v2 - with: - name: feroxbuster_amd64.deb - path: ./target/x86_64-unknown-linux-musl/debian/* + # build-deb: + # needs: [build-nix] + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@master + # - name: Install cargo-deb + # run: cargo install -f cargo-deb + # - name: Install musl toolchain + # run: rustup target add x86_64-unknown-linux-musl + # - name: Deb Build + # run: cargo deb --target=x86_64-unknown-linux-musl + # - name: Upload Deb Artifact + # uses: actions/upload-artifact@v2 + # with: + # name: feroxbuster_amd64.deb + # path: ./target/x86_64-unknown-linux-musl/debian/* build-macos: env: diff --git a/src/lib.rs b/src/lib.rs index 7e00c32..dacdda5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,7 +75,7 @@ pub const DEFAULT_WORDLIST: &str = "/usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt"; #[cfg(target_os = "windows")] pub const DEFAULT_WORDLIST: &str = - ".\\seclists\\Discovery\\Web-Content\\raft-medium-directories.txt"; + ".\\SecLists\\Discovery\\Web-Content\\raft-medium-directories.txt"; /// Number of milliseconds to wait between polls of `PAUSE_SCAN` when user pauses a scan pub(crate) const SLEEP_DURATION: u64 = 500;