From 6546e9b26dbdf25183c862063cae64224b81e91b Mon Sep 17 00:00:00 2001 From: jay817 Date: Tue, 4 Feb 2025 00:14:31 +0000 Subject: [PATCH] Add mobile/README.md --- mobile/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mobile/README.md diff --git a/mobile/README.md b/mobile/README.md new file mode 100644 index 0000000..342e6b4 --- /dev/null +++ b/mobile/README.md @@ -0,0 +1,20 @@ +# iOS: iSH shell +``` +apk add openssh + +/etc/ssh/sshd_config +Port 2222 +PermitRootLogin yes +AllowTcpForwarding yes +GatewayPorts yes + +killall sshd +/usr/sbin/sshd +``` + +Client +``` +ssh -vvv -D 1080 -qCN root@10.0.0.2 -p 2222 + +curl -v --socks5 localhost:1080 http://httpbin.org/ip +``` \ No newline at end of file