
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
couchdb-generate-session-id
Advanced tools
generates valid CouchDB session IDs using username, salt, secret & timestamp
generates valid CouchDB session IDs using username, salt, secret & timestamp
var generateSessionId = require('couchdb-generate-session-id')
var sessionId = generateSessionId(
'pat',
'24eb90e9e1343977b8323857287ffca4',
'78875068a1979fb910d5d8f37d316aa4',
1449689785
)
Argument | Type | Description |
---|---|---|
username | String | name property of \_users doc |
usersalt | String | salt property of \_users doc |
serversecret | String | couch_httpd_auth.secret of CouchDB configuration |
timestamp | Number | Number of seconds elapsed since 1 January 1970 00:00:00 UTC |
make_cookie_hash(UserName, Secret, TimeStamp) ->
SessionData = UserName ++ ":" ++ erlang:integer_to_list(TimeStamp, 16),
Hash = crypto:sha_mac(Secret, SessionData),
couch_util:encodeBase64Url(SessionData ++ ":" ++ ?b2l(Hash)).
All credits due to @christophwitzko, @indutny & @janl: https://gist.github.com/janl/4583f5eb4c0d8216cc5f
FAQs
generates valid CouchDB session IDs using username, salt, secret & timestamp
The npm package couchdb-generate-session-id receives a total of 1 weekly downloads. As such, couchdb-generate-session-id popularity was classified as not popular.
We found that couchdb-generate-session-id demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.