Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
00cfg-wolfssl-3.6.8 | D | 26-Dec-2021 | 414 | 23 | 15 | |
00cfg-wolfssl-3.9.8 | D | 26-Dec-2021 | 907 | 40 | 19 | |
README | D | 26-Dec-2021 | 704 | 25 | 18 | |
ssl_helper.c | D | 26-Dec-2021 | 12.1 KiB | 481 | 211 | |
ssl_helper.sh | D | 26-Dec-2021 | 372 | 13 | 5 |
README
1A small SSL helper for busybox wget. 2 3Precompiled static binary may be found in 4http://busybox.net/downloads/binaries/ 5 6Build instructions: 7 8* Unpack wolfssl-3.9.8.tar.gz from https://github.com/wolfSSL/wolfssl/releases 9 to a wolfssl-3.9.8 subdirectory here. 10* Create configure: 11 (cd wolfssl-* && ./autogen.sh) 12* Build it: see 13 (cd wolfssl-* && ../00cfg-wolfssl-3.9.8) 14* Run 15 ./ssl_helper.sh 16 to compile and link the helper 17 18Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer. 19 20In bash, you can do it this way: 21$ ssl_helper -d3 3<>/dev/tcp/HOST/PORT 22 23Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR. 24Data from FILE_DESCRIPTOR will be decrypted and sent to stdout. 25