Muestra las diferencias entre dos versiones de la página.
rusia:gaceta:nmap-vuln [2025/04/14 03:21] anonimo creado |
rusia:gaceta:nmap-vuln [2025/04/14 03:52] (actual) anonimo |
||
---|---|---|---|
Línea 23: | Línea 23: | ||
80/tcp open http QRATOR | 80/tcp open http QRATOR | ||
8443/tcp open https-alt? | 8443/tcp open https-alt? | ||
+ | </code> | ||
+ | |||
+ | Vemos que el tráfico HTTPS está siendo protegido o administrado por Qrator, como un intermediario seguro (similar a Cloudflare). | ||
+ | |||
+ | <code bash> | ||
+ | sudo nmap -sU -p 69 rg.ru -oN tftp.txt | ||
+ | [sudo] contraseña para toor: | ||
+ | Starting Nmap 7.80 ( https://nmap.org ) at 2025-04-14 03:30 CEST | ||
+ | Nmap scan report for rg.ru (185.65.148.114) | ||
+ | Host is up (0.12s latency). | ||
+ | |||
+ | PORT STATE SERVICE | ||
+ | 69/udp open|filtered tftp | ||
+ | |||
+ | Nmap done: 1 IP address (1 host up) scanned in 1.78 seconds | ||
+ | </code> | ||
+ | |||
+ | **Comprobamos si realmente está abierto tftp**\\ | ||
+ | |||
+ | <code bash> | ||
+ | tftp 185.65.148.114 | ||
+ | tftp> ? | ||
+ | Commands may be abbreviated. Commands are: | ||
+ | |||
+ | connect connect to remote tftp | ||
+ | mode set file transfer mode | ||
+ | put send file | ||
+ | get receive file | ||
+ | quit exit tftp | ||
+ | verbose toggle verbose mode | ||
+ | trace toggle packet tracing | ||
+ | status show current status | ||
+ | binary set mode to octet | ||
+ | ascii set mode to netascii | ||
+ | rexmt set per-packet retransmission timeout | ||
+ | timeout set total retransmission timeout | ||
+ | ? print help information | ||
+ | tftp> status | ||
+ | Connected to 185.65.148.114. | ||
+ | Mode: netascii Verbose: off Tracing: off | ||
+ | Rexmt-interval: 5 seconds, Max-timeout: 25 seconds | ||
+ | tftp> | ||
</code> | </code> | ||