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

[pull] main from GyulyVGC:main #159

Merged
merged 25 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e994d40
first implementation of services load using phf
GyulyVGC Feb 5, 2024
aa8a82e
draft of services in GUI
GyulyVGC Feb 5, 2024
72a1f55
return the service with the higher score (computed on traffic directi…
GyulyVGC Feb 5, 2024
8d56c44
feat: created Service enum
GyulyVGC Feb 6, 2024
a006394
refactor: renamed all occurrences of app protocol to service
GyulyVGC Feb 6, 2024
f58e507
update include directive in Cargo.toml
GyulyVGC Feb 6, 2024
8216c9c
cleaned up .gitignore
GyulyVGC Feb 6, 2024
1107817
created ServiceQuery to act as map key and validate services.txt
GyulyVGC Feb 7, 2024
502140a
minor improvements
GyulyVGC Feb 7, 2024
13aac1b
improve services.txt validation
GyulyVGC Feb 7, 2024
2008135
added tests about network services
GyulyVGC Feb 8, 2024
9f3b445
feat: profanity check service names; completely tested get_service
GyulyVGC Feb 8, 2024
1f77613
refactor: moved search_parameters from networking folder to report fo…
GyulyVGC Feb 9, 2024
60bae95
use contains for all input filters by default; prepend equal prefix w…
GyulyVGC Feb 9, 2024
0bbfaf0
fix new Rust 1.76 clippy lints
GyulyVGC Feb 9, 2024
516fea4
minor fixes
GyulyVGC Feb 9, 2024
485fbda
updated get_service_entries: only show top 30 and normally sort the u…
GyulyVGC Feb 9, 2024
3e2fc4d
minor improvements to col_host and col_service in overview page
GyulyVGC Feb 9, 2024
a7bd130
fixed and testes get_bars_length in overview page
GyulyVGC Feb 10, 2024
d26707d
minor fixes
GyulyVGC Feb 10, 2024
d5b8e4c
rerun buil.rs when windows icon changes; added tests about IpVersion …
GyulyVGC Feb 10, 2024
d8fece2
updated CHANGELOG
GyulyVGC Feb 10, 2024
5a62933
Merge pull request #450 from GyulyVGC/services-phf
GyulyVGC Feb 11, 2024
befb9fa
build(deps): bump toml from 0.8.9 to 0.8.10
dependabot[bot] Feb 11, 2024
adfdf65
Merge pull request #448 from GyulyVGC/dependabot/cargo/main/toml-0.8.10
GyulyVGC Feb 11, 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
Prev Previous commit
Next Next commit
minor fixes
  • Loading branch information
GyulyVGC committed Feb 9, 2024
commit 516fea4d708822dd40fa14872b03f7517f1eb457
2 changes: 1 addition & 1 deletion services.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env zsh
#!/bin/bash

# Script used to generate the file ./services.txt
# The source for port-to-service mappings is provided by nmap
Expand Down
1 change: 0 additions & 1 deletion src/translations/translations_3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ pub fn filter_by_host_translation(language: Language) -> &'static str {
}
}

// referred to a network service like https, dns, and similar
pub fn service_translation(language: Language) -> &'static str {
match language {
Language::EN => "Service",
Expand Down