
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Most federal district courts have RSS feeds with updates on their latest docket entries. CourtRSS makes it easy to stay informed in real-time by polling these and searching for keywords that interest you. If a match is found, CourtRSS displays an alert window or sends a message through Discord webhooks.
You can install CourtRSS directly from PyPI:
pip install courtrss
Once installed, you can run CourtRSS in two ways:
This is the easiest and most flexible option. Here's how you can set it up:
rss_urls:
- https://example.com/rss_feed_1
- https://example.com/rss_feed_2
keywords:
- "Neonode"
- "Tapestry"
interval: 60 # Time interval between feed checks in seconds
retries: 3 # How many times to retry fetching a failed feed
retry_interval: 20 # How long to wait between retries in seconds
notifications:
- type: window_notification
- type: discord_webhook
webhook_url: https://discord.com/api/webhooks/your_webhook_url_here
To run CourtRSS with this config, just call it with the --config
argument:
courtrss --config /path/to/config.yaml
If you prefer the command line, you can directly pass RSS URLs and keywords as comma-separated arguments. Like this:
courtrss --rss_urls "https://example.com/rss1,https://example.com/rss2" --keywords "Neonode,Tapestry" --interval 60 --retries 3 --retry_interval 20
This will check the provided feeds every 60 seconds, retry up to 3 times on failure, and notify you about matching entries.
Let’s say you want to monitor a couple of court RSS feeds for the keywords "Apple" and "Cisco", and get notified via the full-screen green window:
rss_urls:
- https://court.example.com/rss_feed_1
- https://court.example.com/rss_feed_2
keywords:
- "Apple"
- "Cisco"
interval: 60
notifications:
- type: window_notification
Run it like this:
courtrss --config court_monitor.yaml
Every time a keyword match is found, you’ll get a big, green window notifying you about it!
You can send the notifications straight to your Discord server. Set up your config.yaml like this:
rss_urls:
- https://court.example.com/rss_feed_1
- https://court.example.com/rss_feed_2
keywords:
- "Verdict"
- "Sentencing"
interval: 120 # Every 2 minutes
notifications:
- type: discord_webhook
webhook_url: https://discord.com/api/webhooks/your_webhook_url_here
Now, CourtRSS will send you messages in your Discord channel whenever a match occurs.
FAQs
A package to monitor court RSS feeds for keywords.
We found that courtrss 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.