commit
dc9fc5fe35
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
pip2 install pyqtgraph
|
||||||
|
pip2 install pydeep
|
||||||
|
pip2 install pylzma
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Description: Gömülü (embedded) dosyalarda binary görüntüyü aramak için kullanılan bir araç.
|
||||||
|
# URL: http://binwalk.org
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on: python-magic python-opengl
|
||||||
|
|
||||||
|
name=binwalk
|
||||||
|
version=2.1.1
|
||||||
|
release=1
|
||||||
|
source=(https://github.com/devttys0/$name/archive/v${version}.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$SRC/$name-$version"
|
||||||
|
|
||||||
|
python2 setup.py build
|
||||||
|
|
||||||
|
mkdir -p "$PKG/opt"
|
||||||
|
|
||||||
|
python2 setup.py install --root="$PKG" --optimize=1
|
||||||
|
|
||||||
|
install -Dm644 -t "$PKG/usr/share/doc/$name" README.md INSTALL.md API.md
|
||||||
|
#install -Dm644 LICENSE "$PKG/usr/share/licenses/$name/LICENSE"
|
||||||
|
|
||||||
|
#ln -sf /usr/share/firmware-mod-kit "$PKG/opt/firmware-mod-kit"
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Description: 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/
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on:
|
||||||
|
|
||||||
|
name=dmitry
|
||||||
|
version=1.3a
|
||||||
|
release=1
|
||||||
|
source=(http://dl.packetstormsecurity.net/UNIX/misc/DMitry-$version.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $SRC/DMitry-$version
|
||||||
|
./configure --prefix=/usr --sysconfdir=/etc
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
# Description: DNS tarayıcı
|
||||||
|
# URL: http://ha.ckers.org/fierce/
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on: perl-net-dns
|
||||||
|
|
||||||
|
name=fierce
|
||||||
|
version=0.9.9
|
||||||
|
release=1
|
||||||
|
source=()
|
||||||
|
|
||||||
|
build() {
|
||||||
|
if [ ! -d $DERLEME_KAYNAKDIZIN/$name ];then
|
||||||
|
git clone https://github.com/yakar/fierce.git $DERLEME_KAYNAKDIZIN/$name
|
||||||
|
else
|
||||||
|
cd $DERLEME_KAYNAKDIZIN/$name
|
||||||
|
git pull
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -r $DERLEME_KAYNAKDIZIN/$name $SRC
|
||||||
|
cd $SRC/$name
|
||||||
|
|
||||||
|
# Conform to our install location.
|
||||||
|
sed -i 's|hosts\.txt|/etc/fierce/hosts.txt|' "fierce.pl"
|
||||||
|
|
||||||
|
install -D -m755 fierce.pl "$PKG"/usr/bin/fierce.pl
|
||||||
|
install -D -m644 hosts.txt "$PKG"/etc/fierce/hosts.txt
|
||||||
|
}
|
Loading…
Reference in New Issue