https://github.com/xtuc/nmap
Nmap clone written in Scala
https://github.com/xtuc/nmap
Last synced: over 1 year ago
JSON representation
Nmap clone written in Scala
- Host: GitHub
- URL: https://github.com/xtuc/nmap
- Owner: xtuc
- Created: 2016-04-18T16:35:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-18T16:49:32.000Z (over 10 years ago)
- Last Synced: 2025-03-17T11:52:46.814Z (over 1 year ago)
- Language: Scala
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## [Nmap](https://nmap.org) clone written in Scala
The application uses Actors to dispatch pings throught multiple threads. This project has an educatif goals.
### Added features
- Support IP subnet
- SLOC In Scala
### Usage
**nmap.jar [host(s)] [port|port start] ([port end])**
Check if the port 80 is open on your local host.
```shell
nmap.jar localhost 80
```
Check if ports 21 to 80 are open on your local host
```shell
nmap.jar localhost 21 80
```
Check if port 22 is open on your entier network
```shell
nmap.jar 192.168.1.0/24 22
```
### Known issues
- Hostname resolve doesn't work with subnet
- No thread spawn limitation with ping sender Actor
- Can't use remote Actors since a lock is used