블로그 이미지
Flying Mr.Cheon youGom

Recent Comment»

Recent Post»

Recent Trackback»

« 2024/5 »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

reverse shell ssh

보안 | 2023. 5. 14. 21:20 | Posted by youGom

not netcat, it is ssh

install openssh server

$ sudo apt install openssh-server

check status ssh

$ sudo systemctl status ssh

if not work it ssh

$ sudo systemctl enable ssh
$ sudo systemctl start ssh

 

access the target server from client, if you had key-file, to include -i option.

$ ssh -R server_port:localhost:client_port user@server_ip
$ ssh -nNT -o TCPKeepAlive=yes -R server_port:127.0.0.1:client_port user@server_ip

'보안' 카테고리의 다른 글

[CURL] linux에서 활용하기  (0) 2014.11.28
[보안/교육] 아카데미 사이트  (0) 2013.07.18
BackTrack5 한글 패치하기  (0) 2013.03.27
: