Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
findwall — ¡Comprueba si tu proveedor te está bloqueando! | Kitploit
Herramientas/GitHubGitHub/peco602/findwall
Escaneo de PuertosSeguridad de RedesPruebas de Penetración
GitHubpeco602/findwall

findwall

¡Comprueba si tu proveedor te está bloqueando!

Ver Repositorio
103553hace 4 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

TCP UDP

FindWall

¿Qué hace?

FindWall es un script en Python que permite saber si tu proveedor de red está limitando tu acceso a Internet bloqueando algún puerto TCP/UDP. Para realizar esta comprobación, FindWall necesita conectarse a un VPS público de tu propiedad. FindWall realiza las siguientes acciones:

  1. Se conecta al VPS mediante SSH.
  2. Abre un puerto en modo escucha.
  3. Intenta conectarse a ese puerto desde la máquina local.
  4. Cierra el puerto.

¿Cómo se usa?

Para usar FindWall solo necesitas una cuenta en un VPS público. La cuenta debe tener acceso root si quieres probar puertos en el rango 1-1024. También se requiere la cuenta root para instalar automáticamente la herramienta nc para abrir puertos.

root@kitploit:~
$ pip install -r requirements
$ python findwall.py --help

=====================================================================================

        ███████╗██╗███╗   ██╗██████╗ ██╗    ██╗ █████╗ ██╗     ██╗     
        ██╔════╝██║████╗  ██║██╔══██╗██║    ██║██╔══██╗██║     ██║     
        █████╗  ██║██╔██╗ ██║██║  ██║██║ █╗ ██║███████║██║     ██║     
        ██╔══╝  ██║██║╚██╗██║██║  ██║██║███╗██║██╔══██║██║     ██║     
        ██║     ██║██║ ╚████║██████╔╝╚███╔███╔╝██║  ██║███████╗███████╗
        ╚═╝     ╚═╝╚═╝  ╚═══╝╚═════╝  ╚══╝╚══╝ ╚═╝  ╚═╝╚══════╝╚══════╝

=====================================================================================

usage: findwall.py [-h] --ssh-host SSH_HOST [--ssh-port SSH_PORT] --ssh-username SSH_USERNAME [--ssh-password SSH_PASSWORD] [--ask-ssh-pass] [--ssh-key SSH_KEY] --ports PORTS [--udp]
                   [--threads THREADS]

Check if someone is blocking you!

optional arguments:
  -h, --help            show this help message and exit
  --ssh-host SSH_HOST   Remote host
  --ssh-port SSH_PORT   Remote SSH port
  --ssh-username SSH_USERNAME
                        Remote SSH username
  --ssh-password SSH_PASSWORD
                        Remote SSH password
  --ask-ssh-pass        Ask for remote SSH password
  --ssh-key SSH_KEY     Remote SSH private key
  --ports PORTS         Port range to scan (default: 1-1024)
  --udp                 Scan in UDP
  --threads THREADS     Number of threads (default: 1)

Como ejemplo:

root@kitploit:~
$ python findwall.py --ssh-host 172.17.0.2 --ssh-port 22 --ssh-username test --ssh-password test --ports 8000-8010 --threads 3
Descargar herramienta