mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-26 08:40:57 +02:00
ntlmrecon: new tool
This commit is contained in:
parent
8d531b53a3
commit
a1bca9a6d2
7 changed files with 38 additions and 42 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST python-iptools-0.6.1.tar.gz 15914 BLAKE2B d6f4905227f308850761d230fb67d260e2ee7a757fb579a6665f930f49abbde22ae9345a497bf40bd41b0aeda5cd62306aa7f10a60ef591a29be6c51bdfe837b SHA512 a9cae8b035741efe8874f432b9200b118b5ebf63f081d522df4c1ffa0096e23ac6db552f1989049d4e421cc95d13dd0b22ee8cf07a8340aa4db5fb79646380eb
|
||||
DIST python-iptools-0.6.1_p20181212.tar.gz 17187 BLAKE2B db0fa827c1a6322ce04f951ddebbce942ac3e1e2d5b275adfb4696e52c9faefb8e6f0bbd45639f0873bf3743acce444f41d2da956df2856dab7870e1d75c3b34 SHA512 c28d7dfc4d590612514d6a298e4433309b9bbc7abb17c1dbffff1ea928fa2021dd81a62ff52d5b582affc59163ee9a5115ee234dceb97556a3dad5c3b7111796
|
||||
DIST python-iptools-0.7.0.tar.gz 17189 BLAKE2B 97eb7bb9e8c44d890a55c9a8679ed20424b647b379ec012ce59febaa606903a2fc2b6c84bd97356635c8b7776439dd55d16fc139c08bcc0a31e6a3f8e46671f6 SHA512 e88cd8ba6bceb5635ba501412e63f4c8a11edd0c75d9815a798952ab9b0711fb6be16f450cf1783e29db0399c1f8db6cb8fe38b616a985dcad6095f563233629
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
|
||||
EGO_PN=github.com/bd808/${PN}
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} = *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/bd808/python-iptools.git"
|
||||
KEYWORDS=""
|
||||
else
|
||||
# KEYWORDS="~amd64 ~x86"
|
||||
EGIT_COMMIT="b4398244355d46dae161a791102ed4a0f48e0d83"
|
||||
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
fi
|
||||
|
||||
DESCRIPTION="A package is a collection of utilities for dealing with IP addresses."
|
||||
HOMEPAGE="https://github.com/bd808/python-iptools"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
||||
S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
|
||||
|
|
@ -1,17 +1,15 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="https://github.com/bd808/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
DESCRIPTION="A package is a collection of utilities for dealing with IP addresses"
|
||||
HOMEPAGE="https://github.com/bd808/python-iptools"
|
||||
SRC_URI="https://github.com/bd808/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
1
net-analyzer/ntlmrecon/Manifest
Normal file
1
net-analyzer/ntlmrecon/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST ntlmrecon-0.2_beta.tar.gz 10490 BLAKE2B 3e1db6abc7d12adc6f3c9724dd45b7ff15de46c05d6ea2758106028004ed20eb2010a235dd22d7ce81a367806cae8b83620f3d02bf03d24aeac5b2f10bac271b SHA512 897757ba4ec9c5879dc82e53b919f023775cbead344028a4f0e185d7eb05542138be01eed953000bd70d9c9883bc23377e6556eb180e0bfb5eab6d250c5d3922
|
||||
30
net-analyzer/ntlmrecon/ntlmrecon-0.2_beta.ebuild
Normal file
30
net-analyzer/ntlmrecon/ntlmrecon-0.2_beta.ebuild
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PV=${PV/_/-}
|
||||
|
||||
DESCRIPTION="A tool to enumerate information from NTLM authentication enabled web endpoints"
|
||||
HOMEPAGE="https://github.com/sachinkamath/NTLMRecon"
|
||||
SRC_URI="https://github.com/sachinkamath/NTLMRecon/archive/v.${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE=""
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/colorama[${PYTHON_USEDEP}]
|
||||
dev-python/termcolor[${PYTHON_USEDEP}]
|
||||
dev-python/python-iptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
||||
S="${WORKDIR}/NTLMRecon-v.${MY_PV}"
|
||||
|
|
@ -329,10 +329,10 @@ dev-python/pylnk3
|
|||
~net-analyzer/empire-2.5
|
||||
~dev-python/altgraph-0.17
|
||||
~dev-python/macholib-1.11
|
||||
#=dev-python/python-iptools-0.6.1_p20181212
|
||||
~dev-python/python-iptools-0.6.1
|
||||
~dev-python/pyminifier-2.1
|
||||
~dev-python/zlib_wrapper-0.1.3
|
||||
#pentoo
|
||||
dev-python/python-iptools
|
||||
|
||||
#required by qark
|
||||
~dev-python/javalang-0.12.0
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ net-analyzer/ncrack
|
|||
net-analyzer/nessus-bin
|
||||
net-analyzer/nikto
|
||||
net-analyzer/nmap-vulners
|
||||
net-analyzer/ntlmrecon
|
||||
=net-analyzer/owtf-2*
|
||||
net-analyzer/pret
|
||||
net-analyzer/recon-ng
|
||||
|
|
|
|||
Loading…
Reference in a new issue