Pavel Rochnyak

Results 33 comments of Pavel Rochnyak

``` --- Common.pm.orig 2018-12-04 19:30:34.000000000 +0000 +++ Common.pm.new 2020-02-26 18:28:07.993486936 +0000 @@ -79,6 +79,12 @@ $subInstance->{disk} = 1; $subInstance->{virt} = 1; +BEGIN { + unless (defined &CGI::multi_param) { + *Collectd::Graph::Common::multi_param...

>Would you mind updating the PR? I think I have no permissions for that, sorry.

>Added in CGI-4.08 on 2014-10-18: >http://cpansearch.perl.org/src/LEEJO/CGI-4.36/Changes > >Newer CGI module present in Ubuntu 16.04LTS and Debian Jessie. @dago, however regarding the need of this trick: I think it can be...

You did not specify a curl version. That might be useful to look for memleaks in curl too.

>Command seems to be missing first two digits 0xA659 vs 0x59 ; 0xBA45 vs 0x45 ; 0xA758 vs 0x58 0xA6 = 0x59 xor 0xFF 0xBA = 0x45 xor 0xFF 0xA7...

>Not all remotes do the xor thing to the address field. The value can be a true 16-bit value. Do they use the trick so that the number of zeros...

Just tried my available router (connection established from Debian 7 environment, same from Debian 8, yes, they both a quite outdated): ``` # openssl s_client -connect mikrotic:8729 CONNECTED(00000003) depth=0 C...

Some useful examples: I can reproduce `alert number 40` adding `-ssl3` option: ``` # openssl s_client -connect router:8729 -ssl3 CONNECTED(00000003) 3073889980:error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure:s3_pkt.c:1315:SSL alert number 40 3073889980:error:1409E0E5:SSL routines:SSL3_WRITE_BYTES:ssl...

Useful reading: https://www.openssl.org/docs/man1.1.0/ssl/TLS_client_method.html > The SSLv3 protocol is deprecated and should generally not be used. Applications should typically use SSL_CTX_set_min_proto_version to set the minimum protocol to at least TLS1_VERSION. Can...

`140039919550656:error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure:../ssl/record/rec_layer_s3.c:1407:SSL alert number 40` `ssl3`, `sslv3`, `rec_layer_s3` .... This looks strange >)