Upload files to "/"

This commit is contained in:
2026-04-14 21:55:19 +00:00
parent 1496e45509
commit 32507a14cc
3 changed files with 57 additions and 0 deletions

17
0spn Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
clear
echo Server:
read s
echo Port:
read p
echo User:
read u
clear
echo SOCKS5 proxy:
echo localhost:4444
echo 127.0.0.1:4444
echo 0.0.0.0:4444
ssh $u@$s -p $p -ND 4444
echo 'Disconnected.'
read -n1