* Deleted sslstrip

This commit is contained in:
grimmlin 2009-02-25 19:40:05 +00:00
parent 2609894b8f
commit 9818aee8f8
4 changed files with 0 additions and 62 deletions

View file

@ -1,4 +0,0 @@
AUX sslstrip 53 RMD160 6048af5a8c685f6ddeacfe411e87aecae1ecff72 SHA1 0b66e9826b4f60cec22f6999a8dfefa9d7ae8374 SHA256 19a745e303542c58c270171feae1112dd24d2dd84155cdd42596a2d2403ccb42
AUX sslstrip-0.1_fix-port.patch 599 RMD160 7fe8a9b9c6c0b4f2884fe0d20bb064c39524d27b SHA1 74dc2de36f2aa71b7ba60b10c9d8bbd4d2576f89 SHA256 a8950f1de0924e0100d89ac7ecbad28f0db4e5158bcc93f47be1f560152910ac
DIST sslstrip-0.1.tar.gz 22216 RMD160 dbcdd41f33b324381b4101f460148965275520b1 SHA1 9bdf2984b0e786fbc362d98a78032f65ffef8cb9 SHA256 3429415fc74bc96786d0cceec6f98bc8b98b02af1ce3d2b0c56b51bd9443a51b
EBUILD sslstrip-0.1-r1.ebuild 881 RMD160 057624475a4d1fdc1924d670b0d23902a5781317 SHA1 a1304e5c4bf721901a7847f535b35eba770b95d1 SHA256 97cbfd6021c5c3f48727284c0dbae1c6a1696c52407635f85f2297d7d5df9ca0

View file

@ -1,3 +0,0 @@
#!/bin/bash
python /usr/lib/sslstrip/sslstrip.py $@

View file

@ -1,12 +0,0 @@
diff -Naur sslstrip-0.1.orig/sslstrip.py sslstrip-0.1/sslstrip.py
--- sslstrip-0.1.orig/sslstrip.py 2009-02-23 01:38:14.000000000 +0000
+++ sslstrip-0.1/sslstrip.py 2009-02-24 12:06:27.000000000 +0000
@@ -230,7 +230,7 @@
elif opt in ("-a", "--all"):
logLevel = logging.DEBUG
elif opt in ("-l", "--listen"):
- listenPort = arg
+ listenPort = int(arg)
elif opt in ("-f", "--favicon"):
StripProxy.swapFavicon = True
elif opt in ("-k", "--killsessions"):

View file

@ -1,43 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="sslstrip remove https and forwards http"
HOMEPAGE="http://www.thoughtcrime.org/software/sslstrip/"
SRC_URI="http://www.thoughtcrime.org/software/sslstrip/${P}.tar.gz"
inherit eutils python distutils
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
EAPI=2
RDEPEND=">=dev-lang/python-2.5"
src_compile() {
epatch "${FILESDIR}/sslstrip-0.1_fix-port.patch"
einfo "Nothing to compile"
}
src_install() {
dodir /usr/lib/"${PN}"
insinto /usr/lib/"${PN}"
doins sslstrip.py lock.ico
dodir /usr/lib/${PN}/sslstrip
insinto /usr/lib/${PN}/sslstrip
doins sslstrip/*.py
dosbin "${FILESDIR}/sslstrip"
dodoc README COPYING
}
pkg_postinst() {
python_mod_optimize
}
pkg_postrm() {
python_mod_cleanup
}