diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-07-17 09:10:43 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-07-17 09:10:43 +0200 |
| commit | f2ec263023649e596c5076df32c2d328bc9393d2 (patch) | |
| tree | 5dd86caab46e552bd2e62bf9c4fb1a7504a44db4 /results/scraper/fex/2550 | |
| parent | 63d2e9d409831aa8582787234cae4741847504b7 (diff) | |
| download | qemu-analysis-main.tar.gz qemu-analysis-main.zip | |
Diffstat (limited to 'results/scraper/fex/2550')
| -rw-r--r-- | results/scraper/fex/2550 | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/results/scraper/fex/2550 b/results/scraper/fex/2550 new file mode 100644 index 000000000..06e2dfa00 --- /dev/null +++ b/results/scraper/fex/2550 @@ -0,0 +1,51 @@ +[Maybe bug] curl-amd64: (16) Send failure: Broken pipe +In my amd64 debian machine: +``` +$ wget https://github.com/moparisthebest/static-curl/releases/download/v7.88.1/curl-amd64 +$ ./curl-amd64 https://1.1.1.1 | head -n 20 +//It can show the correct 1.1.1.1 logo + +$ scp curl-amd64 root@192.168.0.2:/root/ +//scp it into my arm64 armbian machine 192.168.0.2 +``` + +In my arm64 armbian machine: +(I see there's an aarch64 version of static-curl, here I'm just finding a simplest way to test fex-emu environment) +``` +$ curl --silent https://raw.githubusercontent.com/FEX-Emu/FEX/main/Scripts/InstallFEX.py --output /tmp/InstallFEX.py && python3 /tmp/InstallFEX.py && rm /tmp/InstallFEX.py +//successfully installed fex-emu +$ FEXInterpreter ./curl-amd64 -V +curl 7.88.1 (x86_64-pc-linux-musl) libcurl/7.88.1 OpenSSL/1.1.1t zlib/1.2.12 libssh2/1.10.0 nghttp2/1.47.0 +Release-Date: 2023-02-20 +Protocols: dict file ftp ftps gopher gophers http https imap imaps mqtt pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp +Features: alt-svc AsynchDNS HSTS HTTP2 HTTPS-proxy IPv6 Largefile libz NTLM NTLM_WB SSL threadsafe TLS-SRP UnixSockets + +$ FEXInterpreter ./curl-amd64 -v https://1.1.1.1 +* Trying 1.1.1.1:443... +* Connected to 1.1.1.1 (1.1.1.1) port 443 (#0) +* ALPN: offers h2,http/1.1 +* TLSv1.3 (OUT), TLS handshake, Client hello (1): +* CAfile: /etc/ssl/certs/ca-certificates.crt +* CApath: none +* TLSv1.3 (IN), TLS handshake, Server hello (2): +* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): +* TLSv1.3 (IN), TLS handshake, Certificate (11): +* TLSv1.3 (IN), TLS handshake, CERT verify (15): +* TLSv1.3 (IN), TLS handshake, Finished (20): +* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): +* TLSv1.3 (OUT), TLS handshake, Finished (20): +* SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 +* ALPN: server accepted h2 +* Server certificate: +* subject: C=US; ST=California; L=San Francisco; O=Cloudflare, Inc.; CN=cloudflare-dns.com +* start date: Jan 12 00:00:00 2023 GMT +* expire date: Jan 11 23:59:59 2024 GMT +* subjectAltName: host "1.1.1.1" matched cert's IP address! +* issuer: C=US; O=DigiCert Inc; CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1 +* SSL certificate verify ok. +* Send failure: Broken pipe +* OpenSSL SSL_write: Broken pipe, errno 32 +* Closing connection 0 +curl: (16) Send failure: Broken pipe +``` +Maybe there's a bug in fex-emu about network socket, any hint? \ No newline at end of file |