sslsplit: initial commit, v0.5.5

This commit is contained in:
Alexandr Savca 2020-11-21 15:37:19 +02:00
parent e39df015db
commit 2bdaa3e432
3 changed files with 36 additions and 0 deletions

12
sslsplit/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/sslsplit/
-rw-r--r-- root/root etc/sslsplit/sslsplit.conf.sample
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/sslsplit
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/sslsplit.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/sslsplit.conf.5.gz

5
sslsplit/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31amAYPz6T2uouJwdeprFVXi/5uh1no48AbtwCExZsRwMA+jQnIJRyztpsTcZuSPm7VYcNsdGhm1vwsQiDO9vQs=
SHA256 (Pkgfile) = b1627773dae140c3cbad36769a1807f3b5fa1c2c8455abfae36532073aae666e
SHA256 (.footprint) = 16c554c1f78815aff31b412df89ac4afeea8fef1cb5a25feade5f50c71b0c57b
SHA256 (sslsplit-0.5.5.tar.gz) = 3a6b9caa3552c9139ea5c9841d4bf24d47764f14b1b04b7aae7fa2697641080b

19
sslsplit/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: MITM attacks against SSL/TLS encrypted network connections
# URL: https://github.com/droe/sslsplit
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
# Depends on: libevent libnet libpcap
name=sslsplit
version=0.5.5
release=1
source=(https://github.com/droe/$name/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
sed -i -e 's/-D_FORTIFY_SOURCE=2 //g' \
-e 's/\<FEATURES\>/SSLSPLIT_FEATURES/g' GNUmakefile
sed -i '/opts_suite/d' main.t.c
make DESTDIR=$PKG PREFIX=/usr SYSCONFDIR=/etc install
}