![]() |
VOOZH | about |
Squid SSL Proxy with SSLBump [Works on Raspberry Pi]
4.0K
Container image for Squid SSL proxy server with SSL Bump enabled. SSLBump (Squid-in-the-middle) does the decryption and encryption of straight CONNECT and transparently redirected SSL traffic, using configurable CA certificates.
Use this Squid SSL Proxy with SSLBump only with the user's consent. [See Legal Warning]
curl -s https://api.github.com/repos/satishweb/squid-ssl-proxy/releases/latest|grep "tarball_url" | head -1|awk -F '[:"]' '{print $5":"$6}'| xargs curl -L -o release.tar.gz && tar zxf release.tar.gz && rm release.tar.gz; mv satishweb-* squid-ssl-proxy && cd squid-ssl-proxy && rm -rf images Dockerfile .do* .git* build.sh Makefile conf scripts && cd -
(Optional) Edit docker-compose.yml file
Copy env.sample.conf as env.conf and edit the values as needed
Run the Docker container
./launch.sh
Secure Sockets Layer (SSL) and its successor Transport Layer Security (TLS) have become essential components of the modern Internet. The confidentiality, integrity, and originality provided by these protocols are critical to allow for delicate communication to take place.
Threat actors have also recognized the benefits of transport security and are increasingly turning to SSL to hide their activities. Attackers, Botnets and even ad-hoc web attacks can use SSL encryption to avoid detection.
With the SSL Bump feature, the squid intercepts the encrypted SSL traffic and encrypts it again to the customer's direction. In other words, when a client browses a secure site, Squid takes the actual web server certificate and establishes an SSL connection to the web server. Then, It sends a new digital certificate to the client that looks like a web server's certificate to it and establishes a secure connection between the browser and the proxy.
The configuration of this image provides two different endpoints to the proxy. One of them is not sslbumped (3128), the other one is sslbump enabled (4128). It's not necessary to use sslbump feature to use squid as a regular web proxy.
SSLBump is an SSL/HTTPS interception. HTTPS interception has ethical and legal issues which you need to be aware of which are follows;
There are a few settings in the docker-compose.yml file as follows:
cert folder.
CERT_CN: Common name of the certificateCERT_ORG : Organization of the certificate ownerCERT_OU: Organization unit of the certificate ownerCERT_COUNTRY : Two letter code of the countrylog folder is used for storing access logs.cache folder is used for storing proxy cache.cert folder is used to store the root certificate.Squid configuration file is located in conf/squid.conf. You may refer the official documentation of squid before change the file.
If there isn't, a root certificate is created when the first time image is started. All the clients need to trust this certificate. Otherwise, Clients see an error text for all HTTPS sites. Your clients only need the cert/CA.der file for setup a trust. DON'T DISTRIBUTE the cert/private.pem file to the clients.
If you need to recreate the root certificate, you need to delete all files in the cert folder. Then, a new root certificate is created when the image is started.
Content type
Image
Digest
sha256:bb997f75e…
Size
13.9 MB
Last updated
10 months ago
docker pull satishweb/squid-ssl-proxy