├── LICENSE ├── MiTM.png ├── README.md ├── README2.txt ├── bettercap-1.6.1.tar.gz ├── bettercap-1.6.2.tar.gz ├── ettercap.sh ├── instalar.sh ├── instalar2.sh ├── localspy ├── localspy.sh ├── localspy2.sh ├── localspy3.sh ├── localspy4.sh ├── mitm.py ├── netspy ├── netspy.png ├── netspy.sh ├── promisc.sh ├── proxynetspy ├── redireccion.sh ├── sniff.py ├── sniffdns.py ├── spylocal.sh └── udpgquic.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/LICENSE -------------------------------------------------------------------------------- /MiTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/MiTM.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/README.md -------------------------------------------------------------------------------- /README2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/README2.txt -------------------------------------------------------------------------------- /bettercap-1.6.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/bettercap-1.6.1.tar.gz -------------------------------------------------------------------------------- /bettercap-1.6.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/bettercap-1.6.2.tar.gz -------------------------------------------------------------------------------- /ettercap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/ettercap.sh -------------------------------------------------------------------------------- /instalar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/instalar.sh -------------------------------------------------------------------------------- /instalar2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/instalar2.sh -------------------------------------------------------------------------------- /localspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/localspy -------------------------------------------------------------------------------- /localspy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo 3 | tcpick -C -v -a -h "not port 22" -F1 -F2 -yP -c1 4 | -------------------------------------------------------------------------------- /localspy2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/localspy2.sh -------------------------------------------------------------------------------- /localspy3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/localspy3.sh -------------------------------------------------------------------------------- /localspy4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/localspy4.sh -------------------------------------------------------------------------------- /mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/mitm.py -------------------------------------------------------------------------------- /netspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/netspy -------------------------------------------------------------------------------- /netspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/netspy.png -------------------------------------------------------------------------------- /netspy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo 3 | ./bettercap -X --proxy -P POST 4 | -------------------------------------------------------------------------------- /promisc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/promisc.sh -------------------------------------------------------------------------------- /proxynetspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/proxynetspy -------------------------------------------------------------------------------- /redireccion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/redireccion.sh -------------------------------------------------------------------------------- /sniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/sniff.py -------------------------------------------------------------------------------- /sniffdns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/sniffdns.py -------------------------------------------------------------------------------- /spylocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/spylocal.sh -------------------------------------------------------------------------------- /udpgquic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingyseguridad/netspy/HEAD/udpgquic.sh --------------------------------------------------------------------------------