milis/talimatname/genel/w/wfuzz/talimat

33 lines
765 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Web uygulamalarındaki link verilmeyen kaynakları deneme/yanılma (fuzzer) yolu ile bulan araç.
# URL: https://github.com/xmendez/wfuzz
# Paketçi: yakar
# Gerekler: python-pip python-pyxml python-lxml
# Grup: ağ güvenlik
isim=wfuzz
surum=2.3
devir=1
kaynak=(https://github.com/xmendez/$isim/archive/v$surum.tar.gz::$isim-$surum.tar.gz)
derle() {
cd "$SRC/$isim-$surum"
mkdir -p "$PKG/usr/share/$isim"
cp -a * "$PKG/usr/share/$isim"
# desktop
mkdir -p "$PKG/usr/share/applications/"
for app in {wfencode,wfpayload,wfuzz}; do
cat > $PKG/usr/share/applications/$app.desktop << BASLA
[Desktop Entry]
Name=$app
Exec=sh -c "$app;${SHELL:-bash}"
Terminal=true
Icon=$app
Type=Application
Categories=Network;X-Komutan;
Version=1.0
BASLA
done
}