Vnc all — различия между версиями

Материал из InformationSecurity WIKI
Перейти к: навигация, поиск
м (Перебор паролей)
м (Статьи)
 
(не показаны 4 промежуточные версии этого же участника)
Строка 1: Строка 1:
  
 
=Поиск=
 
=Поиск=
 +
 +
==Все в одном==
 +
 +
===vncpwn===
 +
 +
https://github.com/hegusung/VNCPwn
 +
 +
<syntaxhighlight lang="bash" line="1" enclose="div" style="overflow-x:scroll" >
 +
python vncpwn.py
 +
</syntaxhighlight>
 +
 
==Порт и версия==
 
==Порт и версия==
  
Строка 36: Строка 47:
 
<syntaxhighlight lang="bash" line="1" enclose="div" style="overflow-x:scroll" >
 
<syntaxhighlight lang="bash" line="1" enclose="div" style="overflow-x:scroll" >
 
vncviewer [-passwd passwd.txt] target::5901
 
vncviewer [-passwd passwd.txt] target::5901
 +
</syntaxhighlight>
 +
 +
==Расшифровка /.vnc/passwd ==
 +
 +
===vncpwd===
 +
 +
https://github.com/jeroennijhof/vncpwd
 +
 +
<syntaxhighlight lang="bash" line="1" enclose="div" style="overflow-x:scroll" >
 +
vncpwd _file_
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Строка 41: Строка 62:
  
 
[https://www.hackingarticles.in/vnc-penetration-testing/ Туториал по тестированию VNC]
 
[https://www.hackingarticles.in/vnc-penetration-testing/ Туториал по тестированию VNC]
 +
 +
[https://book.hacktricks.xyz/pentesting/pentesting-vnc Хороший туториал]

Текущая версия на 13:03, 30 апреля 2020

Поиск

Все в одном

vncpwn

https://github.com/hegusung/VNCPwn

1 python vncpwn.py

Порт и версия

NMAP

1 nmap -p 5901 --script vnc-info target
2 nmap -sV --script vnc-info,realvnc-auth-bypass,vnc-title -p port target

Проверка подключния

vncviewer

1 vncviewer target:5901

Атаки

Перебор паролей

vnc_login

1 use auxiliary/scanner/vnc/vnc_login
2 set rhosts target
3 set rport 5901
4 set pass_file pass.txt
5 run

vncviewer

1 vncviewer [-passwd passwd.txt] target::5901

Расшифровка /.vnc/passwd

vncpwd

https://github.com/jeroennijhof/vncpwd

1 vncpwd _file_

Статьи

Туториал по тестированию VNC

Хороший туториал