32 lines
835 B
Plaintext
32 lines
835 B
Plaintext
# Description: Web sunucu zafiyet tarayıcı aracı
|
||
# URL: https://cirt.net/Nikto2
|
||
# Packager: yakar (aydin@komutan.org)
|
||
# Depends on:
|
||
|
||
name=nikto
|
||
version=2.1.5
|
||
release=1
|
||
source=(https://cirt.net/$name/$name-$version.tar.bz2)
|
||
|
||
build() {
|
||
cd $SRC/$name-$version
|
||
|
||
install -d "$PKG/usr/share/nikto"
|
||
cp -a * "$PKG/usr/share/nikto"
|
||
|
||
#install -Dm 755 "$SRC/nikto.sh" "$PKG/usr/bin/nikto"
|
||
#install -Dm 644 program/nikto.conf "$PKG/etc/nikto.conf"
|
||
#install -Dm 644 documentation/nikto.1 "$PKG/usr/share/man/man1/nikto.1"
|
||
#install -Dm 644 program/docs/nikto_manual.html "$PKG/usr/share/doc/$name/manual.html"
|
||
#install -Dm 644 README.md "$PKG/usr/share/doc/$name/README"
|
||
|
||
mkdir -p $PKG/usr/bin
|
||
cat > $PKG/usr/bin/nikto << EOF
|
||
#!/bin/sh
|
||
cd /usr/share/nikto
|
||
exec /usr/bin/perl nikto.pl "$@"
|
||
EOF
|
||
|
||
chmod +x $PKG/usr/bin/nikto
|
||
}
|