https://github.com/rickidevs/rickmap
faster than nmap ;)
https://github.com/rickidevs/rickmap
Last synced: 4 months ago
JSON representation
faster than nmap ;)
- Host: GitHub
- URL: https://github.com/rickidevs/rickmap
- Owner: Rickidevs
- Created: 2025-01-09T19:44:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-10T10:08:11.000Z (over 1 year ago)
- Last Synced: 2025-06-02T11:07:29.641Z (12 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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`
---