added THC pptp bruteforcer

This commit is contained in:
jensp 2010-02-05 16:57:38 +00:00
parent 25f5edb3e7
commit 1ea4a8edad
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST thc-pptp-bruter-0.1.4.tar.gz 65746 RMD160 1b4afe5aa9dfe51166dd314b2d0f90d0f8d811a5 SHA1 49df076ba0dce8dec58ec9c9a42143cbe6df9182 SHA256 df789676b97406214d3f18c744dabd3769182428365ecdcc8a0a6ddcde3b6f2d
EBUILD thc-pptp-bruter-0.1.4.ebuild 578 RMD160 9e870892dfd35dc86b26762c4f4da1f93eafb4f3 SHA1 d59f0206e5178a2b4523ba97890545a147affc7b SHA256 8995a8b4fcc8739d6ddea9bd10bd26de6a5876e65ab0f88aaa9c0c1f74cae625

View file

@ -0,0 +1,28 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="a brute force program that works against pptp vpn endpoints"
HOMEPAGE="http://www.thc.org"
SRC_URI="http://packetstormsecurity.org/groups/thc/$P.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="${RDEPEND}"
RDEPEND="dev-libs/openssl"
S="${WORKDIR}"/${P/thc/THC}
src_prepare() {
sed -i "s|-O2|$CFLAGS|g" configure || die "sed failed"
}
src_install() {
dobin src/$PN || die "install failed"
dodoc README TODO
}