Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
omniauth-trezor
provides an OmniAuth strategy for Trezor Connect.
With this strategy your users can use popular Bitcoin Trezor to login to your website.
Add this line to your application's Gemfile:
gem 'omniauth-trezor'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-trezor
In Rails app, add config/initializers/omniauth.rb:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :trezor, hosticon: "https://image.url"
end
Or, in a Sinatra app:
use OmniAuth::Builder do
provider :trezor, hosticon: 'https://example.com/icon.png'
end
post '/auth/trezor/callback' do
auth = request.env['omniauth.auth]
# Use the auth info
end
These are the options you can specify that are relevant to Omniauth Trezor:
Challenge-response authentication via TREZOR. To protect against replay attacks, you must use a server-side generated and randomized challenge_hidden for every attempt. You can also provide a visual challenge that will be shown on the device.
:visual_challenge
- Text that will be shown on the device (defaults to Time.now.strftime("%Y-%m-%d %H:%M:%S")
):hidden_challenge
- Hidden randomized hex string used to protect agains replay attacks (defaults to SecureRandom.hex(32)
):hosticon
- Optional site icon https url. Should be at least 48x48px.After successful authentication request.env['omniauth.auth'].extra
contains all data that was used to verify the signature: visual_challenge
, hidden_challenge
, signature
and public_key
for your additional needs (ie. audit log).
Bug reports and pull requests are welcome on GitHub at https://github.com/kraxnet/omniauth-trezor.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that omniauth-trezor 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.