inqrphl

Results 15 comments of inqrphl

You have to use the asyncvnc.keyboard.hold context manager ```python with vnc_client.keyboard.hold("Control_L"): vnc_client.keyboard.press("a") ``` Or alternatively, if you want to use the key mappings found here: https://github.com/barneygale/asyncvnc/blob/main/asyncvnc.py#L21 ```python with vnc_client.keyboard.hold("Ctrl"): vnc_client.keyboard.press("a")...

Looking into the code, the condition checks are written into a snclient.Condition. Sending a query like this ``` check_files ' path="/tmp/snclient-test/" ' ' filter="written>today" ' ``` At condition.go:324 the debugger...

I implemented a function at the end of checkdata:parseArgs. It functions like other TransformKeywords functions, and transforms the values for check functions. I think thats the most logical and least...

I only tested it on Linux. Is this behavior expected from Windows as well? This checks Implemented field is set to ALL. On windows it uses the definitions made in...

Related issues are #2208 and #2193 This PR was originally intended to fix this issue, but I later realized it would be hard to ascertain if a proxy is used...

Added a variable called proxy_resolves_hostname, which is determined by proxy scheme specified in CURLOPT_PROXY documentation. With Http, https , socks4a , and socks5h schemes, the proxy resolves the hostname. Tested...

Removed these unused handle_curl_easyoption and format_curl_easyoption functions. They were just being used to check CURLOPT_PROXY type, name and flags. Its output was not being used during the check. The rest...

### Check_curl with --onredirect=curl ```bash $ ~/repositories/monitoring-plugins/plugins/check_curl -H mail.google.com -u '/chat' -t 60 -w 10 -c 10 --ssl --sni --onredirect=curl -4 -vvv | tee check_curl_onredirect_curl.log * Set SSL/TLS version to...

Looking at the redirection chain for the different runs: ### Check_http with --onredirect=follow ``` https://mail.google.com:443/chat is 405 characters STATUS: HTTP/1.1 302 Found https://mail.google.com:443/chat/ is 381 characters STATUS: HTTP/1.1 301 Moved...

On check_curl.c after a redirect a new URI is generated part by part. It skips the query part of the URI, which was already acknowledged by the comment on the...