mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-04 18:40:19 +02:00
crackmapexec: python3.9 support
This commit is contained in:
parent
cc9fbf4385
commit
d2d1573f59
4 changed files with 11 additions and 12 deletions
|
|
@ -1 +1 @@
|
|||
DIST lsassy-2.1.2.tar.gz 20621 BLAKE2B 4fe826f43288b57d74f6dce8965ae122c9c439b284f7c962aea25971a08eccae63782ed0ed5cbcaba574a61d32fce534f3ccb52d74175e94331df4005d02f145 SHA512 995ecce8b74de5040f72269f7754169592c63e12485bb138d0c3be54f44b3986a38872902edd1fa91e91657915d8485ba27ac486c33fdab47ed92e47e8e0762e
|
||||
DIST lsassy-2.1.3.tar.gz 20507 BLAKE2B 55a078084c7865ff91d60a0dfd97236efa4a353c4331d9e9429f434641b47c90675b02bbb5c93ac0d91c1e37c9e610bfd8abc473c8861816c78c7e0c279ff68c SHA512 a6dee61479f4d579a7953ce6f4711f5f2c9e96ca4bed6b481f3c665794411d7ad0ba90501f6b7fb57c7ef1a5afb1f4d1f30444b97a8ffb4ae901f8e7c496f9ed
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
@ -14,12 +14,12 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/impacket[${PYTHON_USEDEP}]
|
||||
dev-python/netaddr[${PYTHON_USEDEP}]
|
||||
>=app-exploits/pypykatz-0.3.0[${PYTHON_USEDEP}]
|
||||
>=app-exploits/pypykatz-0.4.3[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
#dev-python/requests-credssp doesn't support x86
|
||||
#dev-python/gssapi not keyworded
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="kerberos test +credssp"
|
||||
|
||||
|
|
|
|||
|
|
@ -4,9 +4,8 @@
|
|||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
|
||||
#pypsrp depends on dev-python/requests-credssp, no x86, python3.9
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
inherit python-utils-r1 distutils-r1
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
inherit python-utils-r1 distutils-r1
|
||||
|
||||
DESCRIPTION="A swiss army knife for pentesting Windows/Active Directory environments"
|
||||
HOMEPAGE="https://github.com/byt3bl33d3r/CrackMapExec/releases"
|
||||
|
|
@ -49,7 +48,7 @@ PATCHES=(
|
|||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
default
|
||||
}
|
||||
|
||||
#src_install() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue