mirror of
https://github.com/epi052/feroxbuster.git
synced 2026-05-14 05:31:13 -03:00
* bumped version * added cli option to parser * added banner entry * fixed state file with colon on windows * tweaked banner name for scoped url * fixed test with new In-Scope Url banner name * added STATE_FILENAME env var to control state file name/location * added ferox config example * initial implementation complete * updated ci/cd to add components to fmt/clippy configs * clippy * made subdomain detection a bit more robust * --request-file correctly sets scope values * added debug windows build * fixed failing test
229 lines
7.3 KiB
YAML
229 lines
7.3 KiB
YAML
name: CD Pipeline
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-nix:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: ${{ matrix.os }}
|
|
if: github.ref == 'refs/heads/main'
|
|
strategy:
|
|
matrix:
|
|
type: [ubuntu-x64, ubuntu-x86, armv7, aarch64]
|
|
include:
|
|
- type: ubuntu-x64
|
|
os: ubuntu-latest
|
|
target: x86_64-unknown-linux-musl
|
|
name: x86_64-linux-feroxbuster
|
|
path: target/x86_64-unknown-linux-musl/release/feroxbuster
|
|
pkg_config_path: /usr/lib/x86_64-linux-gnu/pkgconfig
|
|
- type: ubuntu-x86
|
|
os: ubuntu-latest
|
|
target: i686-unknown-linux-musl
|
|
name: x86-linux-feroxbuster
|
|
path: target/i686-unknown-linux-musl/release/feroxbuster
|
|
pkg_config_path: /usr/lib/i686-linux-gnu/pkgconfig
|
|
- type: armv7
|
|
os: ubuntu-latest
|
|
target: armv7-unknown-linux-gnueabihf
|
|
name: armv7-linux-feroxbuster
|
|
path: target/armv7-unknown-linux-gnueabihf/release/feroxbuster
|
|
pkg_config_path: /usr/lib/x86_64-linux-gnu/pkgconfig
|
|
- type: aarch64
|
|
os: ubuntu-latest
|
|
target: aarch64-unknown-linux-gnu
|
|
name: aarch64-linux-feroxbuster
|
|
path: target/aarch64-unknown-linux-gnu/release/feroxbuster
|
|
pkg_config_path: /usr/lib/x86_64-linux-gnu/pkgconfig
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cache cargo & target directories
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Build binary
|
|
uses: houseabsolute/actions-rust-cross@v0
|
|
with:
|
|
command: build
|
|
target: ${{ matrix.target }}
|
|
args: "--locked --release"
|
|
strip: true
|
|
toolchain: stable
|
|
- name: Build tar.gz for homebrew installs
|
|
if: matrix.type == 'ubuntu-x64'
|
|
run: |
|
|
tar czf ${{ matrix.name }}.tar.gz -C target/x86_64-unknown-linux-musl/release feroxbuster
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.name }}
|
|
path: ${{ matrix.path }}
|
|
- uses: actions/upload-artifact@v4
|
|
if: matrix.type == 'ubuntu-x64'
|
|
with:
|
|
name: ${{ matrix.name }}.tar.gz
|
|
path: ${{ matrix.name }}.tar.gz
|
|
|
|
build-debug:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install System Dependencies
|
|
run: |
|
|
env
|
|
sudo apt-get update
|
|
sudo apt-get install -y --no-install-recommends libssl-dev pkg-config musl-tools
|
|
- name: Set up Rust toolchain
|
|
uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: stable
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
- name: Build the project
|
|
env:
|
|
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig
|
|
OPENSSL_DIR: /usr/lib/ssl
|
|
run: cargo build --target=x86_64-unknown-linux-musl
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: x86_64-linux-debug-feroxbuster
|
|
path: target/x86_64-unknown-linux-musl/debug/feroxbuster
|
|
|
|
build-debug-windows:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Rust toolchain
|
|
uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: stable
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
- name: Build the project
|
|
run: cargo build --target=x86_64-pc-windows-msvc
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: x86_64-windows-debug-feroxbuster.exe
|
|
path: target\x86_64-pc-windows-msvc\debug\feroxbuster.exe
|
|
|
|
build-deb:
|
|
needs: [build-nix]
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
IN_PIPELINE: true
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install cargo-deb
|
|
run: cargo install -f cargo-deb
|
|
- uses: awalsh128/cache-apt-pkgs-action@v1
|
|
with:
|
|
packages: musl-tools # provides musl-gcc
|
|
version: 1.0
|
|
- 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@v4
|
|
with:
|
|
name: feroxbuster_amd64.deb
|
|
path: ./target/x86_64-unknown-linux-musl/debian/*
|
|
|
|
build-macos:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: macos-latest
|
|
if: github.ref == 'refs/heads/main'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cache cargo & target directories
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Build binary
|
|
uses: houseabsolute/actions-rust-cross@v0
|
|
with:
|
|
command: build
|
|
target: x86_64-apple-darwin
|
|
args: "--locked --release"
|
|
strip: true
|
|
toolchain: stable
|
|
- name: Build tar.gz for homebrew installs
|
|
run: |
|
|
tar czf x86_64-macos-feroxbuster.tar.gz -C target/x86_64-apple-darwin/release feroxbuster
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: x86_64-macos-feroxbuster
|
|
path: target/x86_64-apple-darwin/release/feroxbuster
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: x86_64-macos-feroxbuster.tar.gz
|
|
path: x86_64-macos-feroxbuster.tar.gz
|
|
|
|
build-macos-aarch64:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: macos-latest
|
|
if: github.ref == 'refs/heads/main'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cache cargo & target directories
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Build binary
|
|
uses: houseabsolute/actions-rust-cross@v0
|
|
with:
|
|
command: build
|
|
target: aarch64-apple-darwin
|
|
args: "--locked --release"
|
|
strip: true
|
|
toolchain: stable
|
|
- name: Build tar.gz for homebrew installs
|
|
run: |
|
|
tar czf aarch64-macos-feroxbuster.tar.gz -C target/aarch64-apple-darwin/release feroxbuster
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: aarch64-macos-feroxbuster
|
|
path: target/aarch64-apple-darwin/release/feroxbuster
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: aarch64-macos-feroxbuster.tar.gz
|
|
path: aarch64-macos-feroxbuster.tar.gz
|
|
|
|
build-windows:
|
|
env:
|
|
IN_PIPELINE: true
|
|
runs-on: ${{ matrix.os }}
|
|
if: github.ref == 'refs/heads/main'
|
|
strategy:
|
|
matrix:
|
|
type: [windows-x64, windows-x86]
|
|
include:
|
|
- type: windows-x64
|
|
os: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
name: x86_64-windows-feroxbuster.exe
|
|
path: target\x86_64-pc-windows-msvc\release\feroxbuster.exe
|
|
- type: windows-x86
|
|
os: windows-latest
|
|
target: i686-pc-windows-msvc
|
|
name: x86-windows-feroxbuster.exe
|
|
path: target\i686-pc-windows-msvc\release\feroxbuster.exe
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cache cargo & target directories
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: Build binary
|
|
uses: houseabsolute/actions-rust-cross@v0
|
|
with:
|
|
command: build
|
|
target: ${{ matrix.target }}
|
|
args: "--locked --release"
|
|
strip: true
|
|
toolchain: stable
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.name }}
|
|
path: ${{ matrix.path }}
|