Giter Site home page Giter Site logo

Comments (29)

nwtgck avatar nwtgck commented on August 25, 2024

Coud you request an HTTP request instead of HTTPS request?

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

Coud you request an HTTP request instead of HTTPS request?

I will test that

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thanks. I face this issue too. I empirically know HTTPS server has this issue but HTTP does not. Unfortunetlly, my issue has low reproducibility to fix this.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

Yes the Http port is good , but the Https port hangs

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thank you so much for the confirmation. I'm sure we have the same problem.

I'd like to reproduce the problem. It may be caused by the underlying labraries. Do you have steps to reproduce? I just wait for a long time (over 20 days) to see the problem.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

/usr/bin/piping-server --https-port 443 --crt-path /root/.acme.sh/xxxxxxxx.com/fullchain.cer --key-path /root/.acme.sh/xxxxxxxx.com/xxxxxxxx.com.key --enable-https &>/tmp/piping-server.log

just using this cmd line and wait for about 12 hours

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024
strace -fp 2129
strace: Process 2129 attached with 5 threads
[pid  2133] clock_gettime(CLOCK_MONOTONIC,  <unfinished ...>
[pid  2132] futex(0x7fec3e6cf4c4, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid  2131] futex(0x555555ad0768, FUTEX_WAIT_PRIVATE, 4294967295, NULL <unfinished ...>
[pid  2130] clock_gettime(CLOCK_MONOTONIC,  <unfinished ...>
[pid  2129] futex(0x7fff4d99e424, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid  2133] <... clock_gettime resumed> {tv_sec=5072295, tv_nsec=80092917}) = 0
[pid  2130] <... clock_gettime resumed> {tv_sec=5072295, tv_nsec=80090405}) = 0
[pid  2133] epoll_pwait(9,  <unfinished ...>
[pid  2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid  2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072303, tv_nsec=542143321}) = 0
[pid  2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid  2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072309, tv_nsec=389642706}) = 0
[pid  2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid  2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072311, tv_nsec=725246539}) = 0
[pid  2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid  2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072313, tv_nsec=514804986}) = 0
[pid  2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid  2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072317, tv_nsec=905053641}) = 0

just repeat this

[pid 2133] epoll_pwait(9, <unfinished ...>
[pid 2130] epoll_pwait(3, [{EPOLLIN, {u32=0, u64=0}}], 1024, -1, NULL, 8) = 1
[pid 2130] clock_gettime(CLOCK_MONOTONIC, {tv_sec=5072303, tv_nsec=542143321}) = 0

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thank you so much for the detail! Could you tell me what /usr/bin/piping-server is? Is it the binary distributed in the GitHub Releases?

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

Thank you so much for the detail! Could you tell me what /usr/bin/piping-server is? Is it the binary distributed in the GitHub Releases?

No . I built the static binary of git version fb1feb9

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thanks. I'm trying RUST_LOG=trace piping-server ... to get verbose log.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

here is my log
piping-server.log.gz

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thanks! I should read it.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

We need to test a simple HTTP server with hyper. This should reveal where the problem lies.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

I made a simple HTTPS server with hyper:
https://github.com/nwtgck/public-code/tree/c4db274cd3ddb94cf98792a7a98b11ebf356e551/simple-hyper-https-server

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

I made a simple HTTPS server with hyper: https://github.com/nwtgck/public-code/tree/c4db274cd3ddb94cf98792a7a98b11ebf356e551/simple-hyper-https-server

Is it helpful for the piping-server-rust ?

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

@bhzhu203
Yes.
It is an HTTPS server which has the same implementation as Piping Server.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

When will it be updated to piping-server-rust ? : )

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

clap is updated agressively after clap 4 released. I'm waiting for clap being calm.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024
[2023-04-27T17:45:36Z INFO  piping_server::piping_server] Transfer end: '/dns-query'
[2023-04-27T17:45:36Z INFO  piping_server::piping_server] POST /dns-query HTTP/1.1
[2023-04-27T17:45:37Z INFO  piping_server::piping_server] GET /dns-query?name=example.com&type=A HTTP/1.1
thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: TrySendError { kind: Disconnected }', /home/bhzhu/source/piping-server-rust/src/piping_server.rs:233:34
[2023-04-27T17:45:37Z INFO  piping_server::piping_server] GET /dns-query?name=example.com&type=A HTTP/1.1
[2023-04-27T17:45:42Z INFO  piping_server::piping_server] GET /query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:45:47Z INFO  piping_server::piping_server] GET /query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:45:48Z INFO  piping_server::piping_server] POST /query HTTP/1.1
[2023-04-27T17:45:48Z INFO  piping_server::piping_server] Transfer start: '/query'
thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: Response { status: 200, version: HTTP/1.1, headers: {"content-type": "application/dns-message", "content-length": "29", "access-control-allow-origin": "*", "x-robots-tag": "none"}, body: Body(Streaming) }', /home/bhzhu/source/piping-server-rust/src/piping_server.rs:499:49
[2023-04-27T17:45:48Z INFO  piping_server::piping_server] POST /query HTTP/1.1
[2023-04-27T17:45:49Z INFO  piping_server::piping_server] GET /query?name=example.com&type=A HTTP/1.1
thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: TrySendError { kind: Disconnected }', /home/bhzhu/source/piping-server-rust/src/piping_server.rs:233:34
[2023-04-27T17:45:49Z INFO  piping_server::piping_server] GET /query?name=example.com&type=A HTTP/1.1
[2023-04-27T17:45:54Z INFO  piping_server::piping_server] GET /resolve?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:45:59Z INFO  piping_server::piping_server] GET /resolve?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:46:00Z INFO  piping_server::piping_server] POST /resolve HTTP/1.1
[2023-04-27T17:46:00Z INFO  piping_server::piping_server] Transfer start: '/resolve'
thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: Response { status: 200, version: HTTP/1.1, headers: {"content-type": "application/dns-message", "content-length": "29", "access-control-allow-origin": "*", "x-robots-tag": "none"}, body: Body(Streaming) }', /home/bhzhu/source/piping-server-rust/src/piping_server.rs:499:49
[2023-04-27T17:46:00Z INFO  piping_server::piping_server] POST /resolve HTTP/1.1
[2023-04-27T17:46:01Z INFO  piping_server::piping_server] GET /resolve?name=example.com&type=A HTTP/1.1
thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: TrySendError { kind: Disconnected }', /home/bhzhu/source/piping-server-rust/src/piping_server.rs:233:34
[2023-04-27T17:46:01Z INFO  piping_server::piping_server] GET /resolve?name=example.com&type=A HTTP/1.1
[2023-04-27T17:46:06Z INFO  piping_server::piping_server] GET /?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:46:07Z INFO  piping_server::piping_server] GET /?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1
[2023-04-27T17:46:07Z INFO  piping_server::piping_server] POST / HTTP/1.1
[2023-04-27T17:46:08Z INFO  piping_server::piping_server] POST / HTTP/1.1
[2023-04-27T17:46:08Z INFO  piping_server::piping_server] GET /?name=example.com&type=A HTTP/1.1
[2023-04-27T17:46:09Z INFO  piping_server::piping_server] GET /?name=example.com&type=A HTTP/1.1
[2023-04-27T18:08:16Z ERROR piping_server] Client connection error: Connection reset by peer (os error 104)
[2023-04-27T18:08:18Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2023-04-27T18:08:18Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2023-04-27T18:08:18Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2023-04-27T18:18:36Z INFO  piping_server::piping_server] GET /webclient/ HTTP/1.1
[2023-04-27T18:58:04Z ERROR piping_server] Client connection error: tls handshake eof
[2023-04-27T19:10:04Z WARN  rustls::conn] Sending fatal alert HandshakeFailure
[2023-04-27T19:10:04Z ERROR piping_server] Client connection error: peer is incompatible: client didn't describe signature schemes
[2023-04-27T19:23:50Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2023-04-27T19:34:53Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:53Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:53Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:54Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:54Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:54Z ERROR piping_server] Client connection error: received corrupt message
[2023-04-27T19:34:55Z ERROR piping_server] Client connection error: tls handshake eof
[2023-04-27T20:33:35Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2023-04-27T20:48:20Z INFO  piping_server::piping_server] GET /actuator/health HTTP/1.1
[2023-04-27T20:51:14Z ERROR piping_server] Client connection error: tls handshake eof
[2023-04-27T21:09:52Z WARN  rustls::conn] Sending fatal alert HandshakeFailure
[2023-04-27T21:09:52Z ERROR piping_server] Client connection error: peer is incompatible: client didn't describe signature schemes

version piping-server 0.15.1-SNAPSHOT . SSL port hangs again .The good thing is that this version can be stable for 3+ days now , but finally SSL port hanging.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thank you for continuous reporting.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

stable for 3+ days now

It is similar to my case. My server is stable for some days too. So I'm not sure how to reproduce.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

stable for 3+ days now

It is similar to my case. My server is stable for some days too. So I'm not sure how to reproduce.

How to output debug log ?

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

@bhzhu203 You can use RUST_LOG=debug piping-server ... because the server uses env_logger for now.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Stable for 10 days in the current develop branch.
The develop branch uses hyper 1.x.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

0.17.0 released! This should fix the issue. The server ran for two weeks at least without hanging.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

0.17.0 released! This should fix the issue. The server ran for two weeks at least without hanging.

Thanks , I will test it . Could I know what cause the issue ?

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

Thanks, 0.17.0 runs for 8 days in my environment.

Could I know what cause the issue ?

I'm not sure what caused this. My guess is that hyper 0.14, which is used internally, caused this problem. piping-server 0.17.0 uses hyper 1.x, not hyper 0.14. But other libraries and piping server implementation were also updated too.

from piping-server-rust.

nwtgck avatar nwtgck commented on August 25, 2024

@bhzhu203
Unfortunately, 0.17.0 still has the issue.

from piping-server-rust.

bhzhu203 avatar bhzhu203 commented on August 25, 2024

Yes, there is still the hanging issue. But I have gotten the more detail output by setting "export RUST_BACKTRACE=full"

[2024-02-27T02:17:05Z INFO  piping_server] Piping Server (Rust) 0.17.1-SNAPSHOT
[2024-02-27T02:17:05Z INFO  piping_server] HTTP server is listening on 8080...
[2024-02-27T02:17:05Z INFO  piping_server] HTTPS server is listening on 443...
[2024-02-27T02:34:06Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T02:40:58Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T02:40:58Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T02:53:55Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-27T02:53:58Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T04:56:52Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T05:20:51Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T05:27:55Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T05:52:03Z INFO  piping_server::piping_server] GET /autodiscover/autodiscover.json?@zdi/Powershell HTTP/1.1
[2024-02-27T05:52:08Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-27T05:57:30Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T06:29:13Z INFO  piping_server::piping_server] GET /version HTTP/1.1
[2024-02-27T06:38:55Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T06:39:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T06:39:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T06:39:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T06:39:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T06:39:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T07:15:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T07:39:39Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T08:31:14Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T08:33:03Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T08:48:27Z INFO  piping_server::piping_server] GET /actuator/health HTTP/1.1
[2024-02-27T08:48:32Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T09:29:55Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T09:57:52Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-27T10:23:49Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T10:23:49Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T10:54:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T11:50:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T12:03:43Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-27T12:12:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T12:12:38Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T13:06:22Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T13:16:58Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-02-27T13:17:08Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T13:42:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T13:42:51Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-27T13:42:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T13:42:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T13:42:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T13:42:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(MissingData("ClientHelloPayload")) }
[2024-02-27T13:53:18Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T13:57:21Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-27T14:29:11Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:35:21Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T14:35:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T14:43:10Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T14:52:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T15:18:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T15:50:04Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T15:50:04Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T16:29:06Z INFO  piping_server::piping_server] GET /robots.txt HTTP/1.1
[2024-02-27T17:07:13Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:07:23Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:07:41Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:07:53Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-27T17:08:06Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:08:19Z INFO  piping_server::piping_server] GET /manage/account/login HTTP/1.1
[2024-02-27T17:08:24Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:08:36Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:08:49Z INFO  piping_server::piping_server] GET /admin/index.html HTTP/1.1
[2024-02-27T17:08:55Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:09:12Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:09:25Z INFO  piping_server::piping_server] GET /index.html HTTP/1.1
[2024-02-27T17:09:30Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:09:43Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:09:53Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T17:09:55Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:55Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:09:56Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:56Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:09:56Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:56Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:09:57Z INFO  piping_server::piping_server] GET /+CSCOE+/logon.html HTTP/1.1
[2024-02-27T17:09:57Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:57Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:09:57Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:57Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:09:58Z ERROR piping_server] Failed to serve HTTPS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-27T17:09:59Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:09:59Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:00Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:00Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:01Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:01Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:02Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:02Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:02Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:02Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:02Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:10:03Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:03Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:04Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T17:10:06Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(MissingData("ClientHelloPayload")) }
[2024-02-27T17:10:08Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:10Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:10Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:12Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:14Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:14Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:15Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T17:10:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:10:23Z INFO  piping_server::piping_server] GET /robots.txt HTTP/1.1
[2024-02-27T17:10:28Z INFO  piping_server::piping_server] GET /sitemap.xml HTTP/1.1
[2024-02-27T17:10:29Z INFO  piping_server::piping_server] GET /cgi-bin/login.cgi HTTP/1.1
[2024-02-27T17:10:35Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:10:40Z INFO  piping_server::piping_server] GET /.well-known/security.txt HTTP/1.1
[2024-02-27T17:10:46Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:10:52Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-27T17:10:52Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-27T17:10:53Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-27T17:10:54Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-27T17:10:56Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-27T17:10:58Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:10:58Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:10:59Z INFO  piping_server::piping_server] GET /logon.htm HTTP/1.1
[2024-02-27T17:11:05Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:11:18Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:11:31Z INFO  piping_server::piping_server] GET /login.jsp HTTP/1.1
[2024-02-27T17:11:36Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:11:49Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:12:04Z INFO  piping_server::piping_server] GET /doc/index.html HTTP/1.1
[2024-02-27T17:12:09Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T17:12:25Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T17:12:39Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T17:19:08Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:08Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:09Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:10Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:10Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:10Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T17:19:10Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T17:19:10Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-27T17:28:46Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-27T17:28:51Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T17:28:51Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Shutdown, Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" })
[2024-02-27T17:28:55Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T17:28:57Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-27T17:46:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(MissingData("ClientHelloPayload")) }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-27T17:46:12Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-27T18:34:23Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T18:39:32Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T19:02:23Z INFO  piping_server::piping_server] GET /hudson HTTP/1.1
[2024-02-27T19:02:28Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T19:08:40Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T19:08:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T19:15:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T19:36:53Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T19:37:51Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T19:54:28Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-27T20:16:48Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: AlertReceived(BadCertificate) }
[2024-02-27T20:17:22Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T20:20:53Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-27T20:21:27Z INFO  piping_server::piping_server] GET /hello HTTP/1.1
[2024-02-27T20:21:28Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-27T20:33:58Z INFO  piping_server::piping_server] GET /actuator/health HTTP/1.1
[2024-02-27T20:44:40Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:41Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:41Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:42Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:42Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:43Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:43Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:43Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:43Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:44Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:44Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:45Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:45Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:45Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:45Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:44:45Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T20:44:45Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T20:54:39Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T20:59:29Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T21:02:00Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: AlertReceived(BadCertificate) }
[2024-02-27T21:02:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-27T21:17:36Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T21:17:37Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:17:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:18:10Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:18:10Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:18:43Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:18:43Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:19:16Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:19:16Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:19:51Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:19:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:20:24Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:20:24Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:20:57Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:20:57Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:21:31Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:21:31Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:22:04Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:22:04Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T21:22:37Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-27T21:22:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-27T22:02:12Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-27T22:26:22Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-27T22:26:22Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-27T22:29:59Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T22:30:44Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T23:24:22Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-27T23:24:24Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-27T23:58:05Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T00:23:23Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T00:48:23Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T00:59:37Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:38Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:38Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:38Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:38Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:39Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:39Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:40Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:40Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:41Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:42Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:42Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:42Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:42Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:43Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T00:59:43Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T00:59:48Z INFO  piping_server::piping_server] GET /invoker/readonly HTTP/1.1
[2024-02-28T01:00:06Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T01:09:19Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T01:09:29Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Io, Kind(ConnectionReset))
[2024-02-28T01:09:29Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T01:28:29Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T01:28:29Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T01:54:57Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T01:54:57Z INFO  piping_server::piping_server] GET /.env HTTP/1.1
[2024-02-28T01:55:01Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-28T02:17:45Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T02:17:50Z INFO  piping_server::piping_server] GET https://pi.selleroa.top/ HTTP/2.0
[2024-02-28T02:23:15Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T02:23:15Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T02:30:52Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T02:30:52Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T02:41:43Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T02:58:54Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:08:50Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:11:39Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T03:24:21Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:34:26Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:36:31Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-28T03:53:48Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:53:48Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-28T03:53:51Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T03:54:11Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T03:54:11Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:11Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:12Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:12Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:12Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:12Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:13Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:13Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:14Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T03:54:14Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T03:54:14Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T04:09:22Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T04:24:29Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T04:36:33Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T04:36:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T04:54:06Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T04:54:06Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T04:57:48Z INFO  piping_server::piping_server] GET /cgi-bin/authLogin.cgi HTTP/1.1
[2024-02-28T04:57:56Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-28T05:08:58Z INFO  piping_server::piping_server] GET /robots.txt HTTP/1.1
[2024-02-28T05:08:58Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T05:11:55Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-28T05:15:15Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T05:15:15Z INFO  piping_server::piping_server] GET /script HTTP/1.1
[2024-02-28T05:15:55Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T05:15:55Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-02-28T05:15:55Z INFO  piping_server::piping_server] GET /invoker/readonly HTTP/1.1
[2024-02-28T05:21:18Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T06:17:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T06:30:35Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T06:30:35Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-28T07:05:23Z INFO  piping_server::piping_server] GET /c/ HTTP/1.1
[2024-02-28T07:05:33Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T07:14:17Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-28T07:23:46Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T08:02:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T08:10:04Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T08:10:05Z INFO  piping_server::piping_server] GET /script HTTP/1.1
[2024-02-28T08:10:05Z INFO  piping_server::piping_server] GET /login HTTP/1.1
[2024-02-28T08:10:45Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T08:10:45Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-02-28T08:10:45Z INFO  piping_server::piping_server] GET /invoker/readonly HTTP/1.1
[2024-02-28T08:25:31Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T08:25:31Z INFO  piping_server::piping_server] POST /FD873AC4-CF86-4FED-84EC-4BD59C6F17A7 HTTP/1.1
[2024-02-28T08:25:31Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T08:30:03Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T09:05:11Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T09:17:20Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T09:17:20Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T09:35:34Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T09:35:34Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T10:29:51Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T10:33:14Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T10:33:52Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T10:34:25Z INFO  piping_server::piping_server] GET http://api.ipify.org/?format=json HTTP/1.1
[2024-02-28T10:34:49Z INFO  piping_server::piping_server] CONNECT www.shadowserver.org:443 HTTP/1.1
[2024-02-28T10:34:49Z INFO  piping_server::piping_server] Unsupported method: CONNECT
[2024-02-28T10:53:03Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T10:53:04Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T11:15:11Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T11:15:11Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T11:15:11Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T11:15:11Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T11:15:11Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T11:44:35Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T11:44:35Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T12:17:29Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T12:18:38Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T12:19:22Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T12:19:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T12:19:41Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T12:34:56Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T12:36:55Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T13:07:04Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-28T13:09:57Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T13:10:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T13:10:32Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T13:10:32Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T13:10:32Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-28T13:10:32Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: NoApplicationProtocol }
[2024-02-28T13:10:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: NoApplicationProtocol }
[2024-02-28T13:10:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(Tls12NotOffered) }
[2024-02-28T13:10:33Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T13:10:33Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T13:10:33Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-28T13:10:34Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T13:13:26Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T13:13:26Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T13:35:20Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T13:35:20Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T14:17:21Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T14:23:22Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T14:23:22Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-28T14:33:43Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T14:36:58Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T14:37:30Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-28T14:40:35Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T14:40:35Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T14:42:00Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T14:43:38Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T14:45:09Z INFO  piping_server::piping_server] GET /api/v2/static/not.found HTTP/1.1
[2024-02-28T14:45:13Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-28T14:45:27Z INFO  piping_server::piping_server] GET /remote/logincheck HTTP/1.1
[2024-02-28T14:45:30Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-28T14:46:41Z INFO  piping_server::piping_server] GET /geoserver/web/ HTTP/1.1
[2024-02-28T14:46:43Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" })
[2024-02-28T14:55:30Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-02-28T14:59:21Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T14:59:22Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-28T14:59:26Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-28T15:39:26Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-28T15:39:26Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T15:57:29Z INFO  piping_server::piping_server] GET /ReportServer HTTP/1.1
[2024-02-28T15:57:34Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-28T16:13:51Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T16:17:28Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T16:40:00Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T16:41:43Z INFO  piping_server::piping_server] GET /aaa9 HTTP/1.1
[2024-02-28T16:41:53Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T16:41:53Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T16:41:54Z INFO  piping_server::piping_server] GET /aab8 HTTP/1.1
[2024-02-28T16:42:04Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(IncompleteMessage)
[2024-02-28T16:42:04Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T16:42:04Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T16:54:50Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T17:08:15Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-28T17:26:02Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T17:26:03Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T18:17:26Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T18:49:58Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-28T18:52:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T18:52:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T19:17:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-28T19:17:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: AlertReceived(BadCertificate) }
[2024-02-28T19:35:45Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T19:44:15Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T20:15:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: AlertReceived(BadCertificate) }
[2024-02-28T20:17:48Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T20:18:54Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T20:26:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T20:28:51Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T21:26:29Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T21:35:46Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-28T22:17:40Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-28T22:28:08Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T22:28:29Z INFO  piping_server::piping_server] GET /ReportServer HTTP/1.1
[2024-02-28T22:33:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T22:35:32Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T22:47:04Z INFO  piping_server::piping_server] CONNECT httpbin.org:443 HTTP/1.1
[2024-02-28T22:47:04Z INFO  piping_server::piping_server] Unsupported method: CONNECT
[2024-02-28T22:59:33Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T22:59:33Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T23:03:25Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T23:09:52Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T23:17:44Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-28T23:21:23Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-28T23:21:23Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-28T23:26:45Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T23:26:45Z ERROR piping_server] Failed to serve HTTPS connection: Custom { kind: UnexpectedEof, error: "peer closed connection without sending TLS close_notify: https://docs.rs/rustls/latest/rustls/manual/_03_howto/index.html#unexpected-eof" }
[2024-02-28T23:26:45Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:46Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:46Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:26:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-28T23:26:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-28T23:54:14Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-28T23:54:19Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-29T00:00:50Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T00:07:09Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T00:10:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T00:23:23Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T00:32:53Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T01:03:51Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T01:03:51Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T01:05:46Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T01:10:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T01:13:43Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T01:13:43Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T01:47:47Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T01:57:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T01:57:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T02:12:20Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T02:26:17Z INFO  piping_server::piping_server] GET https://pi.selleroa.top/ HTTP/2.0
[2024-02-29T02:33:39Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:22Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T02:53:23Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-29T02:53:41Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T03:01:07Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T03:09:20Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T03:10:10Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T03:12:03Z INFO  piping_server::piping_server] GET https://pi.selleroa.top/favicon.ico HTTP/2.0
[2024-02-29T03:21:09Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T03:25:28Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T03:26:01Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(NoCipherSuitesInCommon) }
[2024-02-29T03:27:27Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T03:27:27Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T03:27:27Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T03:27:27Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T03:27:27Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T03:27:27Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T03:30:10Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T03:31:37Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T03:33:07Z INFO  piping_server::piping_server] GET /api/v2/static/not.found HTTP/1.1
[2024-02-29T03:33:20Z INFO  piping_server::piping_server] GET /remote/logincheck HTTP/1.1
[2024-02-29T03:34:14Z INFO  piping_server::piping_server] GET /geoserver/web/ HTTP/1.1
[2024-02-29T03:38:29Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-29T03:38:29Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:02:54Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:06:46Z ERROR piping_server] Failed to accept TLS connection: Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" }
[2024-02-29T04:06:50Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:06:51Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Shutdown, Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer" })
[2024-02-29T04:06:54Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:06:55Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(Io, Kind(ConnectionReset))
[2024-02-29T04:06:55Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T04:10:32Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T04:15:24Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:29:41Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T04:36:15Z INFO  piping_server::piping_server] GET /cgi-bin/authLogin.cgi HTTP/1.1
[2024-02-29T04:40:35Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T04:41:12Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T04:41:44Z INFO  piping_server::piping_server] GET http://api.ipify.org/?format=json HTTP/1.1
[2024-02-29T04:42:10Z INFO  piping_server::piping_server] CONNECT www.shadowserver.org:443 HTTP/1.1
[2024-02-29T04:42:10Z INFO  piping_server::piping_server] Unsupported method: CONNECT
[2024-02-29T05:00:04Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T05:27:56Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-29T06:30:05Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T07:00:20Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T07:07:35Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidContentType) }
[2024-02-29T07:07:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-29T07:11:49Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-29T07:17:04Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T07:26:45Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T07:26:46Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T07:28:54Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T08:18:36Z INFO  piping_server::piping_server] GET https://pi.selleroa.top/ HTTP/2.0
[2024-02-29T08:34:02Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-29T08:34:02Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-29T08:37:58Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-29T08:37:58Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-29T08:46:50Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T08:55:58Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T09:00:20Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T09:11:25Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T09:11:29Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T09:11:36Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:36Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:37Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:37Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:39Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:39Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:41Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:41Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:42Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:42Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:44Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:44Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:45Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:45Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:47Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:47Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:48Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:48Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:11:49Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:11:49Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:19:01Z WARN  rustls::msgs::handshake] Illegal SNI hostname received "54.215.230.183"
[2024-02-29T09:19:01Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(InvalidServerName) }
[2024-02-29T09:51:41Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T09:54:08Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: UnexpectedEof, error: "tls handshake eof" }
[2024-02-29T09:54:08Z INFO  piping_server::piping_server] GET /Jcv9 HTTP/1.1
[2024-02-29T09:54:38Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-29T09:54:38Z INFO  piping_server::piping_server] GET /SXDn HTTP/1.1
[2024-02-29T09:55:08Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-29T09:55:09Z INFO  piping_server::piping_server] GET /aab8 HTTP/1.1
[2024-02-29T09:55:09Z INFO  piping_server::piping_server] GET /jquery-3.3.1.slim.min.js HTTP/1.1
[2024-02-29T09:55:39Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-29T09:55:39Z INFO  piping_server::piping_server] GET /aab9 HTTP/1.1
[2024-02-29T09:56:09Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-29T09:56:09Z INFO  piping_server::piping_server] GET /jquery-3.3.2.slim.min.js HTTP/1.1
[2024-02-29T09:56:39Z ERROR piping_server] Failed to serve HTTPS connection: hyper::Error(IncompleteMessage)
[2024-02-29T10:01:01Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(UnknownProtocolVersion) }
[2024-02-29T10:58:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T11:05:59Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T11:09:09Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: PeerIncompatible(SignatureAlgorithmsExtensionRequired) }
[2024-02-29T11:15:16Z ERROR piping_server] Failed to accept TLS connection: Custom { kind: InvalidData, error: InvalidMessage(UnknownProtocolVersion) }
[2024-02-29T11:15:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T11:54:25Z INFO  piping_server::piping_server] GET /cgi-bin/authLogin.cgi HTTP/1.1
[2024-02-29T12:02:47Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T12:02:47Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-29T12:05:55Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T12:51:20Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T13:11:06Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T13:28:28Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-29T13:28:28Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-29T13:39:12Z INFO  piping_server::piping_server] HEAD / HTTP/1.1
[2024-02-29T13:39:14Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T13:39:14Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T13:39:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T14:17:31Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T15:04:49Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T15:28:29Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-02-29T15:28:29Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-02-29T15:35:39Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T15:36:11Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T16:23:04Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T16:32:24Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1
[2024-02-29T17:43:51Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-02-29T18:37:00Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T18:37:00Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T19:39:22Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T20:11:00Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T20:33:05Z INFO  piping_server::piping_server] CONNECT google.com:443 HTTP/1.1
[2024-02-29T20:33:05Z INFO  piping_server::piping_server] Unsupported method: CONNECT
[2024-02-29T20:39:08Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T20:44:29Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-02-29T21:18:42Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T22:07:52Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T22:15:41Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T22:15:41Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-02-29T22:33:44Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-02-29T23:07:31Z INFO  piping_server::piping_server] CONNECT v4.ident.me:443 HTTP/1.1
[2024-02-29T23:07:31Z INFO  piping_server::piping_server] Unsupported method: CONNECT
[2024-02-29T23:07:36Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-02-29T23:07:41Z INFO  piping_server::piping_server] GET http://v4.ident.me/?Z77698110290Q1 HTTP/1.1
[2024-02-29T23:07:47Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-03-01T00:28:57Z INFO  piping_server::piping_server] GET / HTTP/1.0
[2024-03-01T00:45:16Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-03-01T00:45:16Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-03-01T00:52:19Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-03-01T00:52:32Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Shutdown, Os { code: 107, kind: NotConnected, message: "Socket not connected" })
[2024-03-01T01:34:18Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T01:35:37Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T01:35:38Z INFO  piping_server::piping_server] GET /script HTTP/1.1
[2024-03-01T01:35:38Z INFO  piping_server::piping_server] GET /login HTTP/1.1
[2024-03-01T01:35:38Z INFO  piping_server::piping_server] GET /manager/html HTTP/1.1
[2024-03-01T01:35:39Z INFO  piping_server::piping_server] GET /invoker/readonly HTTP/1.1
[2024-03-01T01:42:26Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-03-01T01:42:26Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-03-01T01:49:32Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-03-01T01:59:04Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T03:44:20Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T03:58:00Z INFO  piping_server::piping_server] POST /goform/set_LimitClient_cfg HTTP/1.1
[2024-03-01T03:58:00Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Version))
[2024-03-01T04:05:56Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-03-01T04:05:56Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Parse(Method))
[2024-03-01T04:15:15Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T04:40:48Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T05:38:38Z INFO  piping_server::piping_server] GET / HTTP/1.1
[2024-03-01T05:38:48Z ERROR piping_server] Failed to serve HTTP connection: hyper::Error(Io, Kind(ConnectionReset))
[2024-03-01T05:38:48Z INFO  piping_server::piping_server] GET /favicon.ico HTTP/1.1

from piping-server-rust.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.