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.
A simple Ruby wrapper to help use the Facebook Graph API.
Documentation on the Graph API is available here: http://developers.facebook.com/docs/
This code is based off of the Python SDK - http://github.com/facebook/python-sdk/
gem install rfgraph
Without auth token
require 'rfgraph'
req = RFGraph::Request.new
req.get_object("19292868552")
req.get_object("99394368305/photos")
req.get_object("331218348435", :metadata => 1)
With auth token
require 'rfgraph'
fauth = RFGraph::Auth.new(APP_ID, APP_SECRET)
# Get the URL to redirect your user to in their web browser.
# For options see: http://developers.facebook.com/docs/authentication/
# For scope permissions see: http://developers.facebook.com/docs/authentication/permissions
auth_url = fauth.authorize_url("http://yourwebsite.com/callback", :display => :popup, :scope => [])
# Get the code that facebook returns after the user auths your app and turn that into a auth token
# Make sure that the callback url is the same as in the previous request, otherwise the request will fail
auth_token = fauth.authorize("http://yourwebsite.com/callback", FACEBOOK_CODE)
# Make some requests using the auth token
request = RFGraph::Request.new(auth_token)
request.get_object("me")
request.get_object("me/friends")
request.put_wall_post("Awesome message!")
Copyright (c) 2010 Conor Hunt conor.hunt@gmail.com Released under the MIT license
FAQs
Unknown package
We found that namxam-rfgraph 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.