Debian Package Tracker
Register | Log in
Subscribe

libnet-oauth-perl

implementation of the OAuth 1.0 protocol

Choose email to subscribe with

general
  • source: libnet-oauth-perl (main)
  • version: 0.33-1
  • maintainer: Debian Perl Group (archive) (DMD) (LowNMU)
  • uploaders: gregor herrmann [DMD]
  • arch: all
  • std-ver: 4.7.4
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 0.28-3
  • oldstable: 0.28-4
  • stable: 0.31-1
  • testing: 0.31-2
  • unstable: 0.33-1
versioned links
  • 0.28-3: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.28-4: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.31-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.31-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.33-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • libnet-oauth-perl
action needed
Debci reports failed tests high
  • unstable: fail (log)
    The tests ran in 0:02:07
    Last run: 2026-07-30T13:11:03.000Z
    Previous status: unknown

  • testing: pass (log)
    The tests ran in 0:02:03
    Last run: 2026-07-28T09:22:38.000Z
    Previous status: unknown

  • stable: pass (log)
    The tests ran in 0:01:12
    Last run: 2026-07-16T11:41:31.000Z
    Previous status: unknown

Created: 2026-07-30 Last update: 2026-08-24 03:30
Marked for autoremoval on 29 September: #1144539 high
Version 0.31-2 of libnet-oauth-perl is marked for autoremoval from testing on Tue 29 Sep 2026. It is affected by #1144539. The removal of libnet-oauth-perl will also cause the removal of (transitive) reverse dependencies: barnowl, libdist-zilla-plugin-twitter-perl, libflickr-api-perl, libflickr-upload-perl, libmail-chimp3-perl, libnet-dropbox-api-perl, libnet-twitter-lite-perl, libnet-twitter-perl, libweb-api-perl, libwebservice-dropbox-perl, shutter. You should try to prevent the removal by fixing these RC bugs.
Created: 2026-08-23 Last update: 2026-08-24 03:04
4 security issues in trixie high

There are 4 open security issues in trixie.

2 important issues:
  • CVE-2026-72889: Net::OAuth versions before 0.33 for Perl allow the sender to choose the signature algorithm in verify. verify resolves the signature method class from the signature_method parameter of the incoming message. signature_method is required on every request, so the algorithm used to check a signature is chosen by whoever sent it, and nothing lets the verifying party pin the method instead. When a message names HMAC-SHA1 or HMAC-SHA256, the key is derived from consumer_secret and token_secret rather than from the key the provider deployed. A provider deployed on RSA-SHA1 holds only the consumer public key, and RFC 5849 does not use consumer_secret for that method, so the required parameter is filled with a placeholder. A client that names HMAC-SHA1 instead has its signature checked against that placeholder, so a guessable one is enough to forge requests for any consumer key and token.
  • CVE-2026-75589: Net::OAuth versions before 0.33 for Perl check HMAC-SHA1, HMAC-SHA256 and PLAINTEXT signatures with a non-constant-time comparison in verify. Each of the three compares the signature carried in the message against the locally computed one with the eq operator, which returns as soon as the two strings differ. The time taken to reject a signature varies with the length of the matching prefix. RSA-SHA1 is not affected, as it verifies through the RSA key object rather than by comparing strings. A client that can submit messages and time the replies may recover a valid signature one byte at a time rather than searching the whole signature space. Under PLAINTEXT the value compared against is the signature key itself, so the search recovers consumer_secret and token_secret.
2 issues left for the package maintainer to handle:
  • CVE-2026-72887: (needs triaging) Net::OAuth::Client versions before 0.32 for Perl allow the service provider to silently downgrade OAuth 1.0a to OAuth 1.0 in get_request_token. Passing a callback to the constructor selects OAuth 1.0a. get_request_token then revokes that choice when the request token response omits oauth_callback_confirmed, with no exception, no warning and no option to require 1.0a. The access token request is built from the OAuth 1.0 message class, which has no verifier parameter, so oauth_verifier is dropped from the request even when get_access_token was passed one. oauth_verifier is the binding that OAuth 1.0a added between the authorization step and the token exchange. An application that asked for 1.0a and gets 1.0 is open to OAuth 1.0 session fixation, where an attacker obtains a request token, has the victim authorize it, and then completes the exchange themselves, linking the victim's provider account to a session the attacker controls. No attacker action sets up the downgrade: a provider that does not confirm the callback is enough.
  • CVE-2026-72888: (needs triaging) Net::OAuth versions before 0.32 for Perl allow memory exhaustion via unbounded caching of failed module loads in smart_require. smart_require stores results in a process-global hash with no bound and no eviction, and keeps an entry for every class name it is asked about, including names that failed to load, because the return value of the failed eval is stored before the error is checked. The key comes off the wire on the server side: _signature_method_class builds the class name from the signature_method parameter of the incoming message, and verify resolves it before any signature is checked. A remote client chooses both how many entries are created and how long each key is. In a persistent server the hash grows for the life of the worker process until it exhausts memory. Header size limits bound the key length on the Authorization header path, but not on a POST body.

You can find information about how to handle these issues in the security team's documentation.

Created: 2026-08-16 Last update: 2026-08-20 07:33
4 security issues in forky high

There are 4 open security issues in forky.

4 important issues:
  • CVE-2026-72887: Net::OAuth::Client versions before 0.32 for Perl allow the service provider to silently downgrade OAuth 1.0a to OAuth 1.0 in get_request_token. Passing a callback to the constructor selects OAuth 1.0a. get_request_token then revokes that choice when the request token response omits oauth_callback_confirmed, with no exception, no warning and no option to require 1.0a. The access token request is built from the OAuth 1.0 message class, which has no verifier parameter, so oauth_verifier is dropped from the request even when get_access_token was passed one. oauth_verifier is the binding that OAuth 1.0a added between the authorization step and the token exchange. An application that asked for 1.0a and gets 1.0 is open to OAuth 1.0 session fixation, where an attacker obtains a request token, has the victim authorize it, and then completes the exchange themselves, linking the victim's provider account to a session the attacker controls. No attacker action sets up the downgrade: a provider that does not confirm the callback is enough.
  • CVE-2026-72888: Net::OAuth versions before 0.32 for Perl allow memory exhaustion via unbounded caching of failed module loads in smart_require. smart_require stores results in a process-global hash with no bound and no eviction, and keeps an entry for every class name it is asked about, including names that failed to load, because the return value of the failed eval is stored before the error is checked. The key comes off the wire on the server side: _signature_method_class builds the class name from the signature_method parameter of the incoming message, and verify resolves it before any signature is checked. A remote client chooses both how many entries are created and how long each key is. In a persistent server the hash grows for the life of the worker process until it exhausts memory. Header size limits bound the key length on the Authorization header path, but not on a POST body.
  • CVE-2026-72889: Net::OAuth versions before 0.33 for Perl allow the sender to choose the signature algorithm in verify. verify resolves the signature method class from the signature_method parameter of the incoming message. signature_method is required on every request, so the algorithm used to check a signature is chosen by whoever sent it, and nothing lets the verifying party pin the method instead. When a message names HMAC-SHA1 or HMAC-SHA256, the key is derived from consumer_secret and token_secret rather than from the key the provider deployed. A provider deployed on RSA-SHA1 holds only the consumer public key, and RFC 5849 does not use consumer_secret for that method, so the required parameter is filled with a placeholder. A client that names HMAC-SHA1 instead has its signature checked against that placeholder, so a guessable one is enough to forge requests for any consumer key and token.
  • CVE-2026-75589: Net::OAuth versions before 0.33 for Perl check HMAC-SHA1, HMAC-SHA256 and PLAINTEXT signatures with a non-constant-time comparison in verify. Each of the three compares the signature carried in the message against the locally computed one with the eq operator, which returns as soon as the two strings differ. The time taken to reject a signature varies with the length of the matching prefix. RSA-SHA1 is not affected, as it verifies through the RSA key object rather than by comparing strings. A client that can submit messages and time the replies may recover a valid signature one byte at a time rather than searching the whole signature space. Under PLAINTEXT the value compared against is the signature key itself, so the search recovers consumer_secret and token_secret.
Created: 2026-08-16 Last update: 2026-08-20 07:33
5 security issues in bullseye high

There are 5 open security issues in bullseye.

4 important issues:
  • CVE-2026-72887: Net::OAuth::Client versions before 0.32 for Perl allow the service provider to silently downgrade OAuth 1.0a to OAuth 1.0 in get_request_token. Passing a callback to the constructor selects OAuth 1.0a. get_request_token then revokes that choice when the request token response omits oauth_callback_confirmed, with no exception, no warning and no option to require 1.0a. The access token request is built from the OAuth 1.0 message class, which has no verifier parameter, so oauth_verifier is dropped from the request even when get_access_token was passed one. oauth_verifier is the binding that OAuth 1.0a added between the authorization step and the token exchange. An application that asked for 1.0a and gets 1.0 is open to OAuth 1.0 session fixation, where an attacker obtains a request token, has the victim authorize it, and then completes the exchange themselves, linking the victim's provider account to a session the attacker controls. No attacker action sets up the downgrade: a provider that does not confirm the callback is enough.
  • CVE-2026-72888: Net::OAuth versions before 0.32 for Perl allow memory exhaustion via unbounded caching of failed module loads in smart_require. smart_require stores results in a process-global hash with no bound and no eviction, and keeps an entry for every class name it is asked about, including names that failed to load, because the return value of the failed eval is stored before the error is checked. The key comes off the wire on the server side: _signature_method_class builds the class name from the signature_method parameter of the incoming message, and verify resolves it before any signature is checked. A remote client chooses both how many entries are created and how long each key is. In a persistent server the hash grows for the life of the worker process until it exhausts memory. Header size limits bound the key length on the Authorization header path, but not on a POST body.
  • CVE-2026-72889: Net::OAuth versions before 0.33 for Perl allow the sender to choose the signature algorithm in verify. verify resolves the signature method class from the signature_method parameter of the incoming message. signature_method is required on every request, so the algorithm used to check a signature is chosen by whoever sent it, and nothing lets the verifying party pin the method instead. When a message names HMAC-SHA1 or HMAC-SHA256, the key is derived from consumer_secret and token_secret rather than from the key the provider deployed. A provider deployed on RSA-SHA1 holds only the consumer public key, and RFC 5849 does not use consumer_secret for that method, so the required parameter is filled with a placeholder. A client that names HMAC-SHA1 instead has its signature checked against that placeholder, so a guessable one is enough to forge requests for any consumer key and token.
  • CVE-2026-75589: Net::OAuth versions before 0.33 for Perl check HMAC-SHA1, HMAC-SHA256 and PLAINTEXT signatures with a non-constant-time comparison in verify. Each of the three compares the signature carried in the message against the locally computed one with the eq operator, which returns as soon as the two strings differ. The time taken to reject a signature varies with the length of the matching prefix. RSA-SHA1 is not affected, as it verifies through the RSA key object rather than by comparing strings. A client that can submit messages and time the replies may recover a valid signature one byte at a time rather than searching the whole signature space. Under PLAINTEXT the value compared against is the signature key itself, so the search recovers consumer_secret and token_secret.
1 issue postponed or untriaged:
  • CVE-2025-22376: (postponed; to be fixed through a stable update) In Net::OAuth::Client in the Net::OAuth package before 0.29 for Perl, the default nonce is a 32-bit integer generated from the built-in rand() function, which is not cryptographically strong.
Created: 2026-08-16 Last update: 2026-08-20 07:33
5 security issues in bookworm high

There are 5 open security issues in bookworm.

4 important issues:
  • CVE-2026-72887: Net::OAuth::Client versions before 0.32 for Perl allow the service provider to silently downgrade OAuth 1.0a to OAuth 1.0 in get_request_token. Passing a callback to the constructor selects OAuth 1.0a. get_request_token then revokes that choice when the request token response omits oauth_callback_confirmed, with no exception, no warning and no option to require 1.0a. The access token request is built from the OAuth 1.0 message class, which has no verifier parameter, so oauth_verifier is dropped from the request even when get_access_token was passed one. oauth_verifier is the binding that OAuth 1.0a added between the authorization step and the token exchange. An application that asked for 1.0a and gets 1.0 is open to OAuth 1.0 session fixation, where an attacker obtains a request token, has the victim authorize it, and then completes the exchange themselves, linking the victim's provider account to a session the attacker controls. No attacker action sets up the downgrade: a provider that does not confirm the callback is enough.
  • CVE-2026-72888: Net::OAuth versions before 0.32 for Perl allow memory exhaustion via unbounded caching of failed module loads in smart_require. smart_require stores results in a process-global hash with no bound and no eviction, and keeps an entry for every class name it is asked about, including names that failed to load, because the return value of the failed eval is stored before the error is checked. The key comes off the wire on the server side: _signature_method_class builds the class name from the signature_method parameter of the incoming message, and verify resolves it before any signature is checked. A remote client chooses both how many entries are created and how long each key is. In a persistent server the hash grows for the life of the worker process until it exhausts memory. Header size limits bound the key length on the Authorization header path, but not on a POST body.
  • CVE-2026-72889: Net::OAuth versions before 0.33 for Perl allow the sender to choose the signature algorithm in verify. verify resolves the signature method class from the signature_method parameter of the incoming message. signature_method is required on every request, so the algorithm used to check a signature is chosen by whoever sent it, and nothing lets the verifying party pin the method instead. When a message names HMAC-SHA1 or HMAC-SHA256, the key is derived from consumer_secret and token_secret rather than from the key the provider deployed. A provider deployed on RSA-SHA1 holds only the consumer public key, and RFC 5849 does not use consumer_secret for that method, so the required parameter is filled with a placeholder. A client that names HMAC-SHA1 instead has its signature checked against that placeholder, so a guessable one is enough to forge requests for any consumer key and token.
  • CVE-2026-75589: Net::OAuth versions before 0.33 for Perl check HMAC-SHA1, HMAC-SHA256 and PLAINTEXT signatures with a non-constant-time comparison in verify. Each of the three compares the signature carried in the message against the locally computed one with the eq operator, which returns as soon as the two strings differ. The time taken to reject a signature varies with the length of the matching prefix. RSA-SHA1 is not affected, as it verifies through the RSA key object rather than by comparing strings. A client that can submit messages and time the replies may recover a valid signature one byte at a time rather than searching the whole signature space. Under PLAINTEXT the value compared against is the signature key itself, so the search recovers consumer_secret and token_secret.
1 issue postponed or untriaged:
  • CVE-2025-22376: (needs triaging) In Net::OAuth::Client in the Net::OAuth package before 0.29 for Perl, the default nonce is a 32-bit integer generated from the built-in rand() function, which is not cryptographically strong.
Created: 2026-08-16 Last update: 2026-08-20 07:33
testing migrations
  • excuses:
    • Migration status for libnet-oauth-perl (0.31-2 to 0.33-1): BLOCKED: Rejected/violates migration policy/introduces a regression
    • Issues preventing migration:
    • ∙ ∙ Autopkgtest for libflickr-api-perl/1.29-2: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libflickr-upload-perl/1.60-2: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libnet-dropbox-api-perl/1.9-3: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libnet-oauth-perl/0.33-1: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libnet-twitter-lite-perl/0.12008-2: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libnet-twitter-perl/4.01043-2: amd64: Regression ♻ (reference ♻), arm64: Regression ♻ (reference ♻), armhf: Regression ♻ (reference ♻), i386: Regression ♻ (reference ♻), ppc64el: Regression ♻ (reference ♻), s390x: Test triggered
    • ∙ ∙ Autopkgtest for libweb-api-perl/2.8-1: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for libwebservice-dropbox-perl/2.10-1: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Autopkgtest for shutter/0.99.6-2: amd64: Pass, arm64: Pass, armhf: Pass, i386: Pass, ppc64el: Pass, s390x: Test triggered
    • ∙ ∙ Too young, only 4 of 5 days old
    • Additional info (not blocking):
    • ∙ ∙ Updating libnet-oauth-perl will fix bugs in testing: #1144539
    • ∙ ∙ Piuparts tested OK - https://piuparts.debian.org/sid/source/libn/libnet-oauth-perl.html
    • ∙ ∙ Reproduced on amd64 - info
    • ∙ ∙ Reproduced on arm64 - info
    • ∙ ∙ Reproduced on armhf - info
    • ∙ ∙ Reproduced on i386 - info
    • Not considered
news
[rss feed]
  • [2026-08-19] Accepted libnet-oauth-perl 0.33-1 (source) into unstable (gregor herrmann)
  • [2026-08-16] Accepted libnet-oauth-perl 0.32-1 (source) into unstable (gregor herrmann)
  • [2026-08-13] libnet-oauth-perl 0.31-2 MIGRATED to testing (Debian testing watch)
  • [2026-08-09] Accepted libnet-oauth-perl 0.31-2 (source) into unstable (gregor herrmann)
  • [2026-07-31] libnet-oauth-perl REMOVED from testing (Debian testing watch)
  • [2025-04-15] libnet-oauth-perl 0.31-1 MIGRATED to testing (Debian testing watch)
  • [2025-04-12] Accepted libnet-oauth-perl 0.31-1 (source) into unstable (gregor herrmann)
  • [2025-01-09] libnet-oauth-perl 0.30-1 MIGRATED to testing (Debian testing watch)
  • [2025-01-04] Accepted libnet-oauth-perl 0.30-1 (source) into unstable (gregor herrmann)
  • [2022-05-31] libnet-oauth-perl 0.28-4 MIGRATED to testing (Debian testing watch)
  • [2022-05-29] Accepted libnet-oauth-perl 0.28-4 (source) into unstable (Damyan Ivanov)
  • [2018-05-11] libnet-oauth-perl 0.28-3 MIGRATED to testing (Debian testing watch)
  • [2018-05-08] Accepted libnet-oauth-perl 0.28-3 (source) into unstable (gregor herrmann)
  • [2015-06-21] libnet-oauth-perl 0.28-2 MIGRATED to testing (Britney)
  • [2015-06-09] Accepted libnet-oauth-perl 0.28-2 (source all) into unstable (Damyan Ivanov)
  • [2012-01-21] libnet-oauth-perl 0.28-1 MIGRATED to testing (Debian testing watch)
  • [2012-01-10] Accepted libnet-oauth-perl 0.28-1 (source all) (Jotam Jr. Trejo) (signed by: gregor herrmann)
  • [2011-08-17] libnet-oauth-perl 0.27-2 MIGRATED to testing (Debian testing watch)
  • [2011-08-06] Accepted libnet-oauth-perl 0.27-2 (source all) (Salvatore Bonaccorso)
  • [2010-06-29] libnet-oauth-perl 0.27-1 MIGRATED to testing (Debian testing watch)
  • [2010-06-18] Accepted libnet-oauth-perl 0.27-1 (source all) (gregor herrmann)
  • [2010-04-14] libnet-oauth-perl 0.25-1 MIGRATED to testing (Debian testing watch)
  • [2010-04-03] Accepted libnet-oauth-perl 0.25-1 (source all) (gregor herrmann)
  • [2010-03-23] libnet-oauth-perl 0.22-1 MIGRATED to testing (Debian testing watch)
  • [2010-03-12] Accepted libnet-oauth-perl 0.22-1 (source all) (Jonathan Yu) (signed by: gregor herrmann)
  • [2009-12-11] libnet-oauth-perl 0.20-1 MIGRATED to testing (Debian testing watch)
  • [2009-11-30] Accepted libnet-oauth-perl 0.20-1 (source all) (Jonathan Yu) (signed by: gregor herrmann)
  • [2009-07-10] libnet-oauth-perl 0.19-1 MIGRATED to testing (Debian testing watch)
  • [2009-06-29] Accepted libnet-oauth-perl 0.19-1 (source all) (gregor herrmann)
  • [2009-06-26] Accepted libnet-oauth-perl 0.18-1 (source all) (gregor herrmann)
  • 1
  • 2
bugs [bug history graph]
  • all: 0
links
  • homepage
  • lintian
  • buildd: logs, reproducibility
  • popcon
  • browse source code
  • other distros
  • security tracker
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 0.31-1

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing