-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fa64c8
commit b552da4
Showing
4 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,43 @@ | ||
# r-lanscan | ||
# R-LANSCAN/ | ||
|
||
An ARP and SYN network scanning library and cli written in rust! This is the | ||
An ARP and SYN network scanning library, cli, and ui written in rust! This is the | ||
rust version of [go-lanscan] | ||
|
||
**Table of contents** | ||
- [R-LANSCAN/](#r-lanscan) | ||
- [Projects](#projects) | ||
- [Testing](#testing) | ||
|
||
# Projects | ||
|
||
- [r-lanlib](./r-lanlib/README.md) | ||
- [r-lanscan](./r-lanscan/README.md) | ||
- [r-lanui](./r-lanui/README.md) | ||
|
||
# Testing | ||
|
||
Prerequisites | ||
|
||
- install llvm-cov | ||
|
||
```zsh | ||
cargo +stable install cargo-llvm-cov --locked | ||
``` | ||
|
||
Run tests | ||
|
||
```zsh | ||
# Run all tests | ||
cargo test | ||
|
||
# Run all tests and print coverage | ||
cargo llvm-cov | ||
|
||
# Run all tests and generate html report | ||
cargo llvm-cov --html | ||
|
||
# Run tests for specific project | ||
cargo test -p r-lanlib | ||
``` | ||
|
||
[go-lanscan]: https://github.com/robgonnella/go-lanscan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# R-LANLIB | ||
|
||
Library package for performing ARP and SYN scanning of a LAN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# R-LANSCAN | ||
|
||
CLI for performing ARP and SYN scanning of LAN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# R-LANUI | ||
|
||
UI for discovering and managing on premise LAN devices |