mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-17 04:10:58 +02:00
nmap_vulscan: a new NSE script for nmap
This commit is contained in:
parent
b91f0412f9
commit
ac8d17cf95
2 changed files with 26 additions and 0 deletions
2
net-analyzer/nmap_vulscan/Manifest
Normal file
2
net-analyzer/nmap_vulscan/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST nmap_nse_vulscan-1.0.tar.gz 6104481 SHA256 57b016916ff667804d733a45c60aed092ec4414a472ebd02eff1e4aa1cf815cd SHA512 c1799ef08936c86f4b66503f5974e344f5bc39c2c86d459a3339334294c527d1ecb7bcc5d858df819b8784b6b05fae57f843f0efb2bd4a1a3181bd4bddfb8529 WHIRLPOOL ba6f16a0f1b408de56c62a6c4a6ee400a87c2216beb67ae67d63c59d3d587ad45ef400a9f875e03eb45a28cd2c2bcd823745cddc65931ff3ebf305f5b59accaf
|
||||
EBUILD nmap_vulscan-1.0.ebuild 604 SHA256 a7de09fef9e2b9026d2d8c791d4296072d333fba4f8130d335838115679aaf14 SHA512 06fc9a26fb91f5086ef6f84f99a82c6ee008c3823b03fe923c8ea2917bafc8a54c843cd266cf70f7c665d702347a34956c75176e7c911eff4ba3d877bc0c9b9b WHIRLPOOL 073462602f69344a8769e439ed0293e498d3c0c6e7b9f47cadc8a1d129575efbdc343d2bc5811218ac28349c94e2d027f10288d12e937494ffc02c646e5d07cc
|
||||
24
net-analyzer/nmap_vulscan/nmap_vulscan-1.0.ebuild
Normal file
24
net-analyzer/nmap_vulscan/nmap_vulscan-1.0.ebuild
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="A NSE vulnerability scanner which uses an offline version of different vulnerability databases"
|
||||
HOMEPAGE="http://www.scip.ch/"
|
||||
SRC_URI="http://www.computec.ch/mruef/software/nmap_nse_vulscan-${PV}.tar.gz"
|
||||
#udpated db: http://www.scip.ch/vuldb/scipvuldb.csv
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86 arm"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="net-analyzer/nmap[lua]"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_install() {
|
||||
insinto /usr/share/nmap/scripts/vulscan
|
||||
doins -r * || die "install failed"
|
||||
}
|
||||
Loading…
Reference in a new issue