This commit is contained in:
blshkv 2019-05-01 11:27:16 +08:00
parent d98b6fbd8e
commit 14b1698cbd
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,3 @@
DIST osmedeus-9999_wordlist-all.txt 26570346 BLAKE2B 5897fc30055c8d5d237099e55c210ec0ca685e6fe79dd358c28d8ebfed1e463adf5fc37e703061e618e6701ed6a496208b9c8436e1d3b2ade6d10ad53edd6cfb SHA512 2a6fc49398aa358b38a009279130810db699e8bf6c53bbffe625054207e77ebfd10c92086a47d55d229b943bb3e4e94c073e48fe95772b28589dc26812436ac8
DIST osmedeus-9999_wordlist-content_discovery_all.txt 6082276 BLAKE2B dc1315918b4dbf9cf3273b515d0beca4e3a3f1782ca6229df8db8b5d35175e9364042bbb0e8a3f6a9f49a5b148bb15c94c2d01dab226aec5d0482e2e6008403d SHA512 2c38d1e9427b76b68d0be5b6d00ecdbf8a86e8d7b8616aca1963531db004f67bc5f9813874e66e9802f992ee3439939b7c22fdf654271a4738d0b9b86abd0189
DIST osmedeus-9999_wordlist-subdomains-top1mil-20000.txt 148829 BLAKE2B c51e8f68f2680e4c97272253d4017206de9bd730bc853ba4b7aa255bd1556a38f811d4af442e00c834ae1e272ba56d0aec61dfeef365896b88abf238319c2c69 SHA512 09d0404854b3661a84f8d5cc13e68679b232381064483d42fca26b79cf85344b0c9d4ce93c9105acf238e0846d3b03285fe49877aa7090e15a2649e39c016a13

View file

@ -0,0 +1,119 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{5,6} )
inherit eutils git-r3 python-r1
DESCRIPTION="A offensive security tool for reconnaissance and vulnerability scanning"
HOMEPAGE="https://github.com/j3ssie/Osmedeus"
EGIT_REPO_URI="https://github.com/j3ssie/Osmedeus"
EGIT_DOCS_URI=( "https://github.com/j3ssie/Osmedeus.wiki" )
EGIT_3DPARTY_URI=(
"https://github.com/x90skysn3k/brutespray::v1.2.55"
"https://github.com/drwetter/testssl.sh"
"https://github.com/GerbenJavado/LinkFinder::5d2a412" # example
"https://github.com/sqlmapproject/sqlmap"
"https://github.com/RhinoSecurityLabs/SleuthQL"
"https://github.com/maurosoria/dirsearch"
"https://github.com/Nekmo/dirhunt"
"https://github.com/RUB-NDS/CORStest"
"https://github.com/nahamsec/JSParser"
)
WORDLIST_URI=(
"https://gist.githubusercontent.com/jhaddix/86a06c5dc309d08580a018c66354a056/raw/96f4e51d96b2203f19f6381c8c545b278eaa0837/all.txt -> ${P}_wordlist-all.txt"
"https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/DNS/subdomains-top1mil-20000.txt -> ${P}_wordlist-subdomains-top1mil-20000.txt"
"https://gist.githubusercontent.com/jhaddix/b80ea67d85c13206125806f0828f4d10/raw/c81a34fe84731430741e0463eb6076129c20c4c0/content_discovery_all.txt -> ${P}_wordlist-content_discovery_all.txt"
)
SRC_URI="${WORDLIST_URI[@]}"
if [[ ${PV} != *9999 ]]; then
EGIT_COMMIT="v${PV}"
KEYWORDS="~amd64 ~x86"
fi
RESTRICT="mirror"
LICENSE="MIT"
SLOT="0"
IUSE="doc"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-cors[${PYTHON_USEDEP}]
dev-python/flask-jwt[${PYTHON_USEDEP}]
dev-python/flask-restful[${PYTHON_USEDEP}]
dev-python/python-libnmap[${PYTHON_USEDEP}]"
_doinit_module() {
mkdir -p "${WORKDIR}"/assets/${PN} \
&& touch "${WORKDIR}"/assets/${PN}/__init__.py \
|| die 'filed to install!'
for assets in ${@}; do
mv ${assets} "${WORKDIR}"/assets/${PN} || die 'filed to install!'
done
}
pkg_setup() {
python_setup
}
src_unpack() {
git-r3_src_unpack
unset EGIT_COMMIT
# for submodule_uri in ${EGIT_3DPARTY_URI[@]}; do
# git-r3_fetch "${submodule_uri}"
# git-r3_checkout "${submodule_uri}" "${WORKDIR}"/${submodule_uri/*\//}
# done
if use doc; then
for docs_uri in ${EGIT_DOCS_URI[@]}; do
git-r3_fetch "${docs_uri}"
git-r3_checkout "${docs_uri}" "${S}"/docs
done
fi
}
src_prepare() {
# WHY??
# def flask_run():
# utils.print_banner("Starting Flask API")
# os.system('python3 core/app.py')
sed -e "s:python3 core/app.py:python3 $(python_get_sitedir)/${PN}/core/app.py:" \
-i osmedeus.py || die 'sed failed!'
python_fix_shebang "${S}"
eapply_user
}
src_install() {
elog "Installing python bindings..."
python_foreach_impl _doinit_module core modules osmedeus.py
python_domodule "${WORKDIR}"/assets/${PN}
insinto /usr/share/${PN}/wordlist
doins -r "${DISTDIR}"/*.txt
make_wrapper ${PN} \
"python3 $(python_get_sitedir)/${PN}/osmedeus.py"
dodoc \
CONTRIBUTING.md \
CREDITS.md \
README.md \
template-config.conf \
$(use doc && echo docs/*)
}
pkg_postinst() {
elog
elog "See documentation: https://github.com/j3ssie/Osmedeus#how-to-use"
elog
}