World’s first one of it’s kind Network Automation as a Service (NaaaS).
DEDMAP is a Simple but Powerful, Clever and Flexible Cross-Platform Port Scanning tool made with ease to use and convenience in mind.
Both TCP and UDP protocols have 0 to 65535 ports. These 65535 ports can be divided into the following three ranges:-
- System or reserved ports: from 0 to 1023
- User or registered ports: from 1024 to 49151
- Dynamic or private ports: from 49151 to 65535
DEDMAP tries to scan a target IP or range of IP’s and find services that are running and listening on some ports.
DEDMAP can also scan a range of hosts to find live hosts.
Requirements
Installation
- Download the latest release from RELEASES
- Extract the archive
- Follow the steps below
$ cd DEDMAP
$ chmod +x install.sh
$ ./install.sh
- Follow the above steps using termux-install.sh if installing for termux
All the additional requirements will be installed automatically. Just execute the “install.sh”.
The tool can be run without installing as well (./dedmap) but it is recommended to install it. After installing the tool, the color of the DEDMAP banner will change from WHITE to RED.
Update the tool by downloading the latest release and re-installing it again.
Using the tool in Windows
- Initially, Double-Click or launch the dedmap.bat once from a command-prompt for installing the requirements.
- Subsequent to the above step, Lauch the tool using
dedmap
orpython dedmap
command from a command-prompt inside the dedmap root directory.
Uninstallation
- Follow the steps below
$ cd DEDMAP
$ chmod +x uninstall.sh
$ ./uninstall.sh
- Follow the above steps using termux-uninstall.sh if uninstalling for termux
Highlights
- Full Support for Linux, Windows & Android devices (via termux)
- Supports web-api calls (platform-less on-demand interaction)
- World’s first one of it’s kind Network Automation as a Service (NaaaS)
- Easy to host & deploy as a service on the cloud / your private server.
- Packed with lots of additional features all in one place
- Supports IP-RANGES (1.1.1.1-100)
- Supports Network Scanning (Ping Sweep)
- Has a Dark-Web mode. The dark-web mode can be used to perform all the operations of dedmap seamlessly on dark-web (.onion) sites without any need of the tor browser
- Has a turbo mode (LAN mode) for network scanning. The turbo mode can be used both in LAN and wan but it is recommended to use only in LAN as it may decrease the accuracy of the scan in a wan network.
- The wan mode can also be used in a LAN network for more accurate results. Lan mode = Performance, Wan mode = Accuracy.
- Is flexible. Multiple scanning options can be combined based on requirements.
- Is clever. Scans only the live targets if a network scan is combined with other scans.
- Has a very intuitive and user-friendly Command-Line Interface. Also has a web interface for those who are not comfortable with CLI
- Lists all the probable services/protocols being used by the respective open ports which are discovered.
- Supports Verbose mode
- Supports Saving the Output to a file. (The file generated is a dedmap file. cat/type it to view it’s contents properly in a shell environment)
- Supports various port specification options
- Is colorful. Provides colored event-based visual responses
LEGEND/Color schemes
- BLUE –> FOR MARKING THE SUCCESSFUL STARTING AND COMPLETION OF THE PROGRAM
- RED –> FOR MARKING STARTING/ENDING OF AN EVENT OR ERROR
- GREEN –> FOR MARKING A SUCCESSFUL HOST/PORT DISCOVERY AND HELP MENU
- RESET –> FOR RESETTING TO DEFAULT SHELL COLOR
- GRAY –> FOR MARKING AN UNSUCCESSFUL HOST/PORT DISCOVERY IN VERBOSE MODE
- YELLOW –> FOR MARKING DEBUGGING STATEMENTS
Usage
$ dedmap [--option(s)] [target(s)]
- By default, a TCP scan will be performed if no options are provided.
- -t option must be exclusively provided if any other option is used like -p or -v or -n.
- By default, the top 100 commonly used ports will be scanned if no ports are specified.
- Long Options (–) have more priority.
Options
-h
,--help
show this help message and exit-b
,--black
turn on dark-web mode-s
,--silent
run in silent mode (remove the dedmap banner)-v
,--verbose
run in verbose mode-d
,--dns
performs a DNS lookup-r
,--rdns
performs a reverse dns lookup-p
,--port<port(s)>
only scan specified port(s)
Examples:
-p 21; -p 21,22,23;
-p top10
; (scan top 10 commonly used ports)-p top100
; (scan top 100 commonly used ports)-p top1000
; (scan top 1000 commonly used ports)-p system
; (scan system ports from 0 to 1023)-p user
; (scan user ports from 1024 to 49151)-p private
; (scan private ports from 49152 to 65535)-p all
; (scan all ports from 0 to 65535)
More
-t
,--tcp
perform a TCP scan (default scan if NO OPTIONS are specified)-u
,--udp
perform a UDP scan (Doesn’t seems to work as of now using the socket in python)-n
,--net
perform a network scan-m
,--mode<wan/lan>
select the mode for network scan (default = wan)
Select lan mode(turbo mode) for better scanning speeds (upto 5x)
It is recommended to use the turbo mode only on a lan network as it might result in loss of accuracy in wan networks
- Ex:
-nm lan; -nm wan;
More
-o
,--out
saves the results in a file- Ex:
-o report
Examples
Combine the options according to your requirements. DEDMAP is flexible and clever enough 🙂
$ dedmap 1.1.1.1
$ dedmap localhost
$ dedmap -d google.com yahoo.com facebook.com localhost
$ dedmap google.com
$ dedmap google.com yahoo.com
$ dedmap 1.1.1.1 2.2.2.2 3.3.3.3
$ dedmap 1.1.1.1-100 google.com (Perform a tcp scan on all the hosts without pinging to bypass firewall icmp block)
$ dedmap -tp 20 1.1.1.1
$ dedmap -tp top10 2.2.2.2
$ dedmap -tp 20,21,22 1.1.1.1
$ dedmap -nm lan -p 21 192.168.1.1-255 (Perform a tcp port scan in lan mode on all the live hosts)
$ dedmap -n 1.1.1.1-255
$ dedmap -nr 1.1.1.1-255 (Perform a reverse dns lookup on all the live targets in the network)
$ dedmap -nt 1.1.1.0-255 (To scan only the hosts which are alive in the network)
$ dedmap -o report 127.0.0.1
Additional Notice
- The output file generated is a dedmap file. Cat/Print it to view it’s contents properly in a shell environment.
- This tool is expected to have lots of bugs as it is in a very early stage.
- This tool has not been tested in Windows yet and will not work most probably. Feel free to experiment.