Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
authlogic_facebook_shim
Advanced tools
= authlogic_facebook_shim
This is a plugin for integrating facebook sessions into authlogic. It relies on using the Javascript SDK to login to facebook. Currently the shim support koala (https://github.com/arsduo/koala) for access the graph API but if you have a preferred library it is easy to add an adapter.
This requires a config/facebook.yml file that looks like this:
development:
app_id: appid
api_key: apikey
secret_key: secretkey
production:
app_id: appid
api_key: apikey
secret_key: secretkey
If you don't have different facebook credentials for different environments you can set these in UserSession
facebook_app_id 'appid'
facebook_api_key 'apikey'
facebook_secret_key 'secretkey'
In your controller you probably have something like this;
def current_user_session
@current_user_session ||= AccountSession.find
end
def current_user
@current_user ||= current_user_session.try(:user)
end
def logged_in?
current_user && !current_user_session.stale?
end
To get hold of the facebook particulars you will need to add something like this;
def facebook_user
current_user_session.try(:facebook_user)
end
def facebook_user?
!facebook_user.nil?
end
def facebook_session?
current_user_session.try(:facebook_session?)
end
== Adapters
Currently the only adapter in the shim is for koala (https://github.com/arsduo/koala) but if you have a preferred wrapper for accessing the graph API please fork the project and add your own adapter (with tests) then send me a pull request.
== Note on Patches/Pull Requests
== Copyright
Copyright (c) 2010 James McCarthy. See LICENSE for details.
FAQs
Unknown package
We found that authlogic_facebook_shim 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.