Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 45b9dd32 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Update README.md

parent ea535a15
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,16 @@ adds the following options:
- source interface (needs root permissions)
- perfometer
**Note: Source address and source interface uses the "shell=True" option in in the "subprocess.Popen" command. This is highly insecure, so be careful.**
**Note: Source address and source interface uses the "shell=True" option in in the "subprocess.Popen" command. This is insecure, so be careful.**
To disable this options you need to comment out the line `shell = True` in [~/lib/nagios/plugins/check_traceroute](https://thl-cmk.hopto.org/gitlab/checkmk/vendor-independent/active_check_traceroute/-/blob/master/lib/nagios/plugins/check_traceroute) like this.
```
if (source_int is not None) or (source_addr is not None):
cmd = ' '.join(cmd)
# shell = True
```
**Note**: the original TCP path trace option also needs root permisions.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment