
Esegui scansioni automatiche di ricognizione di rete

Esegui scansioni automatizzate di ricognizione di rete per raccogliere intelligence di rete.
IntelSpy è uno strumento di intelligence di rete multi-thread che esegue enumerazione automatizzata dei servizi di rete. Esegue scansioni di rilevamento host attivi, scansioni di porte, scansioni di enumerazione dei servizi, scansioni di contenuti web, brute-forcing, ricerche dettagliate offline di exploit e molto altro.
Lo strumento avvia anche ulteriori scansioni di enumerazione per ogni servizio rilevato utilizzando diversi strumenti.
sudo apt install python3)sudo apt install curl)sudo apt install enum4linux)sudo apt install gobuster)sudo apt install hydra)sudo apt install ldap-utils)sudo apt install medusa)sudo apt install nbtscan)sudo apt install nikto)sudo apt install nmap)sudo apt install onesixtyone)sudo apt install oscanner)sudo apt install pandoc)sudo apt install patator)sudo apt install nfs-common)sudo apt install smbclient)sudo apt install smbmap)sudo apt install smtp-user-enum)sudo apt install snmp)sudo apt install sslscan)sudo apt install sipvicious)sudo apt install tnscmd10g)sudo apt install whatweb)sudo apt install wkhtmltopdf)sudo apt install wpscan)pip3 install -r requirements.txt
$ python3 intelspy.py -h
___ __
| ._ _|_ _ | (_ ._
_|_ | | |_ (/_ | __) |_) \/
| /
IntelSpy v2.0 - Perform automated network reconnaissance scans to gather network intelligence.
IntelSpy is an open source tool licensed under GPLv3.
Written by: @maldevel | Logisek ICT
Web: https://logisek.com | https://pentest-labs.com
Project: https://github.com/maldevel/intelspy
usage: intelspy.py [-h] [-ts TARGET_FILE] -p PROJECT_NAME -w WORKING_DIR
[--exclude <host1[,host2][,host3],...>] [-s SPEED]
[-ct <number>] [-cs <number>] [--profile PROFILE_NAME]
[--livehost-profile LIVEHOST_PROFILE_NAME]
[--heartbeat HEARTBEAT] [-v]
[targets [targets ...]]
positional arguments:
targets IP addresses (e.g. 10.0.0.1), CIDR notation (e.g.
10.0.0.1/24), or resolvable hostnames (e.g.
example.com) to scan.
optional arguments:
-h, --help show this help message and exit
-ts TARGET_FILE, --targets TARGET_FILE
Read targets from file.
-p PROJECT_NAME, --project-name PROJECT_NAME
project name
-w WORKING_DIR, --working-dir WORKING_DIR
working directory
--exclude <host1[,host2][,host3],...>
exclude hosts/networks
-s SPEED, --speed SPEED
0-5, set timing template (higher is faster) (default:
4)
-ct <number>, --concurrent-targets <number>
The maximum number of target hosts to scan
concurrently. Default: 5
-cs <number>, --concurrent-scans <number>
The maximum number of scans to perform per target
host. Default: 10
--profile PROFILE_NAME
The port scanning profile to use (defined in port-
scan-profiles.toml). Default: default
--livehost-profile LIVEHOST_PROFILE_NAME
The live host scanning profile to use (defined in
live-host-scan-profiles.toml). Default: default
--heartbeat HEARTBEAT
Specifies the heartbeat interval (in seconds) for task
status messages. Default: 60
-v, --verbose Enable verbose output. Repeat for more verbosity (-v,
-vv, -vvv).
Scansione di un singolo target
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.15
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.15 -v
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.15 -vv
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.15 -vvv
Scansione di un nome host
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ example.com
Scansione di un intervallo di rete (CIDR)
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.0/24
Scansione di più target (separati da virgola)
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ 192.168.10.15 192.168.10.0/24 example.com
Scansione di target da file
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ -ts /home/user/targets.txt
Esclusione di un singolo host
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ --exclude 192.168.10.9 192.168.10.0/24
Esclusione di più host
sudo python3 intelspy.py -p MyProjectName -w /home/user/pt/projects/ --exclude 192.168.10.9,192.168.10.24 192.168.10.0/24
Ho iniziato a lavorare su IntelSpy quando ho scoperto AutoRecon. Invece di reinventare la ruota, IntelSpy è il risultato della fusione di IntelSpy con le migliori funzionalità di AutoRecon per creare uno strumento di ricognizione di rete adatto per impegni di Penetration Testing.