Install this version:
emerge -a =app-fuzz/0d1n-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-fuzz/0d1n-9999
Or alternatively:
emerge --autounmask-write -a =app-fuzz/0d1n-9999
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Web security tool to make fuzzing at HTTP/S"
HOMEPAGE="https://sourceforge.net/projects/odin-security-tool/"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.code.sf.net/p/odin-security-tool/code"
else
SRC_URI="https://downloads.sourceforge.net/odin-security-tool/0d1n-OdinV$(ver_rs 1-2 '').zip -> ${P}.zip"
KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/0d1n-OdinV$(ver_rs 1-2 '')"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="doc"
RDEPEND="net-misc/curl"
DEPEND="${RDEPEND}"
src_prepare() {
default
# append *FLAGS
sed -e "s/^CFLAGS=\(.*\)/CFLAGS+=/" \
-e "s/LDFLAGS=/LDFLAGS+=/" \
-i Makefile || die 'sed failed!'
}
src_compile() {
emake CC=$(tc-getCC)
}
src_install() {
emake PREFIX="${ED}/usr" install
insinto /usr/share/${PN}
doins -r payloads/ response2find/ \
response_sources/ tables/ *.conf
dodoc -r $(use doc && echo 'doc/*') README.{md,txt}
}
Manage flags for this package:
euse -i <flag> -p app-fuzz/0d1n |
euse -E <flag> -p app-fuzz/0d1n |
euse -D <flag> -p app-fuzz/0d1n
net-misc/curl
net-misc/curl