]> git.pld-linux.org Git - packages/sslsplit.git/commitdiff
- initial auto/th/sslsplit-0.4.11-1
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 10 Apr 2015 10:24:10 +0000 (12:24 +0200)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 10 Apr 2015 10:24:10 +0000 (12:24 +0200)
sslsplit.spec [new file with mode: 0644]

diff --git a/sslsplit.spec b/sslsplit.spec
new file mode 100644 (file)
index 0000000..869521b
--- /dev/null
@@ -0,0 +1,49 @@
+Summary:       Transparent and scalable SSL/TLS interception
+Name:          sslsplit
+Version:       0.4.11
+Release:       1
+License:       BSD
+URL:           http://www.roe.ch/SSLsplit
+Source0:       https://github.com/droe/sslsplit/archive/%{version}.tar.gz
+# Source0-md5: 37fe63d0b60268ae48e797a22a39c2da
+Group:         Applications/System
+BuildRequires: check-devel
+BuildRequires: libevent-devel
+BuildRequires: openssl-devel
+Requires:      iproute2
+Requires:      iptables
+
+%description
+SSLsplit is a tool for man-in-the-middle attacks against SSL/TLS
+encrypted network connections. Connections are transparently
+intercepted through a network address translation engine and
+redirected to SSLsplit. SSLsplit terminates SSL/TLS and initiates a
+new SSL/TLS connection to the original destination address, while
+logging all data transmitted. SSLsplit is intended to be useful for
+network forensics and penetration testing.
+
+It uses Linux netfilter REDIRECT and TPROXY.
+
+%prep
+%setup -q
+
+%build
+%{__make} \
+       CC="%{__cc}" \
+       DEBUG_CFLAGS="%{rpmcflags} %{rpmcppflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_bindir} $RPM_BUILD_ROOT%{_mandir}/man1/
+
+cp -a %{name} $RPM_BUILD_ROOT%{_bindir}
+cp -a %{name}.1  $RPM_BUILD_ROOT%{_mandir}/man1/
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.md NEWS.md
+%attr(755,root,root) %{_bindir}/%{name}
+%{_mandir}/man1/sslsplit.1*
This page took 0.101615 seconds and 4 git commands to generate.