config: update config and add more scans#115
Open
ikstream wants to merge 2 commits into4elta:developfrom
Open
Conversation
Signed-off-by: ikstream <stefan.venz@protonmail.com>
4elta
requested changes
Nov 4, 2025
Owner
4elta
left a comment
There was a problem hiding this comment.
thanks for your contribution.
please have a look at my comments 🙏
config/scanner.toml
Outdated
| name = 'nikto' | ||
| transport_protocol = 'tcp' | ||
| command = 'nikto -ask no -Cgidirs all -host {hostname} -port {port} -nointeractive -Format json -output "{result_file}.json" 2>&1 | tee "{result_file}.log"' | ||
| command = '#nikto -ask no -Cgidirs all -host {hostname} -port {port} -nointeractive -Format json -output "{result_file}.json" 2>&1 | tee "{result_file}.log"' |
Owner
There was a problem hiding this comment.
i like that you "disabled" Nikto again, after we've enabled it not so long ago 😁
perhaps, it's better to move it to config/scanner/additional.toml (enabled).
config/scanner.toml
Outdated
| [[services.scans]] | ||
| name = 'nmap' | ||
| command = 'nmap -Pn -sV -p {port} --script="banner,smtp* and not (brute or broadcast or dos or external or fuzzer)" -oN "{result_file}.log" -oX "{result_file}.xml" {address}' | ||
| command = 'nmap -Pn -sV -p {port} --script="banner,smtp* and not (brute or dos or exploit)" -oN "{result_file}.log" -oX "{result_file}.xml" {address}' |
Owner
There was a problem hiding this comment.
why did you remove the external filter from the SMTP script scan?
for example, smtp-open-relay would send mail to nmap.scanme.org.
Owner
|
i found the services in |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR will add additional scans, especially useful for internal penetrationtests and exposed ports during external tests.