diff options
author | Scott Ellis <scottellis.developer@gmail.com> | 2019-01-11 15:43:22 -0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-01-17 15:52:58 -0800 |
commit | 65a163f5fa52f67faa21e39ee32a0b12a497bc79 (patch) | |
tree | b94902c3c11dea14faca584e7db72348725c82f4 | |
parent | b4441953a586910c6a30ef1218396d133d6bf14e (diff) | |
download | meta-security-65a163f5fa52f67faa21e39ee32a0b12a497bc79.tar.gz |
Add recipe for ncrack
Ncrack is a network authentication cracking tool.
Signed-off-by: Scott Ellis <scott@jumpnowtek.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/ncrack/ncrack_0.7.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-security/ncrack/ncrack_0.7.bb b/recipes-security/ncrack/ncrack_0.7.bb new file mode 100644 index 0000000..06ba2b6 --- /dev/null +++ b/recipes-security/ncrack/ncrack_0.7.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Network authentication cracking tool" | ||
2 | DESCRIPTION = "Ncrack is designed for high-speed parallel testing of network devices for poor passwords." | ||
3 | HOMEPAGE = "https://nmap.org/ncrack" | ||
4 | SECTION = "security" | ||
5 | |||
6 | LICENSE = "GPL-2.0" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=198fa93d4e80225839e595336f3b5ff0" | ||
8 | |||
9 | SRCREV = "3a793a21820708466081825beda9fce857f36cb6" | ||
10 | SRC_URI = "git://github.com/nmap/ncrack.git" | ||
11 | |||
12 | DEPENDS = "openssl zlib" | ||
13 | |||
14 | inherit autotools-brokensep | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | INSANE_SKIP_${PN} = "already-stripped" | ||