├── .github └── workflows │ ├── ci.yaml │ ├── deploy-push.yaml │ ├── static-release-push.yml │ └── stealth-push.yaml ├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile.am ├── README.md ├── bootstrap ├── configure.ac ├── deploy ├── README-update.md ├── README.md ├── deploy.sh └── deploy_server.sh ├── examples ├── Makefile.am ├── port-forward │ ├── README.md │ └── gs-portforward.service ├── sshd │ ├── README.md │ └── gs-sshd.service ├── systemd-root-shell │ ├── README.md │ └── gs-root-shell.service ├── user-shell │ └── README.md └── wireguard │ ├── README.md │ ├── client-privatekey │ ├── client-publickey │ ├── server-privatekey │ ├── server-publickey │ ├── wg0-client.conf │ └── wg0-server.conf ├── include ├── Makefile.am └── gsocket │ ├── Makefile.am │ ├── buf.h │ ├── event.h │ ├── gs-readline.h │ ├── gs-select.h │ ├── gsocket-ssl.h │ ├── gsocket.h │ ├── list.h │ └── packet.h ├── install.sh ├── lib ├── Makefile.am ├── buf.c ├── event-test.c ├── event.c ├── gs-common.h ├── gs-externs.h ├── gs-readline.c ├── gsocket-engine.c ├── gsocket-engine.h ├── gsocket-select.c ├── gsocket-sha256.c ├── gsocket-sha256.h ├── gsocket-ssl.c ├── gsocket-util.c ├── list-test.c ├── list.c └── packet.c ├── man ├── Makefile.am ├── blitz.1 ├── gs-mount.1 ├── gs-netcat.1 ├── gs-sftp.1 ├── gsocket.1 ├── man2c.sh └── man2html.sh ├── packaging ├── Makefile ├── debian-deb │ ├── DEBIAN │ │ └── control.in │ ├── Dockerfile │ ├── build.sh │ └── build_all.sh ├── debian │ └── control ├── deploy-all │ ├── deploy-all_head.sh │ └── mk_deploy-all.sh ├── docker │ ├── gsocket-tor │ │ └── Dockerfile │ └── gsocket │ │ ├── Dockerfile │ │ ├── bashrc │ │ └── gs-motd ├── gsnc-deploy-bin │ ├── cyg_bincopy.sh │ ├── docker │ │ ├── arm-linux │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_all.sh │ │ ├── x86_64-alpine │ │ │ └── Dockerfile │ │ └── x86_64-debian │ │ │ └── Dockerfile │ └── selftest │ │ ├── Dockerfile.alpine │ │ ├── Dockerfile.arch │ │ ├── Dockerfile.centos │ │ ├── Dockerfile.debian │ │ ├── Dockerfile.rhel8 │ │ ├── Dockerfile.suse-tumbleweed │ │ ├── run.sh │ │ └── run_all.sh └── openwrt │ ├── gsocket │ ├── Makefile │ └── test.sh │ └── release.sh ├── test-build ├── build_inc.sh ├── build_openwrt.sh ├── compile.conf-example └── test-compile.sh ├── tests ├── Makefile ├── run_all_tests.sh ├── run_ft_tests.sh ├── run_gs_tests.sh ├── run_ping_gsrn.sh └── test_tcp_badconn.sh └── tools ├── 1_gs-helloworld.c ├── 2_gs-pipe.c ├── 3_gs-full-pipe.c ├── 4_gs-netcat.c ├── Makefile.am ├── blitz ├── common.h ├── console.c ├── console.h ├── console_display-test.c ├── console_display.c ├── console_display.h ├── event_mgr.c ├── event_mgr.h ├── filetransfer-test.c ├── filetransfer.c ├── filetransfer.h ├── filetransfer_mgr.c ├── filetransfer_mgr.h ├── globbing.c ├── globbing.h ├── gs-mount ├── gs-netcat.h ├── gs-sftp ├── gs_funcs ├── gsocket ├── gsocket.conf.in ├── gsocket_dso-lib.c ├── gsocket_dso-lib.h ├── gsocket_dso.c ├── gsocket_uchroot_dso.c ├── ids.c ├── ids.h ├── man_gs-netcat.h ├── packet-test.c ├── pkt_mgr.c ├── pkt_mgr.h ├── readline-test.c ├── socks.c ├── socks.h ├── utils.c └── utils.h /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/.github/workflows/deploy-push.yaml -------------------------------------------------------------------------------- /.github/workflows/static-release-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/.github/workflows/static-release-push.yml -------------------------------------------------------------------------------- /.github/workflows/stealth-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/.github/workflows/stealth-push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/configure.ac -------------------------------------------------------------------------------- /deploy/README-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/deploy/README-update.md -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/deploy/deploy.sh -------------------------------------------------------------------------------- /deploy/deploy_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/deploy/deploy_server.sh -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/port-forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/port-forward/README.md -------------------------------------------------------------------------------- /examples/port-forward/gs-portforward.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/port-forward/gs-portforward.service -------------------------------------------------------------------------------- /examples/sshd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/sshd/README.md -------------------------------------------------------------------------------- /examples/sshd/gs-sshd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/sshd/gs-sshd.service -------------------------------------------------------------------------------- /examples/systemd-root-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/systemd-root-shell/README.md -------------------------------------------------------------------------------- /examples/systemd-root-shell/gs-root-shell.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/systemd-root-shell/gs-root-shell.service -------------------------------------------------------------------------------- /examples/user-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/user-shell/README.md -------------------------------------------------------------------------------- /examples/wireguard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/wireguard/README.md -------------------------------------------------------------------------------- /examples/wireguard/client-privatekey: -------------------------------------------------------------------------------- 1 | SOnUcf+KuXIWXfhpZpHtTC097ihBNUXT2igp5IuJsWY= 2 | -------------------------------------------------------------------------------- /examples/wireguard/client-publickey: -------------------------------------------------------------------------------- 1 | KRYz7Jsbu1pS6ALHLqCUqG4KsFh9GcK3II+3bFscYUU= 2 | -------------------------------------------------------------------------------- /examples/wireguard/server-privatekey: -------------------------------------------------------------------------------- 1 | 4E48vR7v8OUJO5OEYkOUUZmF55UOYVqo9l9w2eRS50k= 2 | -------------------------------------------------------------------------------- /examples/wireguard/server-publickey: -------------------------------------------------------------------------------- 1 | gjBE/V1pGdIu7yTGWtZvObxIf9+ErH9aRP+jsBuiXC4= 2 | -------------------------------------------------------------------------------- /examples/wireguard/wg0-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/wireguard/wg0-client.conf -------------------------------------------------------------------------------- /examples/wireguard/wg0-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/examples/wireguard/wg0-server.conf -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = gsocket 2 | 3 | -------------------------------------------------------------------------------- /include/gsocket/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/Makefile.am -------------------------------------------------------------------------------- /include/gsocket/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/buf.h -------------------------------------------------------------------------------- /include/gsocket/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/event.h -------------------------------------------------------------------------------- /include/gsocket/gs-readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/gs-readline.h -------------------------------------------------------------------------------- /include/gsocket/gs-select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/gs-select.h -------------------------------------------------------------------------------- /include/gsocket/gsocket-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/gsocket-ssl.h -------------------------------------------------------------------------------- /include/gsocket/gsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/gsocket.h -------------------------------------------------------------------------------- /include/gsocket/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/list.h -------------------------------------------------------------------------------- /include/gsocket/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/include/gsocket/packet.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/install.sh -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/buf.c -------------------------------------------------------------------------------- /lib/event-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/event-test.c -------------------------------------------------------------------------------- /lib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/event.c -------------------------------------------------------------------------------- /lib/gs-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gs-common.h -------------------------------------------------------------------------------- /lib/gs-externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gs-externs.h -------------------------------------------------------------------------------- /lib/gs-readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gs-readline.c -------------------------------------------------------------------------------- /lib/gsocket-engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-engine.c -------------------------------------------------------------------------------- /lib/gsocket-engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-engine.h -------------------------------------------------------------------------------- /lib/gsocket-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-select.c -------------------------------------------------------------------------------- /lib/gsocket-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-sha256.c -------------------------------------------------------------------------------- /lib/gsocket-sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-sha256.h -------------------------------------------------------------------------------- /lib/gsocket-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-ssl.c -------------------------------------------------------------------------------- /lib/gsocket-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/gsocket-util.c -------------------------------------------------------------------------------- /lib/list-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/list-test.c -------------------------------------------------------------------------------- /lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/list.c -------------------------------------------------------------------------------- /lib/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/lib/packet.c -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/blitz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/blitz.1 -------------------------------------------------------------------------------- /man/gs-mount.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/gs-mount.1 -------------------------------------------------------------------------------- /man/gs-netcat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/gs-netcat.1 -------------------------------------------------------------------------------- /man/gs-sftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/gs-sftp.1 -------------------------------------------------------------------------------- /man/gsocket.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/gsocket.1 -------------------------------------------------------------------------------- /man/man2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/man2c.sh -------------------------------------------------------------------------------- /man/man2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/man/man2html.sh -------------------------------------------------------------------------------- /packaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/Makefile -------------------------------------------------------------------------------- /packaging/debian-deb/DEBIAN/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/debian-deb/DEBIAN/control.in -------------------------------------------------------------------------------- /packaging/debian-deb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/debian-deb/Dockerfile -------------------------------------------------------------------------------- /packaging/debian-deb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/debian-deb/build.sh -------------------------------------------------------------------------------- /packaging/debian-deb/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/debian-deb/build_all.sh -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /packaging/deploy-all/deploy-all_head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/deploy-all/deploy-all_head.sh -------------------------------------------------------------------------------- /packaging/deploy-all/mk_deploy-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/deploy-all/mk_deploy-all.sh -------------------------------------------------------------------------------- /packaging/docker/gsocket-tor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/docker/gsocket-tor/Dockerfile -------------------------------------------------------------------------------- /packaging/docker/gsocket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/docker/gsocket/Dockerfile -------------------------------------------------------------------------------- /packaging/docker/gsocket/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/docker/gsocket/bashrc -------------------------------------------------------------------------------- /packaging/docker/gsocket/gs-motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/docker/gsocket/gs-motd -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/cyg_bincopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/cyg_bincopy.sh -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/docker/arm-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/docker/arm-linux/Dockerfile -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/docker/build.sh -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/docker/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/docker/build_all.sh -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/docker/x86_64-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/docker/x86_64-alpine/Dockerfile -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/docker/x86_64-debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/docker/x86_64-debian/Dockerfile -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/Dockerfile.alpine -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.arch: -------------------------------------------------------------------------------- 1 | FROM archlinux:base-devel 2 | 3 | -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/Dockerfile.centos -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/Dockerfile.debian -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.rhel8: -------------------------------------------------------------------------------- 1 | FROM roboxes/rhel8 2 | -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/Dockerfile.suse-tumbleweed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/Dockerfile.suse-tumbleweed -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/run.sh -------------------------------------------------------------------------------- /packaging/gsnc-deploy-bin/selftest/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/gsnc-deploy-bin/selftest/run_all.sh -------------------------------------------------------------------------------- /packaging/openwrt/gsocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/openwrt/gsocket/Makefile -------------------------------------------------------------------------------- /packaging/openwrt/gsocket/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gs-netcat -h 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /packaging/openwrt/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/packaging/openwrt/release.sh -------------------------------------------------------------------------------- /test-build/build_inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/test-build/build_inc.sh -------------------------------------------------------------------------------- /test-build/build_openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/test-build/build_openwrt.sh -------------------------------------------------------------------------------- /test-build/compile.conf-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/test-build/compile.conf-example -------------------------------------------------------------------------------- /test-build/test-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/test-build/test-compile.sh -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/run_all_tests.sh -------------------------------------------------------------------------------- /tests/run_ft_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/run_ft_tests.sh -------------------------------------------------------------------------------- /tests/run_gs_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/run_gs_tests.sh -------------------------------------------------------------------------------- /tests/run_ping_gsrn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/run_ping_gsrn.sh -------------------------------------------------------------------------------- /tests/test_tcp_badconn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tests/test_tcp_badconn.sh -------------------------------------------------------------------------------- /tools/1_gs-helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/1_gs-helloworld.c -------------------------------------------------------------------------------- /tools/2_gs-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/2_gs-pipe.c -------------------------------------------------------------------------------- /tools/3_gs-full-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/3_gs-full-pipe.c -------------------------------------------------------------------------------- /tools/4_gs-netcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/4_gs-netcat.c -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/blitz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/blitz -------------------------------------------------------------------------------- /tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/common.h -------------------------------------------------------------------------------- /tools/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/console.c -------------------------------------------------------------------------------- /tools/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/console.h -------------------------------------------------------------------------------- /tools/console_display-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/console_display-test.c -------------------------------------------------------------------------------- /tools/console_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/console_display.c -------------------------------------------------------------------------------- /tools/console_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/console_display.h -------------------------------------------------------------------------------- /tools/event_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/event_mgr.c -------------------------------------------------------------------------------- /tools/event_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/event_mgr.h -------------------------------------------------------------------------------- /tools/filetransfer-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/filetransfer-test.c -------------------------------------------------------------------------------- /tools/filetransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/filetransfer.c -------------------------------------------------------------------------------- /tools/filetransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/filetransfer.h -------------------------------------------------------------------------------- /tools/filetransfer_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/filetransfer_mgr.c -------------------------------------------------------------------------------- /tools/filetransfer_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/filetransfer_mgr.h -------------------------------------------------------------------------------- /tools/globbing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/globbing.c -------------------------------------------------------------------------------- /tools/globbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/globbing.h -------------------------------------------------------------------------------- /tools/gs-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gs-mount -------------------------------------------------------------------------------- /tools/gs-netcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gs-netcat.h -------------------------------------------------------------------------------- /tools/gs-sftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gs-sftp -------------------------------------------------------------------------------- /tools/gs_funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gs_funcs -------------------------------------------------------------------------------- /tools/gsocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket -------------------------------------------------------------------------------- /tools/gsocket.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket.conf.in -------------------------------------------------------------------------------- /tools/gsocket_dso-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket_dso-lib.c -------------------------------------------------------------------------------- /tools/gsocket_dso-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket_dso-lib.h -------------------------------------------------------------------------------- /tools/gsocket_dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket_dso.c -------------------------------------------------------------------------------- /tools/gsocket_uchroot_dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/gsocket_uchroot_dso.c -------------------------------------------------------------------------------- /tools/ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/ids.c -------------------------------------------------------------------------------- /tools/ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/ids.h -------------------------------------------------------------------------------- /tools/man_gs-netcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/man_gs-netcat.h -------------------------------------------------------------------------------- /tools/packet-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/packet-test.c -------------------------------------------------------------------------------- /tools/pkt_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/pkt_mgr.c -------------------------------------------------------------------------------- /tools/pkt_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/pkt_mgr.h -------------------------------------------------------------------------------- /tools/readline-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/readline-test.c -------------------------------------------------------------------------------- /tools/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/socks.c -------------------------------------------------------------------------------- /tools/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/socks.h -------------------------------------------------------------------------------- /tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/utils.c -------------------------------------------------------------------------------- /tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerschoice/gsocket/HEAD/tools/utils.h --------------------------------------------------------------------------------