[sslstrip/el6] Initial import of sslstrip

Adam Miller maxamillion at fedoraproject.org
Tue Jun 14 19:20:35 UTC 2011


commit 3bf915f37936f8af0b0ab5ac3b0431be907aa0ef
Author: Adam Miller <maxamillion at fedoraproject.org>
Date:   Tue Jun 14 14:20:16 2011 -0500

    Initial import of sslstrip

 .gitignore    |    1 +
 sources       |    1 +
 sslstrip.spec |   84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..082a94e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/sslstrip-0.9.tar.gz
diff --git a/sources b/sources
index e69de29..0c857aa 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+944020144e4f5528888b3dfbb107dd78  sslstrip-0.9.tar.gz
diff --git a/sslstrip.spec b/sslstrip.spec
new file mode 100644
index 0000000..1ef8e16
--- /dev/null
+++ b/sslstrip.spec
@@ -0,0 +1,84 @@
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+Name:           sslstrip
+Version:        0.9
+Release:        2%{?dist}
+Summary:        Tool that provides a demonstration of HTTPS stripping attacks
+
+Group:          Applications/Internet
+License:        GPLv3+
+URL:            http://www.thoughtcrime.org/software/sslstrip/
+Source0:        http://www.thoughtcrime.org/software/sslstrip/%{name}-%{version}.tar.gz
+#Patch0:         sslstrip0.7-version_num.patch
+#Patch1:         sslstrip0.7-version_num-setuppy.patch
+
+BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+
+BuildArch:      noarch
+
+BuildRequires:  python >= 2.5
+
+Requires:       python-twisted-web
+
+%description
+Tool that provides a demonstration of HTTPS stripping attacks that were 
+presented at Black Hat DC 2009 by Moxie Marlinspike. It will transparently 
+hijack HTTP traffic on a network, watch for HTTPS links and redirects, then map 
+those links into either look-alike HTTP links or homograph-similar HTTPS links.
+It also supports modes for supplying a favicon which looks like a lock icon, 
+selective logging, and session denial
+
+%prep
+%setup -q
+
+# Patch out the incorrect version in both the setup.py and main source file
+##fixed in 0.9 upstream release
+#%patch0
+#%patch1
+
+# Make COPYING and README not executable
+chmod -x COPYING
+chmod -x README
+
+%build
+python setup.py build
+
+%install
+python setup.py install --root $RPM_BUILD_ROOT
+
+# Remove duplicate doc files
+rm $RPM_BUILD_ROOT/usr/share/%{name}/README
+rm $RPM_BUILD_ROOT/usr/share/%{name}/COPYING
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING README
+%dir %{python_sitelib}/%{name}
+%{python_sitelib}/%{name}/*.py
+%{python_sitelib}/%{name}/*.pyc
+%{python_sitelib}/%{name}/*.pyo
+%{python_sitelib}/*.egg-info
+%{_datadir}/%{name}/*
+%{_bindir}/%{name}
+
+%changelog
+* Fri Jun 10 2011 Adam Miller <maxamillion at fedoraproject.org> - 0.9-2
+- Readded the chmods for README and COPYING
+- Added python-twisted-web hard dep
+
+* Tue Jun 07 2011 Adam Miller <maxamillion at fedoraproject.org> - 0.9-1
+- New upstream release
+
+* Thu Oct 28 2010 Adam Miller <maxamillion at fedoraproject.org> - 0.7-3
+- Patched out the incorrect version number, email sent upstream about it
+
+* Thu Oct 28 2010 Adam Miller <maxamillion at fedoraproject.org> - 0.7-2
+- Fixed buildreq, removed duplicate docs, removed mixed use of spaces/tabs
+
+* Thu Jan 14 2010 Adam Miller <maxamillion at fedoraproject.org> - 0.7-1
+- First package for Fedora
+


More information about the scm-commits mailing list