|
NAMEsslproxy -- transparent SSL/TLS proxy for decrypting and diverting network traffic to other programs for deep SSL inspectionSYNOPSISsslproxy [-kCKqwWOPZdDgGsrRxeumjplLSFXYyTIMiab] -c pem proxyspecs [...]sslproxy [-kCKqwWOPZdDgGsrRxeumjplLSFXYyTIMiab] -c pem -t dir proxyspecs [...] sslproxy [-OPZwWdDgGsrRxeumjplLSFXYyTIMiab] -t dir proxyspecs [...] sslproxy [-kCKwWOPZdDgGsrRxeumjplLSFXYyTIMi] -f conffile sslproxy -E sslproxy -V sslproxy -h DESCRIPTIONSSLproxy is a proxy for SSL/TLS encrypted network connections. It is intended to be used for decrypting and diverting network traffic to other programs, such as UTM services, for deep SSL inspection.The UTMFW project uses SSLproxy to decyrpt and feed network traffic into its UTM services: Web Filter, POP3 Proxy, SMTP Proxy, and Inline IPS; and also indirectly into Virus Scanner and Spam Filter through those UTM software. Given that most of the Internet traffic is encrypted now, it wouldn't be possible without SSLproxy to deeply inspect most of the network traffic passing through UTMFW. Mode of operationSSLproxy is designed to transparently terminate connections that are redirected to it using a network address translation engine. SSLproxy then terminates SSL/TLS and initiates a new SSL/TLS connection to the original destination address. Packets received on the client side are decrypted and sent to the program listening on a port given in the proxy specification. SSLproxy inserts in the first packet the address and port it is expecting to receive the packets back from the program. Upon receiving the packets back, SSLproxy re-encrypts and sends them to their original destination. The return traffic follows the same path back to the client in reverse order.This is similar in principle to divert sockets, divert(4), where the packet filter diverts the packets to a program listening on a divert socket, and after processing the packets the program reinjects them into the kernel. If there is no program listening on that divert socket or the program does not reinject the packets into the kernel, the connection is effectively blocked. In the case of SSLproxy, SSLproxy acts as both the packet filter and the kernel, and the communication occurs over networking sockets. SSLproxy supports split mode of operation similar to SSLsplit as well. In split mode, packets are not diverted to listening programs, effectively making SSLproxy behave similar to SSLsplit, but not exactly like it, because SSLproxy has certain features non-existent in SSLsplit, such as user authentication and protocol validation. Also, note that the implementation of proxy core in SSLproxy is different from the one in SSLsplit, for example the proxy core in SSLproxy runs lockless, whereas SSLsplit implementation uses thread manager level locks (which does not necessarily make sslproxy run faster than sslsplit). In SSLproxy, split mode can be defined globally or per-proxyspec. SSLproxy does not automagically redirect any network traffic. To actually implement a proxy, you also need to redirect the traffic to the system running sslproxy. Your options include running sslproxy on a legitimate router, ARP spoofing, ND spoofing, DNS poisoning, deploying a rogue access point (e.g. using hostap mode), physical recabling, malicious VLAN reconfiguration or route injection, /etc/hosts modification and so on. Proxy specificationsSSLproxy supports three different types of proxy specifications, or proxyspecs for short, which can be in divert or split style.- Command line proxyspecs passed on the command line - One line proxyspecs in configuration files - Structured proxyspecs in configuration files The syntax of command line proxyspecs is as follows: (tcp|ssl|http|https|pop3|pop3s|smtp|smtps|autossl) listenaddr listenport [up:divertport [ua:divertaddr ra:returnaddr]] [(targetaddr targetport|sni sniport|natengine)] The syntax of one line proxyspecs is the same as the command line proxyspecs, except for the leading ProxySpec keyword: ProxySpec (tcp|ssl|http|https|pop3|pop3s|smtp|smtps|autossl) listenaddr listenport [up:divertport [ua:divertaddr ra:returnaddr]] [(targetaddr targetport|sni sniport|natengine)] The syntax of structured proxyspecs is as follows, and they can configure connection options too: ProxySpec { Proto (tcp|ssl|http|https|pop3|pop3s|smtp|smtps|autossl) Addr listenaddr # inline Port listenport # comments DivertPort divertport # allowed DivertAddr divertaddr ReturnAddr returnaddr TargetAddr targetaddr TargetPort targetport SNIPort sniport NatEngine natengine # Divert or split Divert (yes|no) # Connection options DenyOCSP (yes|no) Passthrough (yes|no) CACert ca.crt CAKey ca.key ClientCert client.crt ClientKey client.key CAChain chain.crt LeafCRLURL http://example.com/example.crl DHGroupParams dh.pem ECDHCurve prime256v1 SSLCompression (yes|no) ForceSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13) DisableSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13) EnableSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13) MinSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13) MaxSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13) Ciphers MEDIUM:HIGH CipherSuites TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256 RemoveHTTPAcceptEncoding (yes|no) RemoveHTTPReferer (yes|no) VerifyPeer (yes|no) AllowWrongHost (yes|no) UserAuth (yes|no) UserTimeout 300 UserAuthURL https://192.168.0.1/userdblogin.php ValidateProto (yes|no) MaxHTTPHeaderSize 8192 # The DivertUsers, PassUsers, and PassSite options will be deprecated DivertUsers userlist PassUsers userlist PassSite rules Define $macro valuelist
(Divert|Split|Pass|Block|Match) one line filtering rules
FilterRule {...} structured filtering rules
For example, given the following command line proxyspec: https 127.0.0.1 8443 up:8080 - SSLproxy listens for HTTPS connections on 127.0.0.1:8443. - Upon receiving a connection from the Client, it decrypts and diverts the packets to a Program listening on 127.0.0.1:8080. The default divert address is 127.0.0.1, which can be configured by the ua option. - After processing the packets, the Program gives them back to SSLproxy listening on a dynamically assigned address, which the Program obtains from the SSLproxy line in the first packet in the connection. - Then SSLproxy re-encrypts and sends the packets to the Server. The response from the Server follows the same path back to the Client in reverse order. Split style proxyspecs configure for split mode of operation similar to SSLsplit. See the SSLsplit documentation for the details of split style proxyspecs. SSLproxy lineGiven the example proxyspec above, a sample line SSLproxy inserts into the first packet in the connection may be the following:SSLproxy: [127.0.0.1]:34649,[192.168.3.24]:47286,[192.168.111.130]:443,s - The first IP:port pair is a dynamically assigned address that SSLproxy expects the program send the packets back to it. - The second and third IP:port pairs are the actual source and destination addresses of the connection respectively. Since the program receives the packets from SSLproxy, it cannot determine the source and destination addresses of the packets by itself, e.g by asking the NAT engine, hence must rely on the information in the SSLproxy line. - The last letter is either s or p, for SSL/TLS encrypted or plain traffic respectively. This information is also important for the program, because it cannot reliably determine if the actual network traffic it is processing was encrypted or not before being diverted to it. Listening programsThe program that packets are diverted to should support this mode of operation. Specifically, it should be able to recognize the SSLproxy address in the first packet, and give the first and subsequent packets back to SSLproxy listening on that address, instead of sending them to the original destination as it normally would.You can use any software as a listening program as long as it supports this mode of operation. So existing or new software developed in any programming language can be modified to be used with SSLproxy to inspect and/or modify any or all parts of the packets diverted to it. Given the example proxyspec above, a listening program should be listening on port 8080. You can offload the system SSLproxy is running on by diverting packets to remote listening programs too. For example, given the following proxy specification: https 127.0.0.1 8443 up:8080 ua:192.168.0.1 ra:192.168.1.1 - The ua option instructs SSLproxy to divert packets to 192.168.0.1:8080, instead of 127.0.0.1:8080 as in the previous proxyspec example. - The ra option instructs SSLproxy to listen for returned packets from the program on 192.168.1.1, instead of 127.0.0.1 as in the previous SSLproxy line. Accordingly, the SSLproxy line now becomes: SSLproxy: [192.168.1.1]:34649,[192.168.3.24]:47286,[192.168.111.130]:443,s So, the listening program can be running on a machine anywhere in the world. Since the packets between SSLproxy and the listening program are always unencrypted, you should be careful while using such a setup. ProtocolsSupported protocolsSSLproxy supports plain TCP, plain SSL, HTTP, HTTPS, POP3, POP3S, SMTP, and SMTPS connections over both IPv4 and IPv6. It also has the ability to dynamically upgrade plain TCP to SSL in order to generically support SMTP STARTTLS and similar upgrade mechanisms. Depending on the version of OpenSSL, SSLproxy supports SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3, and optionally SSL 2.0 as well. SSLproxy supports Server Name Indication (SNI), but not Encrypted SNI in TLS 1.3. It is able to work with RSA, DSA and ECDSA keys and DHE and ECDHE cipher suites.The following features of SSLproxy are IPv4 only: - Divert addresses for listening programs in proxyspecs - SSLproxy return addresses dynamically assigned to connections - IP addresses in the ua and ra options - IP and ethernet addresses of clients in user authentication - Target IP and ethernet addresses in mirror logging OCSP, HPKP, HSTS, Upgrade et al.SSLproxy implements a number of defences against mechanisms which would normally prevent MitM attacks or make them more difficult. SSLproxy can deny OCSP requests in a generic way. For HTTP and HTTPS connections, SSLproxy mangles headers to prevent server-instructed public key pinning (HPKP), avoid strict transport security restrictions (HSTS), avoid Certificate Transparency enforcement (Expect-CT) and prevent switching to QUIC/SPDY, HTTP/2 or WebSockets (Upgrade, Alternate Protocols). HTTP compression, encodings and keep-alive are disabled to make the logs more readable.Another reason to disable persistent connections is to reduce file descriptor usage. Accordingly, connections are closed if they remain idle for a certain period of time. The default timeout is 120 seconds, which can be configured by the ConnIdleTimeout option. Protocol validationProtocol validation makes sure the traffic handled by a proxyspec is using the protocol specified in that proxyspec. The ValidateProto option can be used to enable global and/or per-proxyspec protocol validation. This feature currently supports HTTP, POP3, and SMTP protocols. If a connection cannot pass protocol validation, then it is terminated.SSLproxy uses only client requests for protocol validation. However, it also validates SMTP responses until it starts processing the packets from the client. If there is no excessive fragmentation, the first couple of packets in the connection should be enough for validating protocols. CertificatesCertificate forgingFor SSL and HTTPS connections, SSLproxy generates and signs forged X509v3 certificates on-the-fly, mimicking the original server certificate's subject DN, subjectAltName extension and other characteristics. SSLproxy has the ability to use existing certificates of which the private key is available, instead of generating forged ones. SSLproxy supports NULL-prefix CN certificates but otherwise does not implement exploits against specific certificate verification vulnerabilities in SSL/TLS stacks.Certificate verificationSSLproxy verifies upstream certificates by default. If the verification fails, the connection is terminated immediately. This is in contrast to SSLsplit, because in order to maximize the chances that a connection can be successfully split, SSLsplit accepts all certificates by default, including self-signed ones. See the risks of SSL inspection for the reasons of this difference. You can disable this feature by the VerifyPeer option.Client certificatesSSLproxy uses the certificate and key from the pemfiles configured by the ClientCert and ClientKey options when the destination requests client certificates. These options can be defined globally and/or per-proxyspec.Alternatively, you can use Pass filtering rules to pass through certain destinations requesting client certificates. User authenticationIf the UserAuth option is enabled, SSLproxy requires network users to log in to the system to establish connections to the external network.SSLproxy determines the user owner of a connection using a users table in an SQLite3 database configured by the UserDBPath option. The users table should be created using the following SQL statement: CREATE TABLE USERS( IP CHAR(45) PRIMARY KEY NOT NULL, USER CHAR(31) NOT NULL, ETHER CHAR(17) NOT NULL, ATIME INT NOT NULL, DESC CHAR(50) ); SSLproxy does not create this users table or the database file by itself, nor does it log users in or out. So the database file and the users table should already exist at the location pointed to by the UserDBPath option. An external program should log users in and out on the users table. The external program should fill out all the fields in user records, except perhaps for the DESC field, which can be left blank. When SSLproxy accepts a connection, - It searches the client IP address of the connection in the users table. If the client IP address is not in the users table, the connection is redirected to a login page configured by the UserAuthURL option. - If SSLproxy finds a user record for the client IP address in the users table, it obtains the ethernet address of the client IP address from the arp cache of the system, and compares it with the value in the user record for that IP address. If the ethernet addresses do not match, the connection is redirected to the login page. - If the ethernet addresses match, SSLproxy compares the atime value in the user record with the current system time. If the difference is greater than the value configured by the UserTimeout option, the connection is redirected to the login page. If the connection passes all these checks, SSLproxy proceeds with establishing the connection. The atime of the IP address in the users table is updated with the system time while the connection is being terminated. Since this atime update is executed using a privsep command, it is expensive. So, to reduce the frequency of such updates, it is deferred until after the user idle time is more than half of the timeout period. If a description text is provided in the DESC field, it can be used with filtering rules to treat the user logged in from different locations, i.e. from different client IP addresses, separately. If the UserAuth option is enabled, the user owner of the connection is appended at the end of the SSLproxy line, so that the listening program can parse and use this information in its logic and/or logging: SSLproxy: [127.0.0.1]:34649,[192.168.3.24]:47286,[192.168.111.130]:443,s,soner The user authentication feature is currently available on OpenBSD and Linux only. Filtering rulesSSLproxy supports one line and structured filtering rules.SSLproxy can divert, split, pass, block, or match connections based on filtering rules. Filtering rules can be defined globally or per-proxyspec. - Divert action diverts packets to listening program, allowing SSL inspection by listening program and content logging of packets - Split action splits the connection but does not divert packets to listening program, effectively disabling SSL inspection by listening program, but allowing content logging of packets - Pass action passes the connection through by engaging passthrough mode, effectively disabling SSL inspection and content logging of packets - Block action terminates the connection - Match action specifies log actions for the connection without changing its filter action The syntax of one line filtering rules is as follows: (Divert|Split|Pass|Block|Match) ([from ( user (username[*]|$macro|*) [desc (desc[*]|$macro|*)]| desc (desc[*]|$macro|*)| ip (clientip[*]|$macro|*)| *)] [to ( (sni (servername[*]|$macro|*)| cn (commonname[*]|$macro|*)| host (host[*]|$macro|*)| uri (uri[*]|$macro|*)| ip (serverip[*]|$macro|*)) [port (serverport[*]|$macro|*)]| port (serverport[*]|$macro|*)| *)] [log ([[!]connect] [[!]master] [[!]cert] [[!]content] [[!]pcap] [[!]mirror] [$macro]|[!]*)] |*) [# comment] The syntax of structured filtering rules is as follows, and they can configure connection options too: FilterRule { Action (Divert|Split|Pass|Block|Match) # From User (username[*]|$macro|*) # inline Desc (desc[*]|$macro|*) # comments SrcIp (clientip[*]|$macro|*) # allowed # To SNI (servername[*]|$macro|*) CN (commonname[*]|$macro|*) Host (host[*]|$macro|*) URI (uri[*]|$macro|*) DstIp (serverip[*]|$macro|*) DstPort (serverport[*]|$macro|*) # Multiple Log lines allowed Log ([[!]connect] [[!]master] [[!]cert] [[!]content] [[!]pcap] [[!]mirror] [$macro]|[!]*) ReconnectSSL (yes|no)
# Connection options
DenyOCSP (yes|no)
Passthrough (yes|no)
CACert ca.crt
CAKey ca.key
ClientCert client.crt
ClientKey client.key
CAChain chain.crt
LeafCRLURL http://example.com/example.crl
DHGroupParams dh.pem
ECDHCurve prime256v1
SSLCompression (yes|no)
ForceSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13)
DisableSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13)
EnableSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13)
MinSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13)
MaxSSLProto (ssl2|ssl3|tls10|tls11|tls12|tls13)
Ciphers MEDIUM:HIGH
CipherSuites
TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
RemoveHTTPAcceptEncoding (yes|no)
RemoveHTTPReferer (yes|no)
VerifyPeer (yes|no)
AllowWrongHost (yes|no)
UserAuth (yes|no)
UserTimeout 300
UserAuthURL https://192.168.0.1/userdblogin.php
ValidateProto (yes|no)
MaxHTTPHeaderSize 8192
The definition of which connections the filter action will be applied to is achieved by the from and to parts of filtering rule and by the proxyspec that the rule is defined for. - The from part of a rule defines source filter based on client IP address, user and/or description, or * for all. - The to part defines destination filter based on server IP and/or port, SNI or Common Names of SSL connections, Host or URI fields in HTTP Request headers, or * for all. + Dst Host type of rules use the ip site field + SSL type of rules use the sni or cn site field + HTTP type of rules use the host or uri site field + All rule types can use the port field - The proxyspec handling the connection defines the protocol filter for the connection. If and how a connection should be logged is specified using the log or Log part of one line or structured filtering rules, respectively: - connect enables logging connection information to connect log file - master enables logging of master keys - cert enables logging of generated certificates - content enables logging packet contents to content log file - pcap enables writing packets to pcap files - mirror enables mirroring packets to mirror interfaces or targets You can add a negation prefix ! to a log action to disable that logging. Structured filtering rules can also specify all possible connection options to be selectively applied to matching connections, not just per-proxyspec or globally. One line filtering rules cannot specify connection options. For example, if the following rules are defined in a structured HTTPS proxyspec, Split from user soner desc notebook to sni example.com log content Pass from user soner desc android to cn .fbcdn.net* The first filtering rule above splits but does not divert HTTPS connections from the user soner who has logged in with the description notebook to SSL sites with the SNI of example.com. Also, the rule specifies that the packet contents of the matching connection be written to content log file configured globally. The second rule passes through HTTPS connections from the user soner who has logged in with the description android to SSL sites with the Common Names containing the substring .fbcdn.net anywhere in it (notice the asterisk at the end). Since connection contents cannot be written to log files in passthrough mode, the rule does not specify any content log action. The default filter action is Divert. So, if those are the only filtering rules in that proxyspec, the other connections are diverted to the listening program specified in that proxyspec, without writing any logs. If you want to enable, say, connect logging for the other connections handled by that proxyspec, without changing their default Divert filter action, you can add a third filtering rule to that proxyspec: Match * log connect Note that the second example above is a filtering rule you can use to resolve one of the certificate issues preventing the Facebook application on Android smartphones to connect to the Internet behind sslproxy. Filtering rules are applied based on certain precedence orders: - More specific rules have higher precedence. Log actions increase rule precedence too, but this effects log actions only, not the precedence of filter actions. - The precedence of filter types is as HTTP > SSL > Dst Host. Because, the application order of filter types is as Dst Host > SSL > HTTP, and a filter type can override the actions of a preceding filter type. - The precedence of filter actions is as Divert > Split > Pass > Block. This is only for the same type of filtering rules. - The precedence of site fields is as sni > cn for SSL filter and host > uri for HTTP filter. For example, the pass action of a Dst Host filter rule is taken before the split action of an SSL filter rule with the same from definition, due to the precedence order of filter types. Or, the pass action of a rule with sni site field is taken before the split action of the same rule with cn site field, due to the precedence order of site fields. In terms of possible filter actions, - Dst Host filtering rules can take all of the filter and log actions. - SSL filtering rules can take all of the filter and log actions. - HTTP filtering rules can take match and block filter actions, can keep enabled divert and split modes, but cannot take pass action. Also, HTTP filtering rules can only disable logging. Log actions do not configure any loggers. Global loggers for respective log actions should have been configured for those log actions to have any effect. If no filtering rules are defined for a proxyspec, all log actions for that proxyspec are enabled. Otherwise, all log actions are disabled, and filtering rules should enable them specifically. Connection options specified in a structured filtering rule can have any effect only if the rule matches the connection before proxyspec or global options are applied. Otherwise, the proxyspec or global connection options already applied to a connection cannot be overriden by the connection options specified in the matching structured filtering rule. For example, SSL/TLS options of a connection cannot be changed after the SSL/TLS connection is established. So, normally SSL type of rules cannot modify SSL/TLS options of a connection, but you can use the ReconnectSSL option to reconnect the server side of an SSL connection to enforce the SSL/TLS options in the SSL type of filtering rules. In other words, the ReconnectSSL option allows for using the SNI and CN fields in stuctured filtering rules to match connections and change their SSL configuration. Macro expansion is supported. The Define option can be used for defining macros to be used in filtering rules. Macro names must start with a $ char. The macro name must be followed by words separated with spaces. You can append an asterisk * to the fields in filtering rules for substring matching. Otherwise, the filter searches for an exact match with the field in the rule. The filter uses B-trees for exact string matching and Aho-Corasick machines for substring matching. The ordering of filtering rules is important. The ordering of from, to, and log parts is not important. The ordering of log actions is not important. If the UserAuth option is disabled, only client IP addresses can be used in the from part of filtering rules. Excluding sites from SSL inspectionPassSite option is a special form of Pass filtering rule. PassSite rules can be written as Pass filtering rules. The PassSite option will be deprecated in favor of filtering rules in the future.PassSite option allows certain SSL sites to be excluded from SSL inspection. If a PassSite matches the SNI or common names in the SSL certificate of a connection, that connection is passed through the proxy without being diverted to the listening program. SSLproxy engages the Passthrough mode for that purpose. For example, sites requiring client authentication can be added as PassSite. Per-site filters can be defined using client IP addresses, users, and description. If the UserAuth option is disabled, only client IP addresses can be used in PassSite filters. Multiple sites can be defined, one on each line. PassSite rules can search for exact or substring matches. PassSite rules do not support macro expansion. User control listsUser control lists can be implemented using filtering rules. The DivertUsers and PassUsers options will be deprecated in favor of filtering rules in the future.DivertUsers and PassUsers options can be used to divert, pass through, or block users. - If neither DivertUsers nor PassUsers is defined, all users are diverted to listening programs. - Connections from users in DivertUsers, if defined, are diverted to listening programs. - Connections from users in PassUsers, if defined, are simply passed through to their original destinations. SSLproxy engages the Passthrough mode for that purpose. - If both DivertUsers and PassUsers are defined, users not listed in either of the lists are blocked. SSLproxy simply terminates their connections. - If *no* DivertUsers list is defined, only users *not* listed in PassUsers are diverted to listening programs. These user control lists can be defined globally or per-proxyspec. User control lists do not support macro expansion. LoggingLogging options include traditional SSLproxy connect and content log files as well as PCAP files and mirroring decrypted traffic to a network interface. Additionally, certificates, master secrets and local process information can be logged. Filtering rules can selectively modify connection logging.OPTIONS
PROXY SPECIFICATIONSSSLproxy supports two types of proxy specifications: one line and structured. The structured proxy specifications provide more configuration options, but can only be defined in configuration files. See sslproxy.conf(5) and the sample configuration file in the sources for details.One line proxy specifications (proxyspecs) consist of the connection type, listen address and program port. You can also specify program and return addresses, otherwise they default to the loopback address 127.0.0.1. The program and return address options help you divert packets to remote locations. However, beware that the diverted traffic is always unencrypted: https listenaddr port up:port
LOG SPECIFICATIONSLog specifications are composed of zero or more printf-style directives; ordinary characters are included directly in the output path. SSLproxy current supports the following directives:
NAT ENGINESSSLproxy currently supports the following NAT engines:
rdr pass on em0 proto tcp from 2001:db8::/64 to any port 80 \ -> ::1 port 10080 rdr pass on em0 proto tcp from 2001:db8::/64 to any port 443 \ -> ::1 port 10443 rdr pass on em0 proto tcp from 192.0.2.0/24 to any port 80 \ -> 127.0.0.1 port 10080 rdr pass on em0 proto tcp from 192.0.2.0/24 to any port 443 \ -> 127.0.0.1 port 10443 pass in quick on em0 proto tcp from 2001:db8::/64 to any \ port 80 rdr-to ::1 port 10080 pass in quick on em0 proto tcp from 2001:db8::/64 to any \ port 443 rdr-to ::1 port 10443 pass in quick on em0 proto tcp from 192.0.2.0/24 to any \ port 80 rdr-to 127.0.0.1 port 10080 pass in quick on em0 proto tcp from 192.0.2.0/24 to any \ port 443 rdr-to 127.0.0.1 port 10443
ipfw add fwd ::1,10080 tcp from 2001:db8::/64 to any 80 ipfw add fwd ::1,10443 tcp from 2001:db8::/64 to any 443 ipfw add fwd 127.0.0.1,10080 tcp from 192.0.2.0/24 to any 80 ipfw add fwd 127.0.0.1,10443 tcp from 192.0.2.0/24 to any 443 pass in quick on em0 proto tcp from 2001:db8::/64 to any \ port 80 divert-to ::1 port 10080 pass in quick on em0 proto tcp from 2001:db8::/64 to any \ port 443 divert-to ::1 port 10443 pass in quick on em0 proto tcp from 192.0.2.0/24 to any \ port 80 divert-to 127.0.0.1 port 10080 pass in quick on em0 proto tcp from 192.0.2.0/24 to any \ port 443 divert-to 127.0.0.1 port 10443
rdr bge0 0.0.0.0/0 port 80 -> 127.0.0.1 port 10080 rdr bge0 0.0.0.0/0 port 443 -> 127.0.0.1 port 10443
iptables -t nat -A PREROUTING -s 192.0.2.0/24 \ -p tcp --dport 80 \ -j REDIRECT --to-ports 10080 iptables -t nat -A PREROUTING -s 192.0.2.0/24 \ -p tcp --dport 443 \ -j REDIRECT --to-ports 10443 # please contribute a tested ip6tables config Note that SSLproxy is only able to accept incoming connections if it binds to the correct IP address (e.g. 192.0.2.1) or on all interfaces (0.0.0.0). REDIRECT uses the local interface address of the incoming interface as target IP address, or 127.0.0.1 for locally generated packets.
ip -f inet6 rule add fwmark 1 lookup 100 ip -f inet6 route add local default dev lo table 100 ip6tables -t mangle -N DIVERT ip6tables -t mangle -A DIVERT -j MARK --set-mark 1 ip6tables -t mangle -A DIVERT -j ACCEPT ip6tables -t mangle -A PREROUTING -p tcp -m socket -j DIVERT ip6tables -t mangle -A PREROUTING -s 2001:db8::/64 \ -p tcp --dport 80 \ -j TPROXY --tproxy-mark 0x1/0x1 --on-port 10080 ip6tables -t mangle -A PREROUTING -s 2001:db8::/64 \ -p tcp --dport 443 \ -j TPROXY --tproxy-mark 0x1/0x1 --on-port 10443 ip -f inet rule add fwmark 1 lookup 100 ip -f inet route add local default dev lo table 100 iptables -t mangle -N DIVERT iptables -t mangle -A DIVERT -j MARK --set-mark 1 iptables -t mangle -A DIVERT -j ACCEPT iptables -t mangle -A PREROUTING -p tcp -m socket -j DIVERT iptables -t mangle -A PREROUTING -s 192.0.2.0/24 \ -p tcp --dport 80 \ -j TPROXY --tproxy-mark 0x1/0x1 --on-port 10080 iptables -t mangle -A PREROUTING -s 192.0.2.0/24 \ -p tcp --dport 443 \ -j TPROXY --tproxy-mark 0x1/0x1 --on-port 10443 Note that return path filtering (rp_filter) also needs to be disabled on interfaces which handle TPROXY redirected traffic. SIGNALSA running sslproxy accepts SIGINT and SIGTERM for a clean shutdown and SIGUSR1 to re-open the single-file log files (such as -l, -L and -X). The canonical way to rotate or post-process logs is to rename the active log file, send SIGUSR1 to the PID in the PID file given by -p, give SSLproxy some time to flush buffers after closing the old file, and then post-process the renamed log file. Per-connection log files (such as -S and -F) are not re-opened because their filename is specific to the connection.EXIT STATUSThe sslproxy process will exit with 0 on regular shutdown (SIGINT, SIGTERM), and 128 + signal number on controlled shutdown based on receiving a different signal such as SIGHUP. Exit status in the range 1..127 indicates error conditions.EXAMPLESWith configuration similar to the above NAT engine samples, intercept HTTPS and POP3S over IPv4 using forged certificates with CA private key ca.key and certificate ca.crt, logging connections to connect.log and connection data into separate files under /tmp (add -e nat-engine to select the appropriate engine if multiple engines are available on your system) and diverting packets to a program running on address 127.0.0.1 and port 8080 for HTTPS and to another program running on address 127.0.0.1 and port 8110 for POP3S:sslproxy -k ca.key -c ca.crt -l connect.log -L /tmp \ https 127.0.0.1 8443 up:8080 \ pop3s 127.0.0.1 8995 up:8110 To generate a CA private key ca.key and certificate ca.crt using OpenSSL: cat >x509v3ca.cnf <<'EOF' [ req ] distinguished_name = reqdn [ reqdn ] [ v3_ca ] basicConstraints = CA:TRUE subjectKeyIdentifier = hash authorityKeyIdentifier = keyid:always,issuer:always EOF openssl genrsa -out ca.key 2048 openssl req -new -nodes -x509 -sha256 -out ca.crt -key ca.key \ -config x509v3ca.cnf -extensions v3_ca \ -subj '/O=SSLproxy Root CA/CN=SSLproxy Root CA/' \ -set_serial 0 -days 3650 NOTESSSLproxy is able to handle a relatively high number of listeners and connections due to a multithreaded, event based architecture based on libevent, taking advantage of platform specific select() replacements such as kqueue. The main thread handles the listeners and signaling, while a number of worker threads equal to twice the number of CPU cores is used for handling the actual connections in separate event bases, including the CPU-intensive SSL/TLS handling.Care has been taken to choose well-performing data structures for caching certificates and SSL sessions. Logging is implemented in separate disk writer threads to ensure that socket event handling threads don't have to block on disk I/O. DNS lookups are performed asynchronously. SSLproxy uses SSL session caching on both ends to minimize the amount of full SSL handshakes, but even then, the limiting factor in handling SSL connections are the actual bignum computations. For high performance and low latency and when running SSLproxy as root or otherwise in a privilege separation mode, avoid using options which require a privileged operation to be invoked through privilege separation for each connection. These are currently all per-connection log types: content log to per-stream file in dir or filespec (-F, -S), content log to per-stream PCAP in dir or filespec (-Y, -y), and generated or all certificates to files in directory (-w, -W). Instead, use the respective single-file variants where available. It is possible, albeit not recommended, to bypass the default privilege separation when run as root by using -u root, thereby bypassing privilege separation entirely. SEE ALSOsslproxy.conf(5), openssl(1), ciphers(1), speed(1), pf(4), ipfw(8), iptables(8), ip6tables(8), ip(8), hostapd(8), arpspoof(8), parasite6(8), yersinia(8), https://www.roe.ch/SSLsplit, https://github.com/sonertari/SSLproxyAUTHORSSSLsplit was written by Daniel Roethlisberger <daniel@roe.ch>. SSLsplit is currently maintained by Daniel Roethlisberger and Soner Tari.SSLproxy has been developed by Soner Tari <sonertari@gmail.com>. The following individuals have contributed code or documentation, in chronological order of their first contribution: Steve Wills, Landon Fuller, Wayne Jensen, Rory McNamara, Alexander Neumann, Adam Jacob Muller, Richard Poole, Maciej Kotowicz, Eun Soo Park, Christian Groschupp, Alexander Savchenkov, Soner Tari, Petr Vanek, Hilko Bengen, Philip Duldig, Levente Polyak, Nick French and Cihan Komecoglu. SSLsplit contains work sponsored by HackerOne. BUGSUse Github for submission of bug reports or patches:https://github.com/droe/sslsplit
https://github.com/sonertari/sslproxy
Visit the GSP FreeBSD Man Page Interface. |