Ca Certs broken for armv7l

Problems with packages? Post here, using [tags] of the package name.

Ca Certs broken for armv7l

Postby keithspg » Tue Jun 21, 2022 11:43 am

I recently noticed that this is broken for armv7l. On aarch64, it works as expected. We are running a script to determine if the Pi is online. When we do, it reports that the certificate is out of date. How can we fix this so it works identically on both platforms?
both architectures show the same packages installed:
$this->bbcode_second_pass_code('', '# pacman -Q | grep certificates
ca-certificates 20210603-1
ca-certificates-mozilla 3.79-1
ca-certificates-utils 20210603-1')

aarch64 - Correct:

$this->bbcode_second_pass_code('', '# wget --force-html --spider --connect-timeout=1 --timeout=10 --tries=2 https://www.google.com/
Spider mode enabled. Check if remote file exists.
--2022-06-21 06:22:40-- https://www.google.com/
Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt'
Resolving www.google.com (www.google.com)... 142.250.190.132, 2607:f8b0:4009:814::2004
Connecting to www.google.com (www.google.com)|142.250.190.132|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Remote file exists and could contain further links,
but recursion is disabled -- not retrieving.')

armv7l - Incorrect:
$this->bbcode_second_pass_code('', '
# wget --force-html --spider --connect-timeout=1 --timeout=10 --tries=2 https://www.google.com/
Spider mode enabled. Check if remote file exists.
--2022-06-21 06:05:50-- https://www.google.com/
Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt'
Resolving www.google.com (www.google.com)... 142.250.191.100, 2607:f8b0:4009:81b::2004
Connecting to www.google.com (www.google.com)|142.250.191.100|:443... connected.
The certificate has expired')

Possible solution but for another distribution:
https://joewein.net/blog/2021/10/07/wge ... r-30-2021/
keithspg
 
Posts: 221
Joined: Mon Feb 23, 2015 4:14 pm

Re: Ca Certs broken for armv7l

Postby ufo6000 » Tue Jun 21, 2022 5:50 pm

"wget says The certificate has expired" viewtopic.php?f=57&t=16070
ufo6000
 
Posts: 117
Joined: Fri Jan 22, 2016 7:54 pm

Re: Ca Certs broken for armv7l

Postby keithspg » Wed Jun 22, 2022 11:45 am

thanks, ufo6000. I was able to patch and build a wget that works for this aspect on armv7 like it does on aarch64 and x86_64.

In case it is useful to someone on the arm team, the wget PKGBUILD does not successfully build on arm. With the patch in that thread, the armv7 and aarch64 versions build if the tests section in the PKGBUILD is commented. With the patch both architectures of arm generate the same fail log. I attach it here in the case it helps someone determine why wget is broken on arm.
$this->bbcode_second_pass_code('', '=======================================
wget 1.21.3: tests/test-suite.log
=======================================

# TOTAL: 94
# PASS: 87
# SKIP: 1
# XFAIL: 0
# FAIL: 6
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: Test-ftp-iri
==================

Setting --no-config (noconfig) to 1
Running test Test-ftp-iri
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --local-encoding=iso-8859-1 --remote-encoding=utf-8 -S ftp://localhost:38387/fran�ais.txt
Setting --no-config (noconfig) to 1
Setting --local-encoding (localencoding) to iso-8859-1
Setting --remote-encoding (remoteencoding) to utf-8
Setting --server-response (serverresponse) to 1
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = 'iso-8859-1'
converted 'ftp://localhost:38387/fran�ais.txt' (iso-8859-1) -> 'ftp://localhost:38387/français.txt' (UTF-8)
Converted file name 'français.txt' (utf-8) -> 'fran�ais.txt' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:38387/fran%C3%A7ais.txt
=> 'fran\347ais.txt'
Resolving localhost (localhost)... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost (localhost)|::1|:38387... Closed fd 3
failed: Connection refused.
Connecting to localhost (localhost)|127.0.0.1|:38387... connected.
Created socket 3.
Releasing 0x00000055687294b0 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
--> SIZE français.txt

213 12
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,154,19)
trying to connect to 127.0.0.1 port 39443
Created socket 4.
--> RETR français.txt

150 Opening BINARY mode data connection.
fran�ais.txt: Invalid argument
Closed fd 3
Closed fd 4
[IRI fallbacking to non-utf8 for 'ftp://localhost:38387/fran\347ais.txt'
Converted file name 'français.txt' (utf-8) -> 'fran�ais.txt' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:38387/fran%E7ais.txt
=> 'fran\347ais.txt'
Found localhost in host_name_addresses_map (0x55687294b0)
Connecting to localhost (localhost)|127.0.0.1|:38387... connected.
Created socket 3.
Releasing 0x00000055687294b0 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
--> SIZE fran�ais.txt

550 File or directory not found.
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,152,253)
trying to connect to 127.0.0.1 port 39165
Created socket 4.
--> RETR fran�ais.txt

Use of uninitialized value in string eq at FTPServer.pm line 294, <$socket> chunk 7.
550 File not found.

No such file 'fran\347ais.txt'.

Closed fd 4
Closed fd 3
Test failed: wrong code returned (was: 8, expected: 0)
FAIL Test-ftp-iri.px (exit status: 1)

FAIL: Test-ftp-iri-fallback
===========================

Setting --no-config (noconfig) to 1
Running test Test-ftp-iri-fallback
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --local-encoding=iso-8859-1 -S ftp://localhost:41505/fran�ais.txt
Setting --no-config (noconfig) to 1
Setting --local-encoding (localencoding) to iso-8859-1
Setting --server-response (serverresponse) to 1
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = 'iso-8859-1'
converted 'ftp://localhost:41505/fran�ais.txt' (iso-8859-1) -> 'ftp://localhost:41505/français.txt' (UTF-8)
Converted file name 'français.txt' (UTF-8) -> 'fran�ais.txt' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:41505/fran%C3%A7ais.txt
=> 'fran\347ais.txt'
Resolving localhost (localhost)... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost (localhost)|::1|:41505... Closed fd 3
failed: Connection refused.
Connecting to localhost (localhost)|127.0.0.1|:41505... connected.
Created socket 3.
Releasing 0x00000055749e1490 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
--> SIZE français.txt

550 File or directory not found.
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,160,107)
trying to connect to 127.0.0.1 port 41067
Created socket 4.
--> RETR français.txt

Use of uninitialized value in string eq at FTPServer.pm line 294, <$socket> chunk 7.
550 File not found.

No such file 'fran\303\247ais.txt'.

Closed fd 4
Closed fd 3
[IRI fallbacking to non-utf8 for 'ftp://localhost:41505/fran\347ais.txt'
Converted file name 'français.txt' (UTF-8) -> 'fran�ais.txt' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:41505/fran%E7ais.txt
=> 'fran\347ais.txt'
Found localhost in host_name_addresses_map (0x55749e1490)
Connecting to localhost (localhost)|127.0.0.1|:41505... connected.
Created socket 3.
Releasing 0x00000055749e1490 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
--> SIZE fran�ais.txt

213 12
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,167,29)
trying to connect to 127.0.0.1 port 42781
Created socket 4.
--> RETR fran�ais.txt

150 Opening BINARY mode data connection.
fran�ais.txt: Invalid argument
Closed fd 3
Closed fd 4
Test failed: wrong code returned (was: 3, expected: 0)
FAIL Test-ftp-iri-fallback.px (exit status: 1)

FAIL: Test-ftp-iri-recursive
============================

Setting --no-config (noconfig) to 1
Running test Test-ftp-iri-recursive
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --local-encoding=iso-8859-1 -r -nH -S ftp://localhost:33591/
Setting --no-config (noconfig) to 1
Setting --local-encoding (localencoding) to iso-8859-1
Setting --recursive (recursive) to 1
Setting --no (addhostdir) to 0
Setting --server-response (serverresponse) to 1
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = 'iso-8859-1'
converted 'ftp://localhost:33591/' (iso-8859-1) -> 'ftp://localhost:33591/' (UTF-8)
Converted file name 'index.html' (UTF-8) -> 'index.html' (iso-8859-1)
Using '.listing' as listing tmp file.
--2022-06-22 06:23:31-- ftp://localhost:33591/
=> '.listing'
Resolving localhost (localhost)... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost (localhost)|::1|:33591... Closed fd 3
failed: Connection refused.
Connecting to localhost (localhost)|127.0.0.1|:33591... connected.
Created socket 3.
Releasing 0x000000557790f440 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,171,249)
trying to connect to 127.0.0.1 port 44025
Created socket 4.
--> LIST -a

_LIST_command - dir is: /
150 Opening data connection for file listing.
(skipping "LIST")
0K 2.14M=0s

Closed fd 4
226 Listing complete. Data connection has been closed.
-r--r--r-- 1 0 0 12 Jun 22 06:23 fran\347ais.txt
2022-06-22 06:23:31 (2.14 MB/s) - '.listing' saved [50]

PLAINFILE; perms 444; size: 12; month: Jun; day: 22; time: 06:23:00 (no yr); fran�ais.txt
Removed '.listing'.
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'fran�ais.txt' (UTF-8) -> '?' (iso-8859-1)
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'fran�ais.txt' (UTF-8) -> '?' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:33591/fran%E7ais.txt
=> 'fran\347ais.txt'
==> CWD not required.
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,148,209)
trying to connect to 127.0.0.1 port 38097
Created socket 4.
--> RETR fran�ais.txt

150 Opening BINARY mode data connection.
fran�ais.txt: Invalid argument
Closed fd 3
Closed fd 4
Test failed: file fran�ais.txt not downloaded
FAIL Test-ftp-iri-recursive.px (exit status: 1)

FAIL: Test-ftp-iri-disabled
===========================

Setting --no-config (noconfig) to 1
Running test Test-ftp-iri-disabled
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --no-iri --local-encoding=iso-8859-1 -S ftp://localhost:46873/fran�ais.txt
Setting --no-config (noconfig) to 1
Setting --iri (iri) to 0
Setting --local-encoding (localencoding) to iso-8859-1
Setting --server-response (serverresponse) to 1
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = 'iso-8859-1'
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'fran�ais.txt' (UTF-8) -> '?' (iso-8859-1)
--2022-06-22 06:23:31-- ftp://localhost:46873/fran%E7ais.txt
=> 'fran\347ais.txt'
Resolving localhost... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost|::1|:46873... Closed fd 3
failed: Connection refused.
Connecting to localhost|127.0.0.1|:46873... connected.
Created socket 3.
Releasing 0x00000055a5377160 (new refcount 1).
220 GNU Wget Testing FTP Server ready.
Logging in as anonymous ...
--> USER anonymous

230 Anonymous user access granted.
--> SYST

215 UNIX Type: L8

UNIX TYPE L8: I know it and I will use "LIST -a" as standard list command
--> PWD

257 "/"
--> TYPE I

200 TYPE changed to I.
==> CWD not needed.
--> SIZE fran�ais.txt

213 12
conaddr is: 127.0.0.1
--> PASV

227 Entering Passive Mode (127,0,0,1,142,229)
trying to connect to 127.0.0.1 port 36581
Created socket 4.
--> RETR fran�ais.txt

150 Opening BINARY mode data connection.
fran�ais.txt: Invalid argument
Closed fd 3
Closed fd 4
Test failed: wrong code returned (was: 3, expected: 0)
FAIL Test-ftp-iri-disabled.px (exit status: 1)

FAIL: Test-iri-disabled
=======================

Running test Test-iri-disabled
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --no-iri -nH -r http://localhost:40379/
Setting --no-config (noconfig) to 1
Setting --iri (iri) to 0
Setting --no (addhostdir) to 0
Setting --recursive (recursive) to 1
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = None
URI encoding = None
Enqueuing http://localhost:40379/ at depth 0
Queue count 1, maxcount 1.
[IRI Enqueuing 'http://localhost:40379/' with None
Dequeuing http://localhost:40379/ at depth 0
Queue count 0, maxcount 1.
Converted file name 'index.html' (UTF-8) -> 'index.html' (ANSI_X3.4-1968)
--2022-06-22 06:23:34-- http://localhost:40379/
Resolving localhost... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost|::1|:40379... connected.
Created socket 3.
Releasing 0x00000055c2a42560 (new refcount 1).

---request begin---
GET / HTTP/1.1
Host: localhost:40379
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:34 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 279
Content-Type: text/html; charset=ISO-8859-15

---response end---
200 Ok
Registered socket 3 for persistent reuse.
Length: 279 [text/html]
Saving to: 'index.html'

0K 100% 9.75M=0s

2022-06-22 06:23:34 (9.75 MB/s) - 'index.html' saved [279/279]

Loaded index.html (size 279).
URI encoding = None
index.html: merge('http://localhost:40379/', 'http://localhost:40379/p1_fran\347ais.html') -> http://localhost:40379/p1_fran\347ais.html
appending 'http://localhost:40379/p1_fran\347ais.html' to urlpos.
URI encoding = None
index.html: merge('http://localhost:40379/', 'http://localhost:40379/p3_\244\244\244.html') -> http://localhost:40379/p3_\244\244\244.html
appending 'http://localhost:40379/p3_\244\244\244.html' to urlpos.
nofollow in index.html: 0
Deciding whether to enqueue "http://localhost:40379/p1_fran�ais.html".
URI encoding = None
Loading robots.txt; please ignore errors.
Converted file name 'robots.txt' (UTF-8) -> 'robots.txt' (ANSI_X3.4-1968)
--2022-06-22 06:23:34-- http://localhost:40379/robots.txt
Reusing existing connection to [localhost]:40379.
Reusing fd 3.

---request begin---
GET /robots.txt HTTP/1.1
Host: localhost:40379
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:34 GMT
Server: libwww-perl-daemon/6.14
Connection: close
Content-Type: text/plain

---response end---
200 Ok
Length: unspecified [text/plain]
Saving to: 'robots.txt'

0K 0.00 =0s

Disabling further reuse of socket 3.
Closed fd 3
2022-06-22 06:23:34 (0.00 B/s) - 'robots.txt' saved [0]

Decided to load it.
URI encoding = None
Enqueuing http://localhost:40379/p1_fran\347ais.html at depth 1
Queue count 1, maxcount 1.
[IRI Enqueuing 'http://localhost:40379/p1_fran\347ais.html' with None
Deciding whether to enqueue "http://localhost:40379/p3_���.html".
Decided to load it.
URI encoding = None
Enqueuing http://localhost:40379/p3_\244\244\244.html at depth 1
Queue count 2, maxcount 2.
[IRI Enqueuing 'http://localhost:40379/p3_\244\244\244.html' with None
Dequeuing http://localhost:40379/p1_fran\347ais.html at depth 1
Queue count 1, maxcount 2.
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'p1_fran�ais.html' (UTF-8) -> '?' (ANSI_X3.4-1968)
--2022-06-22 06:23:34-- http://localhost:40379/p1_fran%E7ais.html
Found localhost in host_name_addresses_map (0x55c2a42560)
Connecting to localhost|::1|:40379... connected.
Created socket 3.
Releasing 0x00000055c2a42560 (new refcount 1).

---request begin---
GET /p1_fran%E7ais.html HTTP/1.1
Host: localhost:40379
Referer: http://localhost:40379/
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:34 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 283
Content-Type: text/html; charset=UTF-8

---response end---
200 Ok
Registered socket 3 for persistent reuse.
Length: 283 [text/html]
p1_fran�ais.html: Invalid argument
Disabling further reuse of socket 3.
Closed fd 3

Cannot write to 'p1_fran\347ais.html' (Invalid argument).
Dequeuing http://localhost:40379/p3_\244\244\244.html at depth 1
Queue count 0, maxcount 2.
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'p3_���.html' (UTF-8) -> '?' (ANSI_X3.4-1968)
--2022-06-22 06:23:34-- http://localhost:40379/p3_%A4%A4%A4.html
Found localhost in host_name_addresses_map (0x55c2a42560)
Connecting to localhost|::1|:40379... connected.
Created socket 3.
Releasing 0x00000055c2a42560 (new refcount 1).

---request begin---
GET /p3_%A4%A4%A4.html HTTP/1.1
Host: localhost:40379
Referer: http://localhost:40379/
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:34 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 119
Content-Type: text/plain

---response end---
200 Ok
Registered socket 3 for persistent reuse.
Length: 119 [text/plain]
p3_���.html: Invalid argument
Disabling further reuse of socket 3.
Closed fd 3

Cannot write to 'p3_\244\244\244.html' (Invalid argument).
FINISHED --2022-06-22 06:23:34--
Total wall clock time: 0.06s
Downloaded: 2 files, 279 in 0s (9.75 MB/s)
Test failed: wrong code returned (was: 3, expected: 0)
FAIL Test-iri-disabled.px (exit status: 1)

FAIL: Test-iri-list
===================

Setting --no-config (noconfig) to 1
Running test Test-iri-list
Calling /Rune_dev/aarch64/wget/src/wget-1.21.3/tests/../src/wget -d --no-config --iri --trust-server-names -i http://localhost:39471/url_list.txt
Setting --no-config (noconfig) to 1
Setting --iri (iri) to 1
Setting --trust-server-names (trustservernames) to 1
Setting --input-file (input) to http://localhost:39471/url_list.txt
DEBUG output created by Wget 1.21.3 on linux-gnu.

Reading HSTS entries from /home/alarm/.wget-hsts
URI encoding = 'ANSI_X3.4-1968'
URI content encoding = 'ANSI_X3.4-1968'
converted 'http://localhost:39471/url_list.txt' (ANSI_X3.4-1968) -> 'http://localhost:39471/url_list.txt' (UTF-8)
Converted file name 'url_list.txt' (UTF-8) -> 'url_list.txt' (ANSI_X3.4-1968)
--2022-06-22 06:23:35-- http://localhost:39471/url_list.txt
Resolving localhost (localhost)... ::1, 127.0.0.1
Caching localhost => ::1 127.0.0.1
Connecting to localhost (localhost)|::1|:39471... connected.
Created socket 3.
Releasing 0x0000005573a133f0 (new refcount 1).

---request begin---
GET /url_list.txt HTTP/1.1
Host: localhost:39471
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:35 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 99
Content-Type: text/plain; charset=ISO-8859-1

---response end---
200 Ok
Registered socket 3 for persistent reuse.
URI content encoding = 'ISO-8859-1'
Length: 99 [text/plain]
Saving to: 'url_list.txt'

0K 100% 3.33M=0s

2022-06-22 06:23:35 (3.33 MB/s) - 'url_list.txt' saved [99/99]

URI encoding = 'ISO-8859-1'
Loaded url_list.txt (size 99).
converted 'http://localhost:39471/' (ISO-8859-1) -> 'http://localhost:39471/' (UTF-8)
Converted file name 'index.html' (UTF-8) -> 'index.html' (ANSI_X3.4-1968)
--2022-06-22 06:23:35-- http://localhost:39471/
Reusing existing connection to [localhost]:39471.
Reusing fd 3.

---request begin---
GET / HTTP/1.1
Host: localhost:39471
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:35 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 97
Content-Type: text/html; charset=ISO-8859-15

---response end---
200 Ok
URI content encoding = 'ISO-8859-15'
Length: 97 [text/html]
Saving to: 'index.html'

0K 100% 3.97M=0s

2022-06-22 06:23:35 (3.97 MB/s) - 'index.html' saved [97/97]

converted 'http://localhost:39471/p1_fran�ais.html' (ISO-8859-1) -> 'http://localhost:39471/p1_français.html' (UTF-8)
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'p1_français.html' (UTF-8) -> '?' (ANSI_X3.4-1968)
--2022-06-22 06:23:35-- http://localhost:39471/p1_fran%C3%A7ais.html
Reusing existing connection to [localhost]:39471.
Reusing fd 3.

---request begin---
GET /p1_fran%C3%A7ais.html HTTP/1.1
Host: localhost:39471
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 404 File not found
Date: Wed, 22 Jun 2022 11:23:35 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 98
Content-Type: text/html; charset=UTF-8

---response end---
404 File not found
URI content encoding = 'UTF-8'
Skipping 98 bytes of body: [<html>
<head>
<title>404</title>
</head>
<body>
<p>
Nop nop nop...
</p>
</body>
</html>
] done.
2022-06-22 06:23:35 ERROR 404: File not found.

[IRI fallbacking to non-utf8 for 'http://localhost:39471/p1_fran\347ais.html'
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'p1_fran�ais.html' (UTF-8) -> '?' (ANSI_X3.4-1968)
--2022-06-22 06:23:35-- http://localhost:39471/p1_fran%E7ais.html
Reusing existing connection to [localhost]:39471.
Reusing fd 3.

---request begin---
GET /p1_fran%E7ais.html HTTP/1.1
Host: localhost:39471
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:35 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 195
Content-Type: text/html; charset=UTF-8

---response end---
200 Ok
URI content encoding = 'UTF-8'
Length: 195 [text/html]
p1_fran�ais.html: Invalid argument
Disabling further reuse of socket 3.
Closed fd 3

Cannot write to 'p1_fran\347ais.html' (Invalid argument).
converted 'http://localhost:39471/p2_��n.html' (ISO-8859-1) -> 'http://localhost:39471/p2_één.html' (UTF-8)
Incomplete or invalid multibyte sequence encountered
Failed to convert file name 'p2_één.html' (UTF-8) -> '?' (ANSI_X3.4-1968)
--2022-06-22 06:23:35-- http://localhost:39471/p2_%C3%A9%C3%A9n.html
Found localhost in host_name_addresses_map (0x5573a133f0)
Connecting to localhost (localhost)|::1|:39471... connected.
Created socket 3.
Releasing 0x0000005573a133f0 (new refcount 1).

---request begin---
GET /p2_%C3%A9%C3%A9n.html HTTP/1.1
Host: localhost:39471
User-Agent: Wget/1.21.3
Accept: */*
Accept-Encoding: identity
Connection: Keep-Alive

---request end---
HTTP request sent, awaiting response...
---response begin---
HTTP/1.1 200 Ok
Date: Wed, 22 Jun 2022 11:23:35 GMT
Server: libwww-perl-daemon/6.14
Content-Length: 197
Content-Type: text/html; charset=ISO-8859-1

---response end---
200 Ok
Registered socket 3 for persistent reuse.
URI content encoding = 'ISO-8859-1'
Length: 197 [text/html]
Saving to: 'p2_\303\251\303\251n.html'

0K 100% 7.47M=0s

2022-06-22 06:23:35 (7.47 MB/s) - 'p2_\303\251\303\251n.html' saved [197/197]

FINISHED --2022-06-22 06:23:35--
Total wall clock time: 0.09s
Downloaded: 3 files, 393 in 0s (4.88 MB/s)
Test failed: wrong code returned (was: 3, expected: 0)
FAIL Test-iri-list.px (exit status: 1)

SKIP: Test-https-weboftrust
===========================

Setting --no-config (noconfig) to 1
SKIP Test-https-weboftrust.px (exit status: 77)
')
Keith
keithspg
 
Posts: 221
Joined: Mon Feb 23, 2015 4:14 pm


Return to Packages

Who is online

Users browsing this forum: No registered users and 19 guests