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
- Host: GitHub
- URL: https://github.com/leonjza/socat23
- Owner: leonjza
- License: gpl-3.0
- Created: 2019-03-13T05:28:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-27T08:33:30.000Z (over 1 year ago)
- Last Synced: 2025-03-24T17:52:40.622Z (7 months ago)
- Topics: proxy, socat, sslv2, sslv3
- Language: Shell
- Homepage:
- Size: 16.6 KB
- Stars: 13
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```