├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── gipt.bat ├── gipt.py ├── gipt.sh ├── ss.bat ├── ss.sh ├── thirdparty └── index.txt └── tools └── shadowsocks_net_decoder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/config.json -------------------------------------------------------------------------------- /gipt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/gipt.bat -------------------------------------------------------------------------------- /gipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/gipt.py -------------------------------------------------------------------------------- /gipt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./ss.sh & 3 | sleep 10 4 | python gipt.py config.json 5 | -------------------------------------------------------------------------------- /ss.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/ss.bat -------------------------------------------------------------------------------- /ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/ss.sh -------------------------------------------------------------------------------- /thirdparty/index.txt: -------------------------------------------------------------------------------- 1 | https://github.com/Anorov/PySocks -------------------------------------------------------------------------------- /tools/shadowsocks_net_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lehui99/gipt/HEAD/tools/shadowsocks_net_decoder.py --------------------------------------------------------------------------------