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.
An API server to receive webhook events from Sonarr and Radarr and send SMS messages.
notifierr is an SMS notification service used in conjunction with Radarr/Sonarr to send SMS notifications when movies and TV shows are available to watch.
The easiest way to install notifierr is with pip
python3 -m pip install notifierr
You can also clone the repository directly and run setup.py manually
git clone https://github.com/adamsbytes/notifierr.git
cd notifierr
python3 setup.py install
You must edit notifierr/config.py
with your own values before starting the API server. You'll also need to set some environment variables, depending on which SMS provider you're using.
The following environment variables are required and can be found in your Twilio console:
TWILIO_ACCOUNT_SID
: Twilio account SID
TWILIO_AUTH_TOKEN
: Twilio auth token
TWILIO_FROM_NUMBER
: the Twilio phone number you want to send messages from
NOTE: pip installs may need to add ~/.local/bin
to their PATH
For pip installs:
notifierr --host 0.0.0.0 --port 8181
To manually start the server:
$appdir/cli.py --host 0.0.0.0 --port 8181
GET /version
: responds with the running version of notifierr
POST /message/movie/{uid}
: sends a detailed notification message for new movies (Radarr) to the phone numbers associated with uid
POST /message/tv/{uid}
: sends a detailed notification message for new TV episodes (Sonarr) to the phone numbers associated with uid
The app uses the UID portion of http://ip:8181/message/tv/UID
to select which phone numbers to use for the message. These are configured in the app's config.py
file.
To have granular control over which numbers are messaged about which downloads, use Tags in Radarr/Sonarr!
For example, to let Dave know when his favorite show is ready, put his number in the config.py
with any UID you'd like. Tag Dave's show with a unique tag, then create a notification that triggers with that same tag and use a URL containing Dave's UID at the end.
Once notifierr is running, in Radarr/Sonarr, visit Settings > Connect and create a new Connection.
For the connection type, select Webhook
For the notification triggers, choose On Download
or On Import
(depending on the option available)
For the URL, enter http://notifierr-ip-address:8181/message/tv/$uid
, replacing $uid
with the UID you entered in config.py
to correspond with the numbers who should receive the message
For the method, select POST
Press Test
to validate the connection, then press Save
.
FAQs
An API server to receive webhook events from Sonarr and Radarr and send SMS messages.
We found that notifierr 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.
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.