Giter Club home page Giter Club logo

watcha's Introduction

watcha

Build Status Bash License

Usage

./watcha.sh [-h,--help] [-v,--verbose] -i interface

Installation

# Linux Debian/Ubuntu
apt-get install bc sudo ipcalc nmap dig

# MacOS
brew install bc sudo ipcalc nmap iproute2mac dig

Introduction

This tool permits to scan the network (which it subdivides into some /24) and help the exploit by giving some commands. The nmap should be a little bit discret (usage of Spoofing IP not really simple).

Supported :

  • FTP (scanned, helpful script)
  • SSH (display banner)
  • SMTP (scanned, not helped)
  • HTTP / HTTPS / HTTP-PROXY (discret curl, display server name)
  • SAMBA (display guest command, helpful script, auto-test guest no-password credentials)
  • NFS (display command to list exported directories)

Hidding

Spoof MAC

$ ./tools/spoof_mac.sh wlp4s0

Discovery

WATCHA

$ ./watcha.sh -i wlp4s0

Device:     wlp4s0
IP:         192.168.0.11/24
Network:    192.168.0.0/24
Gateway:    192.168.0.1
Spoofed IP: 192.168.0.4

====SCAN====
... tail -f /tmp/.watcha.output

 192.168.0.1 80/OPEN/http
 192.168.0.2 21/OPEN/ftp 80/OPEN/http 445/OPEN/microsoft-ds
 192.168.0.3
 192.168.0.10 2049/OPEN/nfs
 192.168.0.12 21/filtered/ftp 22/filtered/ssh 25/filtered/smtp 80/filtered/http 443/filtered/https 445/filtered/microsoft-ds 2049/filtered/nfs 8080/filtered/http-proxy
 192.168.0.13
 192.168.0.29 22/OPEN/ssh

====LINK====
FTP link:
    tools/ftp.sh 192.168.0.2 admin password
SSH link:
    ssh -l root -i /dev/null 192.168.0.29
HTTP link:
    curl -A "" http://192.168.0.1:80/ >/dev/null -vs
    curl -A "" http://192.168.0.2:80/ >/dev/null -vs
SAMBA link:
    tools/samba.sh 192.168.0.2
NFS link:
    showmount -e 192.168.0.10; mkdir /tmp/export; mount -t nfs 192.168.0.10:/PATH /tmp/export

====HELP====
SSH help:
    192.168.0.29  ==> SSH-2.0-OpenSSH_6.7p1 Debian-5+deb8u7
HTTP help:
    http://192.168.0.1:80/  ==> 
    http://192.168.0.2:80/  ==> Server: lighttpd/1.4.31
SAMBA help:
    smbclient -L //192.168.0.2 -U guest --no-pass  ==>  smbclient //192.168.0.2/<Sharename> -U guest --no-pass
NFS help:
    showmount -e 192.168.0.10  ==> Exports list on 192.168.0.10:
/home/test                           192.168.0.0/24
MAC help:
192.168.0.1
MAC Address: 18:1E:78:CE:XX:XX (Sagemcom Broadband SAS)
192.168.0.2
MAC Address: 8C:10:D4:D2:XX:XX (Sagemcom Broadband SAS)
192.168.0.10
MAC Address: 8C:10:D4:D2:XX:XX (Sagemcom Broadband SAS)
192.168.0.29
MAC Address: B8:27:EB:28:XX:XX (Raspberry Pi Foundation)

.local resolver

$ ./tools/resolver.sh
192.168.0.2 <=> something.local.
192.168.0.29 <=> iphone-someone.local.

UPNP

If you see your IP in the response, you should disable UPNP immediatly.

$ ./tools/upnp.sh wlp4s0
found 0 associations
found 1 connections:
     1: flags=92<CONNECTED,BOUND_IF,PREFERRED>
  outif (null)
  src 192.168.0.99 port 54830
  dst 239.255.255.250 port 1900
  rank info not available

Connection to 239.255.255.250 port 1900 [udp/ssdp] succeeded!

Be patient, wait a minute... (Ctrl+C to stop)
After the run, you could try a 'tools/upnp_help.sh'

Location: http://192.168.0.10:6060
Name: LABOXDXXX
Server: Sagemcom STB WebService Controler
Location: http://192.168.0.1:80/RootDevice.xml
Server: UPnP/1.0 UPnP/1.0 UPnP-Device-Host/1.0
$ ./tools/upnp_help.sh
Sort Location:
--------------
Location: http://192.168.0.10:6060
Location: http://192.168.0.1:80/RootDevice.xml
Help: curl -svLk  --connect-timeout 2 --max-time 2 -A "" LOCATION

Sort Name:
----------
Name: LABOXDXXX

Sort Server:
----------
Server: Sagemcom STB WebService Controler
Server: UPnP/1.0 UPnP/1.0 UPnP-Device-Host/1.0

Sort source IP:
---------------
192.168.0.1.1900
192.168.0.1.1901
192.168.0.10.53700
192.168.0.2.1900
192.168.0.99.63179

To discover each XML document, you should use https://github.com/tenable/upnp_info

Listener : Display all IPs

$ ./tools/listener.sh
Be patient, wait a minute... (Ctrl+C to stop)
After the run, you could try a 'tools/listener_help.sh'
$ tools/listener_help.sh
Source hosts:
=============
8.8.8.8
127.0.0.1
192.168.0.1
192.168.0.2
192.168.0.10

Destination hosts:
==================
8.8.8.8
127.0.0.1
192.168.0.23
192.168.0.255
255.255.255.255

watcha's People

Contributors

nbeguier avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.