An open API service indexing awesome lists of open source software.

https://github.com/leonjza/socat23

🗝 Socat with SSL v2/3 Support
https://github.com/leonjza/socat23

proxy socat sslv2 sslv3

Last synced: 6 months ago
JSON representation

🗝 Socat with SSL v2/3 Support

Awesome Lists containing this project

README

          

# socat23

[socat](http://www.dest-unreach.org/socat/) with OpenSSL version 2 & 3 support.

_Repo for the gist I originally had [here](https://gist.github.com/leonjza/9af3ade91420ed48c6f048563885940a)._

## installation

Run the `build.sh` script, tested on Kali Linux. Alternatively, build the docker container with `docker build -t socat23 .`.

## usage

Installation using the `build.sh` script on Kali Linux will provide a new `socat23` command to use. For the docker image, example invocation would be:

Window 1
```bash
docker run --rm -p 50000:80 socat23:latest socat -v -ls tcp4-listen:80,fork,reuseaddr ssl:www.google.com:443,verify=0
```

Window 2
```bash
curl http://localhost:50000/ -H "Host: www.google.com"
```