Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cloudflare-youtube-feed-discord-webhook
Advanced tools
Send a Discord webhook whenever a certain channel creates/schedules/modify a video/stream using Cloudflare Workers
Send a Discord webhook (demo) whenever your oshi a certain channel creates/schedules/modify a video/stream using Cloudflare Workers.
Before proceeding, you need a Cloudflare account (sign up here).
# install wrangler
npm install --global wrangler
# authenticate wrangler
wrangler login
# cd my-worker
wrangler init -y
KV Namespace is used to store the API responses on successful webhook message, so we won't unnecessarily send a webhook more than once (unless it's modified).
Also add the binding into the Env
interface. For example if you created a KV Namespace with the name YOUTUBE_RECORD
, then your Env
would be:
export interface Env {
YOUTUBE_RECORD: KVNamespace
}
I'm bad at naming something, please open an issue if you have suggestion.
npm install cloudflare-youtube-feed-discord-webhook
Put the handle
in your worker handlers depending on your needs (I recommend scheduled handler), it will send the webhooks whenever the handle
gets executed. See Options for a list of available options.
For example If you use scheduled handler.
// src/index.ts
import { handle } from 'cloudflare-youtube-feed-discord-webhook'
export interface Env {
YOUTUBE_RECORD: KVNamespace
}
export default {
async scheduled(_, env) {
await handle({
channelIds: ['UC-hM6YJuNYVAmUWxeIr9FeA', 'UC54JqsuIbMw_d1Ieb4hjKoQ'],
store: env.YOUTUBE_RECORD,
storeKey: 't-key',
webhookUrl: 'https://discord.com/api/webhooks/~~',
})
},
} as ExportedHandler<Env>
Multiple handle
also works, simply create multiple handle
s and await
them all.
Don't forget to add cron-triggers
to wrangler.toml
if you use a scheduled handler.
[triggers]
# executes every 5 minutes
crons = ["*/5 * * * *"]
See the JSDoc src/types.ts
TBD
Here's some demo, yes I'm a light mode user.
FAQs
Send a Discord webhook whenever a certain channel creates/schedules/modify a video/stream using Cloudflare Workers
We found that cloudflare-youtube-feed-discord-webhook 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.