12345678910111213141516171819202122232425262728293031 |
- # Tanım: Derinlemesine bilgi toplama aracı. Bilgisayarlar hakkında bilgi toplar. Olası alt alan adları, e-posta adresleri, çalışma süresi bilgilerini toplayabilir, tcp port taramaları, whois aramaları ve daha fazlasını çalıştırabilir.
- # URL: https://github.com/jaygreig86/dmitry/
- # Paketçi: yakar
- # Gerekler:
- # Grup: güvenlik
- isim=dmitry
- surum=1.3a
- devir=2
- kaynak=(http://dl.packetstormsecurity.net/UNIX/misc/DMitry-$surum.tar.gz)
- derle() {
- cd $SRC/DMitry-$surum
- ./configure --prefix=/usr --sysconfdir=/etc
- make
- make DESTDIR=$PKG install
-
- # desktop
- mkdir -p "$PKG/usr/share/applications/"
- cat > $PKG/usr/share/applications/$isim.desktop << BASLA
- [Desktop Entry]
- Name=Dmitry
- Exec=sh -c "dmitry;${SHELL:-bash}"
- Terminal=true
- Icon=dmitry
- Type=Application
- Categories=Network;X-Komutan;
- Version=1.0
- BASLA
- }
|