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 daemon that listens on a udp port and pushes messages to Rollbar.
rollbar-udp-agent requires:
Installing
Obtain a post_server_item access token from your project's Rollbar settings page and execute
ROLLBAR_ACCESS_TOKEN=post_server_item_access_token bash -c "$(curl -L https://raw.githubusercontent.com/lrascao/rollbar-udp-agent/master/setup.sh)"
Installing with pip
In a virtualenv, install like so::
sudo pip install rollbar-udp-agent
init.d script
rollbar-agent comes with an example init.d script, chkconfig compatible and tested on Fedora Linux, update-rc.d on Ubuntu Linux.
On Ubuntu, you'll need to add to rc.d. Run the following::
update-rc.d rollbar-udp-agent defaults
On Fedora, add to chkconfig::
sudo chkconfig --add rollbar-udp-agent
sudo chkconfig rollbar-udp-agent on
On other systems, check your system's documentation for its equivalent of chkconfig.
Now, start the service::
sudo service rollbar-udp-agent start
To check that it's running, tail its log file::
tail -f /var/log/rollbar-udp-agent.log
Configuration options for rollbar-udp-agent itself are in /etc/rollbar-udp-agent.conf
.
rollbar-udp-agent.conf At the bare minimum, you will want to change the following variables:
api_key
-- your Rollbar access token, specifically an API token that allows "post_server_item"The following options are optional and have default values
listen_port
-- the udp port to listen for messages on (default 7521)bind_host
-- interface to listen on (default is all interfaces)rollbar_url
-- url to post messages to (default https://api.rollbar.com/api/1/item/)event_chunk_size
-- number of events to chunk before sending to rollbar (default 50)event_chunk_bytes
-- number of bytes to chunk before sending to rollbar (default 1048576, 1MB)flush_interval
-- flush messages to rollbar period (default 30 seconds)bulk_report
-- wether to send messages in a single http request or several (default false)Contributions are welcome. The project is hosted on github at http://github.com/lrascao/rollbar-udp-agent
FAQs
Rollbar server-side UDP agent
We found that rollbar-udp-agent demonstrated a healthy version release cadence and project activity because the last version was released less than 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.