From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: "Herbert J. Skuhra" Newsgroups: gmane.emacs.devel Subject: Re: eww + w3m / GnuTLS TLSv1 support ? Date: Sun, 13 Feb 2022 16:44:07 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="12946"; mail-complaints-to="usenet@ciao.gmane.io" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Feb 13 16:47:31 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nJH63-00038G-7y for ged-emacs-devel@m.gmane-mx.org; Sun, 13 Feb 2022 16:47:31 +0100 Original-Received: from localhost ([::1]:56562 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nJH61-0005Y9-JK for ged-emacs-devel@m.gmane-mx.org; Sun, 13 Feb 2022 10:47:29 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:35958) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nJH31-0004if-VL for emacs-devel@gnu.org; Sun, 13 Feb 2022 10:44:23 -0500 Original-Received: from mail.bsd4all.net ([94.130.200.20]:35909) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nJH2z-0006y0-8j for emacs-devel@gnu.org; Sun, 13 Feb 2022 10:44:23 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail202005; t=1644767047; bh=pTsD+oGA/nCck6KPXt/cKR/6LyxibiEyd1zXXzjPa5o=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=LhgfFLYqIrWDhAMf+grrKZ4V2oIlVfmHXZddagqVx54diVmVSDbHSfZMq5QqSsjno CEIKpG/gyYff3ZTj0wm1MvtqwvnFEcylVN7PzNSQ6/kiV/m3nIbkY/3+FSWntIkLe2 OMBECAJiIktDq+vpCROA3a6N674NJV+5DBWlWWQC4Ff6a2fU8/8kahtYCtrnlXvSzk 4c3J46HcCo5HN4eG0n+wzLuMfUb/w7wYoSt4oKPKIFCF9Cuz7HrVEDm16wUXCiA4KZ 0k2FNyuU2sDPdU8wQzpi6c3VYQaiwIqgC93z4L3eBufyiDvU/FUgWqOOAY3rvHyonq eESJZX1Kl/M2A== Content-Disposition: inline In-Reply-To: Received-SPF: pass client-ip=94.130.200.20; envelope-from=herbert@gojira.at; helo=mail.bsd4all.net X-Spam_score_int: -8 X-Spam_score: -0.9 X-Spam_bar: / X-Spam_report: (-0.9 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, NUMERIC_HTTP_ADDR=1.242, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:286218 Archived-At: On Sun, Feb 13, 2022 at 02:58:15PM +0000, Jason Vas Dias wrote: > Good day - > > I need to access the website of a modem which ONLY supports > TLS Version 1.0 - the only CURL options that work for it > are : > $ curl -ik --tlsv1.0 --basic -u$USER':'$PASS 'https://192.168.1.1' > ( options '--tlsv1.'{1,2,3} NO NOT WORK AT ALL ! ) > OpenSSL s_client also works with ONLY the '-tls1' option > (but does not do the HTTP Basic Auth as curl does). > > I only have access to my up-to-date Fedora 34 Linux x86_64 host, > or my Android Phone on the WiFi network it serves with hostapd. > > It has been the case for a while that Firefox / Chrome for Linux > do not permit me to use TLS-v1 - only Windows 10's Internet Explorer > used to work, when run from a Qemu/KVM Windows VM under Linux - but now, > with latest Windows 10 update, even this support has been removed. > > So my only home internet connection router's operations / management > web-page is now completely inaccessable to me from any of 6 modern browsers > I have installed on Linux or Windows : > ( latest Firefox, latest Chrome, w3m , eww, lynx, MS-Edge, MS-IE ) - > none of them support TLSv1.0 . Have you tried to set security.tls.version.enable-deprecated to true in Firefox (about:config)? This still works with Firefox 97.0 and an old(er) SNOM 300 SIP phone. I have created a separate Firefox profile for this use case. Maybe other solutions like stunnel, etc. might work too. -- Herbert