You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Daniel Roethlisberger 13c85ce5c1 Also build ipfw if pf is detected
OpenBSD 4.7+ and FreeBSD 9.0+ also include ipfw-style divert-to in pf,
so build ipfw NAT engine as well if pf is detected.

Reported by:	Stuart Henderson
11 years ago
extra Add 4096-bit Diffie-Hellman to dh target 12 years ago
.gitignore Ignore all DH param files under extra/pki 12 years ago
.travis.yml Enable unit tests on Travis CI 11 years ago
BSDmakefile Initial import of sslsplit-0.4.2 12 years ago
GNUmakefile Also build ipfw if pf is detected 11 years ago
LICENSE Update copyright notices 11 years ago
NEWS SSLsplit 0.4.7 release 11 years ago
README FreeBSD pf also has divert-to since 9.0-RELEASE 11 years ago
TODO Also build ipfw if pf is detected 11 years ago
attrib.h Update copyright notices 11 years ago
base64.c Update copyright notices 11 years ago
base64.h Update copyright notices 11 years ago
base64.t.c Update copyright notices 11 years ago
cache.c Update copyright notices 11 years ago
cache.h Update copyright notices 11 years ago
cachedsess.c Update copyright notices 11 years ago
cachedsess.h Update copyright notices 11 years ago
cachedsess.t.c Update copyright notices 11 years ago
cachefkcrt.c Update copyright notices 11 years ago
cachefkcrt.h Update copyright notices 11 years ago
cachefkcrt.t.c Update copyright notices 11 years ago
cachemgr.c Update copyright notices 11 years ago
cachemgr.h Update copyright notices 11 years ago
cachemgr.t.c Update copyright notices 11 years ago
cachessess.c Update copyright notices 11 years ago
cachessess.h Update copyright notices 11 years ago
cachessess.t.c Update copyright notices 11 years ago
cachetgcrt.c Update copyright notices 11 years ago
cachetgcrt.h Update copyright notices 11 years ago
cachetgcrt.t.c Update copyright notices 11 years ago
cert.c Update copyright notices 11 years ago
cert.h Update copyright notices 11 years ago
cert.t.c Update copyright notices 11 years ago
dynbuf.c Update copyright notices 11 years ago
dynbuf.h Update copyright notices 11 years ago
dynbuf.t.c Update copyright notices 11 years ago
khash.h Initial import of sslsplit-0.4.2 12 years ago
log.c Shortcut errlog thrqueue in debug mode 11 years ago
log.h Update copyright notices 11 years ago
logbuf.c Update copyright notices 11 years ago
logbuf.h Update copyright notices 11 years ago
logger.c Update copyright notices 11 years ago
logger.h Update copyright notices 11 years ago
main.c Only generate RSA leaf key if CA key present 11 years ago
main.t.c Update copyright notices 11 years ago
nat.c Update copyright notices 11 years ago
nat.h Update copyright notices 11 years ago
opts.c Update copyright notices 11 years ago
opts.h Update copyright notices 11 years ago
opts.t.c Update copyright notices 11 years ago
proxy.c Fix segfault after thread manager start failure 11 years ago
proxy.h Update copyright notices 11 years ago
pxyconn.c Refactor event handler for clarity 11 years ago
pxyconn.h Update copyright notices 11 years ago
pxysslshut.c Update copyright notices 11 years ago
pxysslshut.h Update copyright notices 11 years ago
pxythrmgr.c Fix off by one error in thrmgr error cleanup code 11 years ago
pxythrmgr.h Start thrmgr threads after forking 11 years ago
ssl.c Update copyright notices 11 years ago
ssl.h Update copyright notices 11 years ago
ssl.t.c Update copyright notices 11 years ago
sslsplit.1 FreeBSD pf also has divert-to since 9.0-RELEASE 11 years ago
sys.c Update copyright notices 11 years ago
sys.h Update copyright notices 11 years ago
sys.t.c Update copyright notices 11 years ago
thrqueue.c Update copyright notices 11 years ago
thrqueue.h Update copyright notices 11 years ago
url.c Update copyright notices 11 years ago
url.h Update copyright notices 11 years ago
url.t.c Update copyright notices 11 years ago
util.c Update copyright notices 11 years ago
util.h Update copyright notices 11 years ago
util.t.c Update copyright notices 11 years ago
version.c Update copyright notices 11 years ago
version.h Update copyright notices 11 years ago

README

SSLsplit - transparent and scalable SSL/TLS interception
Copyright (C) 2009-2013, Daniel Roethlisberger <daniel@roe.ch>
http://www.roe.ch/SSLsplit


## Overview

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.

SSLsplit supports plain TCP, plain SSL, HTTP and HTTPS connections over both
IPv4 and IPv6.  For SSL and HTTPS connections, SSLsplit generates and signs
forged X509v3 certificates on-the-fly, based on the original server certificate
subject DN and subjectAltName extension.  SSLsplit fully supports Server Name
Indication (SNI) and is able to work with RSA, DSA and ECDSA keys and DHE and
ECDHE cipher suites.  SSLsplit can also use existing certificates of which the
private key is available, instead of generating forged ones.  SSLsplit supports
NULL-prefix CN certificates and can deny OCSP requests in a generic way.
SSLsplit removes HPKP response headers in order to prevent public key pinning.

See the manual page sslsplit(1) for details on using SSLsplit and setting up
the various NAT engines.


## Requirements

SSLsplit depends on the OpenSSL and libevent 2.x libraries.
The build depends on GNU make and a POSIX.2 environment in `PATH`.
The (optional) unit tests depend on check and on Internet connectivity.
The latter is necessary to create an SSL session for testing.

SSLsplit currently supports the following operating systems and NAT mechanisms:
-   FreeBSD: pf rdr and divert-to, ipfw fwd, ipfilter rdr
-   OpenBSD: pf rdr-to and divert-to
-   Linux: netfilter REDIRECT and TPROXY
-   Mac OS X: ipfw fwd


## Installation

    make
    make test       # optional unit tests
    make install    # optional install

Dependencies are autoconfigured using pkg-config.  If dependencies are not
picked up and fixing `PKG_CONFIG_PATH` does not help, you can specify their
respective locations manually by setting `OPENSSL_BASE`, `LIBEVENT_BASE` and/or
`CHECK_BASE` to the respective prefixes.

You can override the default install prefix (`/usr/local`) by setting `PREFIX`.


## Development

SSLsplit is being developed on Github.  For bug reports, please use the Github
issue tracker.  For patch submissions, please send me pull requests.

https://github.com/droe/sslsplit


## License

SSLsplit is provided under the simplified BSD license.
SSLsplit contains components licensed under the MIT license.
See the respective source file headers for details.


## Credits

SSLsplit was inspired by mitm-ssl by Claes M. Nyberg and sslsniff by Moxie
Marlinspike, but shares no source code with them.

SSLsplit includes khash.h by Attractive Chaos.