René's URL Explorer Experiment


Title: [Security] SCRAM-SHA-256 accepts dangerously low iteration count from server · Issue #3655 · brianc/node-postgres · GitHub

Open Graph Title: [Security] SCRAM-SHA-256 accepts dangerously low iteration count from server · Issue #3655 · brianc/node-postgres

X Title: [Security] SCRAM-SHA-256 accepts dangerously low iteration count from server · Issue #3655 · brianc/node-postgres

Description: Split from #3651 as suggested by @charmander. Summary The SCRAM-SHA-256 implementation accepts any iteration count >= 1 from the server. A rogue PostgreSQL server can send a SCRAM challenge with i=1, making the derived key trivially chea...

Open Graph Description: Split from #3651 as suggested by @charmander. Summary The SCRAM-SHA-256 implementation accepts any iteration count >= 1 from the server. A rogue PostgreSQL server can send a SCRAM challenge with i=...

X Description: Split from #3651 as suggested by @charmander. Summary The SCRAM-SHA-256 implementation accepts any iteration count >= 1 from the server. A rogue PostgreSQL server can send a SCRAM challenge with...

Opengraph URL: https://github.com/brianc/node-postgres/issues/3655

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Security] SCRAM-SHA-256 accepts dangerously low iteration count from server","articleBody":"Split from #3651 as suggested by @charmander.\n\n## Summary\n\nThe SCRAM-SHA-256 implementation accepts any iteration count \u003e= 1 from the server. A rogue PostgreSQL server can send a SCRAM challenge with `i=1`, making the derived key trivially cheap to brute-force offline.\n\n## Affected code\n\n`packages/pg/lib/crypto/sasl.js` — `parseServerFirstMessage()`:\n\n```js\nconst iterationText = attrPairs.get('i')\nif (!iterationText) {\n  throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: iteration missing')\n} else if (!/^[1-9][0-9]*$/.test(iterationText)) {\n  throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: invalid iteration count')\n}\nconst iteration = parseInt(iterationText, 10)\n```\n\nThe regex only validates that the iteration count is a positive integer. There is no minimum bound check.\n\n## Threat model\n\nThis is a **rogue server** scenario. If a client connects to a malicious PostgreSQL server, the server controls the SCRAM `ServerFirstMessage` including the iteration count. By setting `i=1`, the server receives the client's SCRAM proof computed with only 1 PBKDF2 iteration. An attacker who captures this exchange can brute-force the password offline at effectively plaintext speed.\n\nRFC 7677 (SCRAM-SHA-256) Section 4 states:\n\u003e the minimum iteration count SHOULD be at least 4096\n\n## Steps to reproduce\n\n1. Set up a mock PostgreSQL server that responds to SCRAM-SHA-256 with `r=\u003cnonce\u003e,s=\u003csalt\u003e,i=1`\n2. Connect a `pg` client with a password\n3. The client completes the SCRAM exchange using only 1 PBKDF2 iteration\n4. The attacker now has a proof derived with 1 iteration — offline brute-force is trivial\n\n## Impact\n\nPassword compromise via offline brute-force after a single observed authentication exchange with a rogue server.\n\n## Suggested fix\n\nEnforce a minimum iteration count in `parseServerFirstMessage()`:\n\n```js\nconst iteration = parseInt(iterationText, 10)\nif (iteration \u003c 4096) {\n  throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: iteration count ' + iteration + ' is below minimum 4096')\n}\n```","author":{"url":"https://github.com/eddieran","@type":"Person","name":"eddieran"},"datePublished":"2026-04-13T09:19:15.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":8},"url":"https://github.com/3655/node-postgres/issues/3655"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:76b73813-33fa-15d2-a3dd-e0300ae884e9
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA16C:25435F:80F58F:B5B7CD:6A4BD3FA
html-safe-noncecb3e635fab697f76f19acdc23e19326535a6278fa54d4fad901f61c9adb6b6d7
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMTZDOjI1NDM1Rjo4MEY1OEY6QjVCN0NEOjZBNEJEM0ZBIiwidmlzaXRvcl9pZCI6Ijc3OTQ5NjYyMjQ5NDk3MjgyNTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacfca656647ce5fa7d8bbb5fcdfa0731d49ce1d76773dba3538756b21ab02ee71a
hovercard-subject-tagissue:4253074399
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/brianc/node-postgres/3655/issue_layout
twitter:imagehttps://opengraph.githubassets.com/79af174c36011ad8166fba23a5f3ee16c06bb3787cc4c602edfe302948a3f419/brianc/node-postgres/issues/3655
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/79af174c36011ad8166fba23a5f3ee16c06bb3787cc4c602edfe302948a3f419/brianc/node-postgres/issues/3655
og:image:altSplit from #3651 as suggested by @charmander. Summary The SCRAM-SHA-256 implementation accepts any iteration count >= 1 from the server. A rogue PostgreSQL server can send a SCRAM challenge with i=...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameeddieran
hostnamegithub.com
expected-hostnamegithub.com
None9df996be9551ac02247d09a2f7f64ece66c35ca28885d346e98fdfda9cdaa37b
turbo-cache-controlno-preview
go-importgithub.com/brianc/node-postgres git https://github.com/brianc/node-postgres.git
octolytics-dimension-user_id50081
octolytics-dimension-user_loginbrianc
octolytics-dimension-repository_id991475
octolytics-dimension-repository_nwobrianc/node-postgres
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id991475
octolytics-dimension-repository_network_root_nwobrianc/node-postgres
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseb71208a1c9ec7ccf364087569d0551f665dda674
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/brianc/node-postgres/issues/3655#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbrianc%2Fnode-postgres%2Fissues%2F3655
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbrianc%2Fnode-postgres%2Fissues%2F3655
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=brianc%2Fnode-postgres
Reloadhttps://github.com/brianc/node-postgres/issues/3655
Reloadhttps://github.com/brianc/node-postgres/issues/3655
Reloadhttps://github.com/brianc/node-postgres/issues/3655
brianc https://github.com/brianc
node-postgreshttps://github.com/brianc/node-postgres
Please reload this pagehttps://github.com/brianc/node-postgres/issues/3655
Notifications https://github.com/login?return_to=%2Fbrianc%2Fnode-postgres
Fork 1.3k https://github.com/login?return_to=%2Fbrianc%2Fnode-postgres
Star 13.2k https://github.com/login?return_to=%2Fbrianc%2Fnode-postgres
Code https://github.com/brianc/node-postgres
Issues 451 https://github.com/brianc/node-postgres/issues
Pull requests 59 https://github.com/brianc/node-postgres/pulls
Discussions https://github.com/brianc/node-postgres/discussions
Actions https://github.com/brianc/node-postgres/actions
Wiki https://github.com/brianc/node-postgres/wiki
Security and quality 0 https://github.com/brianc/node-postgres/security
Insights https://github.com/brianc/node-postgres/pulse
Code https://github.com/brianc/node-postgres
Issues https://github.com/brianc/node-postgres/issues
Pull requests https://github.com/brianc/node-postgres/pulls
Discussions https://github.com/brianc/node-postgres/discussions
Actions https://github.com/brianc/node-postgres/actions
Wiki https://github.com/brianc/node-postgres/wiki
Security and quality https://github.com/brianc/node-postgres/security
Insights https://github.com/brianc/node-postgres/pulse
[Security] SCRAM-SHA-256 accepts dangerously low iteration count from serverhttps://github.com/brianc/node-postgres/issues/3655#top
https://github.com/eddieran
eddieranhttps://github.com/eddieran
on Apr 13, 2026https://github.com/brianc/node-postgres/issues/3655#issue-4253074399
#3651https://github.com/brianc/node-postgres/issues/3651
@charmanderhttps://github.com/charmander
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.