mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-17 04:10:58 +02:00
nikto: bump the latest 20170420
This commit is contained in:
parent
a068b07b35
commit
5c83937696
1 changed files with 66 additions and 0 deletions
66
net-analyzer/nikto/nikto-2.1.6_p20170420.ebuild
Normal file
66
net-analyzer/nikto/nikto-2.1.6_p20170420.ebuild
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Web Server vulnerability scanner"
|
||||
HOMEPAGE="http://www.cirt.net/Nikto2"
|
||||
EGIT_REPO_URI="https://github.com/sullo/nikto.git"
|
||||
EGIT_COMMIT="c28807d8dec71b66b5072ee23ba020b000892937"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~amd64-linux ~x86-linux ~x86-macos"
|
||||
IUSE="ssl"
|
||||
|
||||
RDEPEND="dev-lang/perl
|
||||
virtual/perl-JSON-PP
|
||||
net-analyzer/nmap
|
||||
ssl? (
|
||||
dev-libs/openssl
|
||||
dev-perl/Net-SSLeay
|
||||
)"
|
||||
#we can't reuse a system libwhisker anymore because some $#$on modified it.
|
||||
#see http://trac.assembla.com/Nikto_2/ticket/199 for more details
|
||||
# net-libs/libwhisker[ssl?]
|
||||
|
||||
S="${WORKDIR}/${P}/program"
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e 's:config.txt:nikto.conf:g' plugins/*
|
||||
sed -i -e 's:/etc/nikto.conf:/etc/nikto/nikto.conf:' nikto.pl
|
||||
sed -i -e 's:# EXECDIR=/opt/nikto:EXECDIR=/usr/share/nikto:' nikto.conf
|
||||
|
||||
# sed -i -e 's:# use LW2:use LW2:' nikto.pl
|
||||
# sed -i -e 's:require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":# require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":' \
|
||||
# nikto.pl || die
|
||||
# rm plugins/LW2.pm || die "removing bundled lib LW2.pm failed"
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto /etc/nikto
|
||||
doins nikto.conf
|
||||
|
||||
dobin nikto.pl replay.pl
|
||||
dosym /usr/bin/nikto.pl /usr/bin/nikto
|
||||
|
||||
dodir /usr/share/nikto
|
||||
insinto /usr/share/nikto
|
||||
doins -r plugins templates databases
|
||||
|
||||
# NIKTO_PMS='JSON-PP.pm'
|
||||
# einfo "symlinking ${NIKTO_PMS} to ${VENDOR_LIB}"
|
||||
|
||||
# for _PM in ${NIKTO_PMS}; do
|
||||
# _TARGET=${VENDOR_LIB}/${_PM}
|
||||
# dosym /usr/share/nikto/plugins/${_PM} ${_TARGET}
|
||||
# done
|
||||
|
||||
dodoc docs/*.txt
|
||||
# dohtml docs/nikto_manual.html
|
||||
|
||||
# insinto ${VENDOR_PERL}
|
||||
}
|
||||
Loading…
Reference in a new issue