milis/talimatname/genel/n/nikto/talimat

32 lines
820 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: Web sunucu zafiyet tarayıcı aracı
2017-06-30 21:11:17 +02:00
# URL: https://cirt.net/Nikto2
2017-10-27 20:46:27 +02:00
# Paketçi: yakar (aydin@komutan.org)
# Gerekler:
2017-06-30 21:11:17 +02:00
2017-10-28 14:10:23 +02:00
isim=nikto
surum=2.1.5
devir=1
kaynak=(https://cirt.net/$isim/$isim-$surum.tar.bz2)
2017-06-30 21:11:17 +02:00
2017-10-27 23:59:41 +02:00
derle() {
2017-10-28 14:10:23 +02:00
cd $SRC/$isim-$surum
2017-06-30 21:11:17 +02:00
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"
2017-10-28 14:10:23 +02:00
#install -Dm 644 program/docs/nikto_manual.html "$PKG/usr/share/doc/$isim/manual.html"
#install -Dm 644 README.md "$PKG/usr/share/doc/$isim/README"
2017-06-30 21:11:17 +02:00
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
}