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.
A simple interface to integrate with http://outbound.io
Add this line to your application's Gemfile:
gem 'outbound'
And then execute:
$ bundle
Or install it yourself as:
$ gem install outbound
Easy and simple to use.
# Create the object
ob = Outbound::API.new("your_api_key")
# identify a user
ob.identify(user_id, traits)
# track a user
ob.track(user_id, event, payload)
Here is an example in sinatra.
require 'sinatra'
require 'outbound'
require 'multi_json'
before "/*" do
@ob ||= Outbound::API.new("your_api_key")
end
post '/identify' do
content_type :json
traits = {
first_name: params[:first_name],
last_name: params[:last_name],
email: params[:email]
}
MultiJson.dump(@ob.identify("SOME_UNIQUE_ID", traits))
end
post '/track' do
content_type :json
payload = {
item: params[:item]
}
MultiJson.dump(@ob.track("SOME_UNIQUE_ID", "purchased an item", payload))
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that continu-outbound 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.