An open API service indexing awesome lists of open source software.

https://github.com/rickidevs/rickmap

faster than nmap ;)
https://github.com/rickidevs/rickmap

Last synced: 4 months ago
JSON representation

faster than nmap ;)

Awesome Lists containing this project

README

          

# 🔎 RickMap (much faster than nmap)

RickMap is an effective port scanning tool that runs on average 15 times faster than Nmap in tests and draws its speed and simplicity from the Go language. It offers a simple solution to modern network scanning needs. Of course, Nmap is a much more comprehensive tool, but a fast port scan will always take you ahead. With nmap , you can take the open ports you find with RickMap a comprehensive scan.

## 💡 Usage

Running RickMap is quite simple! The command can be used as follows:

`rickmap [-p-] [-t timeout_ms]`

#### Arguments

- ``: IP address or range to be scanned (example: 192.168.1.1 or 192.168.1.1-100).

- `-p-`: Scans all 65535 ports. Scans the 1000 most used ports by default.

- `-t` timeout_ms: Sets the scan timeout time in milliseconds. Default: 850 ms.

### Examples

- rickmap 192.168.1.1

- rickmap 192.168.1.1.1-50

- rickmap 192.168.1.1 -p-

- rickmap 192.168.1.1 -t 1000

## Installation

**To install RickMap, follow these steps:**

`git clone https://github.com/Rickidevs/RickMap.git`

`cd RickMap`

`chmod +x setup.sh`

`./setup.sh`

---