A client of ssserver named sslocal, used to convert socket proxy to http proxy.
634
[TOC]
This image is only for technical study and research, please strictly abide by relevant laws and regulations, is strictly prohibited for commercial thoroughfare, do not browse or disseminate illegal information.
docker pull teachmyself/sslocal
docker images | grep sslocal
This step depedends on a ssserver. You should change the value of
SERVER_HOST,SERVER_PORT,PASSWORD,METHODin the command before you run it.
docker run -d \
-e SERVER_HOST=1.1.1.1 \
-e SERVER_PORT=8888 \
-e PASSWORD=123456 \
-e METHOD=aes-256-cfb \
-p 8118:8118 \
--name sslocal \
--restart always \
teachmyself/sslocal
docker ps
docker exec sslocal tail -f /var/log/sslocal.log
docker stop sslocal
docker rm sslocal
export http_proxy=127.0.0.1:8118;
export https_proxy=127.0.0.1:8118;
curl www.google.com
Content type
Image
Digest
Size
17.3 MB
Last updated
about 7 years ago
docker pull teachmyself/sslocal