Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(network scan): A working scanner with ping, port discovery, broadcast, and netbios #683

Merged
merged 46 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
bc31f68
Network Scanner finished
irvingoujAtDevolution Feb 5, 2024
4c60074
Cargo.lock
irvingoujAtDevolution Feb 5, 2024
cda38e5
update cargo
irvingoujAtDevolution Feb 5, 2024
178c6c0
remove drop runtime
irvingoujAtDevolution Feb 5, 2024
7c6f256
checkout master for examples
irvingoujAtDevolution Feb 5, 2024
c9d7af4
checkout master for tests
irvingoujAtDevolution Feb 5, 2024
2d2f054
fix ci test
irvingoujAtDevolution Feb 5, 2024
b145e36
clippy and fmt
irvingoujAtDevolution Feb 5, 2024
20df4fd
Fix Runtime Logic
irvingoujAtDevolution Feb 5, 2024
e68b37d
fix connect logic
irvingoujAtDevolution Feb 5, 2024
00e2865
review fix
irvingoujAtDevolution Feb 5, 2024
a9c41a9
Update test.rs
irvingoujAtDevolution Feb 5, 2024
6325c7f
Debuggin test
irvingoujAtDevolution Feb 5, 2024
a227487
CI and Review fix
irvingoujAtDevolution Feb 5, 2024
66249d6
Fix tests
irvingoujAtDevolution Feb 5, 2024
d05cf0b
Fix linux test
irvingoujAtDevolution Feb 5, 2024
d92ec84
remove code not related to PR
irvingoujAtDevolution Feb 5, 2024
1b37f06
small fixes, change log level
irvingoujAtDevolution Feb 5, 2024
2411062
clippy
irvingoujAtDevolution Feb 5, 2024
14277e0
Merge branch 'master' into Network-Scan-Scanner
irvingoujAtDevolution Feb 6, 2024
fd41583
Update crates/network-scanner-proto/Cargo.toml
irvingoujAtDevolution Feb 6, 2024
8d5e3ce
Fix, add task mamanger
irvingoujAtDevolution Feb 7, 2024
857510c
remove dashmap
irvingoujAtDevolution Feb 7, 2024
7f36173
Update crates/network-scanner-proto/README.md
irvingoujAtDevolution Feb 7, 2024
1d0f4e1
Merge branch 'Network-Scan-Scanner' of github.com:Devolutions/devolut…
irvingoujAtDevolution Feb 7, 2024
29a227c
remove unnecessary count
irvingoujAtDevolution Feb 7, 2024
1dac52d
update polling
irvingoujAtDevolution Feb 7, 2024
8941a61
fix linux
irvingoujAtDevolution Feb 7, 2024
a68569f
fix linux
irvingoujAtDevolution Feb 7, 2024
a81b396
fix linux
irvingoujAtDevolution Feb 7, 2024
bb515c0
review fixes
irvingoujAtDevolution Feb 9, 2024
28634b9
fix examples
irvingoujAtDevolution Feb 9, 2024
2efeb0c
Update crates/network-scanner/src/task_utils.rs
irvingoujAtDevolution Feb 9, 2024
f298fa2
review fix
irvingoujAtDevolution Feb 9, 2024
5104f51
Merge branch 'Network-Scan-Scanner' of github.com:Devolutions/devolut…
irvingoujAtDevolution Feb 9, 2024
b607462
review fix
irvingoujAtDevolution Feb 9, 2024
e646b99
review fix
irvingoujAtDevolution Feb 9, 2024
ffe8982
review fix and better tracing
irvingoujAtDevolution Feb 9, 2024
06a10fd
merge master
irvingoujAtDevolution Feb 9, 2024
bdc9edf
review fix
irvingoujAtDevolution Feb 9, 2024
586f64d
review fix
irvingoujAtDevolution Feb 9, 2024
657d46f
review fix
irvingoujAtDevolution Feb 9, 2024
a541598
adjust queue size
irvingoujAtDevolution Feb 9, 2024
58cf8d7
add netbios interval
irvingoujAtDevolution Feb 9, 2024
ef29417
add dns resolver
irvingoujAtDevolution Feb 9, 2024
877ebe3
Fix dependencies
CBenoit Feb 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 111 additions & 0 deletions Cargo.lock
irvingoujAtDevolution marked this conversation as resolved.
Show resolved Hide resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/network-scanner-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ publish = false
[dependencies]
anyhow = "1.0.79"
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
dashmap = "5.5.3"
futures = "0.3.30"
parking_lot = "0.12.1"
polling = { git = "https://github.com/smol-rs/polling", rev = "62430fd56e668559d08ca7071ab13a0e116ba515" }
Expand Down
Loading
Loading