blob: 9d1c9a35feea9b93bce012107fc45b196a28e233 (
plain)
1 # Description: A tool for automating customized attacks against web apps
2 # URL: https://github.com/CoolerVoid/0d1n
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: curl
5 name=0d1n
6 version=3.7
7 release=1
8 source=(https://github.com/CoolerVoid/0d1n/archive/refs/tags/0d1n_v${version//./}.tar.gz)
9
10 build() {
11 cd ${name}-0d1n_v${version//./}
12
13 make
14 install -m 0755 -D bin/0d1n ${PKG}/usr/bin/0d1n
15
16 mkdir -p \
17 "${PKG}/opt/0d1n/view/response_sources" \
18 "${PKG}/opt/0d1n/payloads"
19
20 cp -rv templates payloads ${PKG}/opt/0d1n/
21 }
|