You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
Add-auth option is especially dangerous, because npm install whatever --registry http://localhost:12345/ --add-auth=true will send your credentials even on install.
Web browser will never send your password to a different domain, so npm behaviour is unexpected and might open a few social engineering possibilities.
Ideally, the fix would be to lock "_auth" string with a "repository" it belongs to, and drop it if repository changes for whatever reason.
The text was updated successfully, but these errors were encountered:
Login and password are stored and transferred over a wire in plain text.
It might be fine, but it's too easy to send them into the wrong place:
Whoops.
Add-auth option is especially dangerous, because
npm install whatever --registry http://localhost:12345/ --add-auth=true
will send your credentials even on install.Web browser will never send your password to a different domain, so npm behaviour is unexpected and might open a few social engineering possibilities.
Ideally, the fix would be to lock "_auth" string with a "repository" it belongs to, and drop it if repository changes for whatever reason.
The text was updated successfully, but these errors were encountered: