milis/talimatname/genel/m/maltego/talimat

43 lines
974 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: DNS, Alan Adı, IP adresleri, web siteleri, kişiler vb. hakkında bilgi toplamak için açık kaynaklı bir istihbarat ve adli bilişim uygulaması.
# URL: http://www.paterva.com
# Paketçi: yakar
# Gerekler:
# Grup: güvenlik
isim=maltego
surum=4.1.13.11516
devir=1
kaynak=(https://www.paterva.com/malv41/Maltego.v${surum}.linux.zip::$isim-$surum.zip)
derle() {
cd "$SRC/${isim}_$surum"
# kopyala
mkdir -p "$PKG/usr/share/maltego"
cp -aR * "$PKG/usr/share/maltego"
# bin
mkdir -p "$PKG/usr/bin"
cat > "$PKG/usr/bin/maltego" << EOF
#!/bin/sh
cd /usr/share/maltego/bin
exec ./maltego "\$@"
EOF
chmod +x "$PKG/usr/bin/maltego"
# desktop
mkdir -p "$PKG/usr/share/applications/"
cat > $PKG/usr/share/applications/$isim.desktop << BASLA
[Desktop Entry]
Name=Maltego
Comment=Multipurpose Network sniffer/analyser/interceptor/logger
Exec=maltego
Icon=maltego
Terminal=false
Type=Application
Categories=Network;X-Komutan;
Keywords=maltego
BASLA
}