wpscan-güncellendi
This commit is contained in:
parent
1a44575930
commit
2305871d1e
|
@ -1,19 +1,17 @@
|
||||||
# Tanım: WordPress zafiyet tarayıcısı
|
# Tanım: WordPress zafiyet tarayıcısı
|
||||||
# URL: http://wpscan.org
|
# URL: http://wpscan.org
|
||||||
# Paketçi: yakar_(aydin@komutan.org)
|
# Paketçi: yakar
|
||||||
# Gerekler: ruby-bundler libxslt yaml curl
|
# Gerekler: ruby-bundler libxslt yaml curl libxml2
|
||||||
# Grup: güvenlik
|
# Grup: güvenlik
|
||||||
|
|
||||||
isim=wpscan
|
isim=wpscan
|
||||||
surum=2.9.2
|
surum=3.3.3
|
||||||
devir=1
|
devir=1
|
||||||
kaynak=(https://github.com/wpscanteam/wpscan/archive/${surum}.tar.gz https://github.com/wpscanteam/wpscan/commit/f6644eebf95baea3356290ecd6364f0a4a456406.patch)
|
kaynak=(https://github.com/wpscanteam/wpscan/archive/v${surum}.tar.gz::$isim-$surum.tar.gz)
|
||||||
|
|
||||||
derle() {
|
derle() {
|
||||||
cd $SRC/${isim}-${surum}
|
cd $SRC/${isim}-${surum}
|
||||||
bundle config build.nokogiri --use-system-libraries
|
bundle config build.nokogiri --use-system-libraries
|
||||||
echo 2.3.3 > .ruby-version
|
|
||||||
patch -p1 < ../f6644eebf95baea3356290ecd6364f0a4a456406.patch
|
|
||||||
|
|
||||||
install -d "${PKG}/opt/${isim}"
|
install -d "${PKG}/opt/${isim}"
|
||||||
cp -ra --no-preserve=owner . "${PKG}/opt/${isim}"
|
cp -ra --no-preserve=owner . "${PKG}/opt/${isim}"
|
||||||
|
@ -21,10 +19,23 @@ derle() {
|
||||||
install -d "${PKG}/usr/bin"
|
install -d "${PKG}/usr/bin"
|
||||||
cat > "${PKG}/usr/bin/${isim}" << EOF
|
cat > "${PKG}/usr/bin/${isim}" << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
BUNDLE_GEMFILE=/opt/${isim}/Gemfile bundle exec ruby /opt/${isim}/${isim}.rb "\$@"
|
BUNDLE_GEMFILE=/opt/${isim}/Gemfile bundle exec ruby /opt/${isim}/bin/${isim} "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 "${PKG}/usr/bin/${isim}"
|
chmod 755 "${PKG}/usr/bin/${isim}"
|
||||||
|
|
||||||
install -Dm 644 LICENSE -t "${PKG}/usr/share/licenses/${isim}"
|
install -Dm 644 LICENSE -t "${PKG}/usr/share/licenses/${isim}"
|
||||||
install -Dm 644 CHANGELOG.md DISCLAIMER.txt README.md -t "${PKG}/usr/share/doc/${isim}"
|
find "${PKG}" \( -name gem_make.out -or -name mkmf.log \) -delete
|
||||||
|
|
||||||
|
# desktop
|
||||||
|
mkdir -p "$PKG/usr/share/applications/"
|
||||||
|
cat > $PKG/usr/share/applications/$isim.desktop << BASLA
|
||||||
|
[Desktop Entry]
|
||||||
|
Name=wpscan
|
||||||
|
Exec=sh -c "wpscan;${SHELL:-bash}"
|
||||||
|
Terminal=true
|
||||||
|
Icon=wpscan
|
||||||
|
Type=Application
|
||||||
|
Categories=Network;X-Komutan;
|
||||||
|
Version=1.0
|
||||||
|
BASLA
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,4 +3,7 @@
|
||||||
cd /opt/wpscan
|
cd /opt/wpscan
|
||||||
bundler install
|
bundler install
|
||||||
|
|
||||||
|
#update
|
||||||
|
echo -n 'Updating wpscan database...'
|
||||||
/usr/bin/wpscan --update >/dev/null 2>&1
|
/usr/bin/wpscan --update >/dev/null 2>&1
|
||||||
|
echo "done."
|
||||||
|
|
Loading…
Reference in New Issue