mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-27 17:20:59 +02:00
crackmapexec: 5.0.2 massive bump
This commit is contained in:
parent
01a3b59abc
commit
341cbf8fce
8 changed files with 133 additions and 10 deletions
1
dev-python/lsassy/Manifest
Normal file
1
dev-python/lsassy/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST lsassy-2.1.2.tar.gz 20621 BLAKE2B 4fe826f43288b57d74f6dce8965ae122c9c439b284f7c962aea25971a08eccae63782ed0ed5cbcaba574a61d32fce534f3ccb52d74175e94331df4005d02f145 SHA512 995ecce8b74de5040f72269f7754169592c63e12485bb138d0c3be54f44b3986a38872902edd1fa91e91657915d8485ba27ac486c33fdab47ed92e47e8e0762e
|
||||
30
dev-python/lsassy/lsassy-2.1.2.ebuild
Normal file
30
dev-python/lsassy/lsassy-2.1.2.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
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
#FIXME: Gentoo: add python3.8 to netaddr
|
||||
PYTHON_COMPAT=( python3_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python library to parse remote lsass dumps"
|
||||
HOMEPAGE="https://github.com/Hackndo/lsassy/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/impacket[${PYTHON_USEDEP}]
|
||||
dev-python/netaddr[${PYTHON_USEDEP}]
|
||||
>=app-exploits/pypykatz-0.3.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare(){
|
||||
rm -r tests
|
||||
eapply_user
|
||||
}
|
||||
1
dev-python/neo4j/Manifest
Normal file
1
dev-python/neo4j/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST neo4j-1.7.6.tar.gz 23762 BLAKE2B 20c281217c2a46eac056c53e41be265ae554548210db95b28bbe2162d2e2dbeccb333c654c0887cd92cb99c2514772b711286472da108ee5388e11c6e98e969d SHA512 13cff26077126ab490e230be4fe3240abd9c0baa68a98fdd5dbd040ba225a19da7bdb2bc3751d7c498683684d31bcbd96969dcf41179971f3281da8ddc32c96a
|
||||
|
|
@ -3,19 +3,20 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
#DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION=""
|
||||
HOMEPAGE=""
|
||||
DESCRIPTION="Neo4j Bolt driver for Python"
|
||||
HOMEPAGE="https://github.com/neo4j/neo4j-python-driver"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE=""
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
RDEPEND=">=dev-python/neobolt-1.7.15[${PYTHON_USEDEP}]
|
||||
>=dev-python/neotime-1.7.1[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
1
dev-python/pypsrp/Manifest
Normal file
1
dev-python/pypsrp/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST pypsrp-0.4.0.tar.gz 94952 BLAKE2B 400f88cdb3166c75ae62a594664b4a612667c18d35a5df2459afce75ba62d952449c631b3a642ac44d5eacd098ac074fc458d0294f2eb139066d8c18e6a8ca68 SHA512 ec70e787d0f206c49582aae0366ae860a11b4deabf8e2998892250ec83c7cf4239c6b1ff7b8e3f8dbf4ae94832c47a5d05a237769531f6b43925c48fa20bc3ec
|
||||
26
dev-python/pypsrp/pypsrp-0.4.0.ebuild
Normal file
26
dev-python/pypsrp/pypsrp-0.4.0.ebuild
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
#FIXME: Gentoo: add python3.8 to requests-credssp
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="PowerShell Remoting Protocol and WinRM for Python"
|
||||
HOMEPAGE="https://github.com/jborean93/pypsrp"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test +credssp"
|
||||
|
||||
RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
>=dev-python/ntlm-auth-1.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.9.1[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
credssp? ( dev-python/requests-credssp[${PYTHON_USEDEP}] )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
59
net-analyzer/crackmapexec/crackmapexec-5.0.2.ebuild
Normal file
59
net-analyzer/crackmapexec/crackmapexec-5.0.2.ebuild
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_7 )
|
||||
|
||||
inherit distutils-r1 git-r3
|
||||
|
||||
DESCRIPTION="A swiss army knife for pentesting Windows/Active Directory environments"
|
||||
HOMEPAGE="https://github.com/byt3bl33d3r/CrackMapExec/releases"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/byt3bl33d3r/CrackMapExec.git"
|
||||
EGIT_COMMIT="618ab8a9cb0effe7ae2ac51ac450a28b038de9f4"
|
||||
|
||||
#https://github.com/byt3bl33d3r/CrackMapExec/issues/354
|
||||
EGIT_OVERRIDE_COMMIT_ARTKOND_INVOKE_VNC="906c7476b9490817a6defa63e86a5b8c52690182"
|
||||
|
||||
#do not checkout existing modules
|
||||
EGIT_SUBMODULES=('*' '-*pywerview' )
|
||||
|
||||
LICENSE="BSD-2"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/gevent[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/requests-ntlm[${PYTHON_USEDEP}]
|
||||
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
||||
dev-python/lsassy[${PYTHON_USEDEP}]
|
||||
dev-python/termcolor[${PYTHON_USEDEP}]
|
||||
dev-python/msgpack[${PYTHON_USEDEP}]
|
||||
dev-python/neo4j[${PYTHON_USEDEP}]
|
||||
dev-python/pylnk3[${PYTHON_USEDEP}]
|
||||
dev-python/pypsrp[${PYTHON_USEDEP}]
|
||||
dev-python/paramiko[${PYTHON_USEDEP}]
|
||||
dev-python/impacket[${PYTHON_USEDEP}]
|
||||
dev-python/xmltodict[${PYTHON_USEDEP}]
|
||||
dev-python/terminaltables[${PYTHON_USEDEP}]
|
||||
|
||||
dev-python/pywerview[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
QA_FLAGS_IGNORED="usr/lib.*/python.*/site-packages/cme/data/mimipenguin/.*"
|
||||
QA_PRESTRIPPED="usr/lib.*/python.*/site-packages/cme/data/mimipenguin/.*"
|
||||
|
||||
#invoke: https://github.com/byt3bl33d3r/CrackMapExec/issues/317
|
||||
#thirdparty: https://github.com/byt3bl33d3r/CrackMapExec/issues/361
|
||||
PATCHES=(
|
||||
"${FILESDIR}/invoke-vnc_python3.patch"
|
||||
"${FILESDIR}/remove_thirdparty.patch"
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
sed -i -e '/bs4/d' setup.py || die
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
|
@ -47,13 +47,17 @@ dev-python/pycopy-binascii
|
|||
#required by net-analyzer/crackmapexec
|
||||
#pentoo packages
|
||||
dev-python/impacket
|
||||
~dev-python/ldap3-2.7
|
||||
dev-python/pywerview
|
||||
dev-python/ldapdomaindump
|
||||
#Gentoo
|
||||
~dev-python/pywinrm-0.4.1 ~amd64
|
||||
~dev-python/requests-credssp-1.1.1 ~amd64
|
||||
dev-python/neo4j
|
||||
dev-python/pypsrp
|
||||
dev-python/lsassy
|
||||
dev-python/neobolt
|
||||
dev-python/neotime
|
||||
dev-python/pywerview
|
||||
|
||||
#Gentoo
|
||||
~dev-python/ldap3-2.7
|
||||
~dev-python/requests-credssp-1.1.1 ~amd64
|
||||
~dev-python/nltk-2.0.1_rc1
|
||||
=dev-python/pyqwt-5.2.0
|
||||
=dev-python/pyusb-1.0*
|
||||
|
|
|
|||
Loading…
Reference in a new issue