Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Zoom webhook links and added examples for other Webhook auth types #93

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pages/security/hmac.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: HMAC is, by far, the most popular authentication and message securi
- [Slack](https://api.slack.com/authentication/verifying-requests-from-slack)
- [Square](https://developer.squareup.com/docs/webhooks/step3validate)
- [Twilio](https://www.twilio.com/docs/usage/security#validating-requests)
- [Zoom](https://developers.zoom.us/docs/api/rest/webhook-reference/#verify-with-zooms-header)
{% /table %}
---

Expand Down Expand Up @@ -90,4 +91,4 @@ Like any other security control, HMAC is only as good as its implementation. In
})
```
1. Leverage HMAC signatures to implement [replay prevention](/security/replay-prevention), [versioning](/ops-experience/versioning), and [key rotation](/ops-experience/key-rotation)
1. Provide great [documentation](/ops-experience/documentation) and features for better [operations](/ops-experience/intro)
1. Provide great [documentation](/ops-experience/documentation) and features for better [operations](/ops-experience/intro)
1 change: 1 addition & 0 deletions src/pages/security/jwt-jwk-oauth2.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ description: Learn how webhook providers use OAuth, JSON Web Tokens (JWTs), and
- [Plaid](https://plaid.com/docs/api/webhooks/webhook-verification/)
- [SendGrid](https://docs.sendgrid.com/for-developers/tracking-events/getting-started-event-webhook-security-features#oauth-20)
- [Wix](https://devforum.wix.com/kb/en/article/about-webhooks)
- [Zoom](https://developers.zoom.us/docs/api/rest/webhook-reference/#token-authentication-oauth)

{% /table %}
---
Expand Down
4 changes: 2 additions & 2 deletions src/pages/security/one-time-verification-challenge.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description: Learn why and how webhook providers like Twitter, Okta, and Microso
- [Okta](https://developer.okta.com/docs/concepts/event-hooks/#one-time-verification-request)
- [Smartsheet](https://smartsheet.redoc.ly/tag/webhooksDescription#section/Creating-a-Webhook)
- [Twitter](https://developer.twitter.com/en/docs/twitter-api/enterprise/account-activity-api/guides/securing-webhooks)
- [Zoom](https://marketplace.zoom.us/docs/api-reference/webhook-reference/#revalidation)
- [Zoom](https://developers.zoom.us/docs/api/rest/webhook-reference/#validate-your-webhook-endpoint)
{% /table %}
---

Expand All @@ -48,4 +48,4 @@ Webhook notifications are not sent until the challenge response is successful.
Webhook integrations seem simple to secure at the surface. However, webhook URLs can be explored by malicious actors — acting as legitimate webhook consumers — to carry out Distributed Denial of Service (DDoS), Server Site Request Forgery (SSRF), and other attacks to the provider infrastructure.

The [best practices for webhook providers](/best-practices/webhook-providers#implement-security-on-egress-communication) provides guidelines for mitigating these risks in webhook communications.
{% /callout %}
{% /callout %}
2 changes: 1 addition & 1 deletion src/pages/security/shared-secret.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ description: Learn how webhook providers implement shared secrets — Basic Auth
- [mParticle](https://docs.mparticle.com/integrations/webhook/event/)
- [Okta Event Hooks](https://developer.okta.com/docs/concepts/event-hooks/#one-time-verification-request)
- [VMWare WorkspaceOne](https://docs.vmware.com/en/VMware-Workspace-ONE-UEM/services/System_Settings_On_Prem/GUID-AWT-SYSTEM-ADVANCED-API-NOTIF.html)
- [Zoom](https://marketplace.zoom.us/docs/guides/build/webhook-only-app)
- [Zoom](https://developers.zoom.us/docs/api/rest/webhook-reference/#basic-authentication)
{% /table %}

---
Expand Down
10 changes: 5 additions & 5 deletions src/pages/webhook-directory/zoom.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pageTitle: Zoom Webhooks Specs | Examples| How to integrate
description: Webhook specificactions for Zoom including Supported Events, Example Apps, Security Specs, and Documentations.
---

Zoom uses webhooks to notify third-party apps of events such as Meetings, Webinars,Recordings, User Activity, Billing, and Chat Messages created
Zoom uses webhooks to notify third-party apps of events such as Meetings, Webinars, Recordings, User Activity, Billing, Chat Messages created, and Video SDK

{% table %}
---
Expand All @@ -15,7 +15,7 @@ Zoom uses webhooks to notify third-party apps of events such as Meetings, Webina
- **[Zero Downtime Rotation](/ops-experience/key-rotation)**: ❌
---
* ## Supported Events
* - **[Official Doc ↗](https://marketplace.zoom.us/docs/api-reference/webhook-reference/#objects-actions-and-events)**
* - **[Official Doc ↗](https://developers.zoom.us/docs/api/)**
---
* ## Security Headers
* - **Signature Header**: `x-zm-signature`
Expand All @@ -26,11 +26,11 @@ Zoom uses webhooks to notify third-party apps of events such as Meetings, Webina
- **Timestamp Format**: Unix Date
---
* ## Documentation
* - [Official Doc ↗](https://marketplace.zoom.us/docs/api-reference/webhook-reference/#verify-webhook-events)
- [IP Origins for whitelist ↗](https://marketplace.zoom.us/docs/api-reference/webhook-reference/#ip-addresses)
* - [Official Doc ↗](https://developers.zoom.us/docs/api/rest/webhook-reference/)
- [IP Origins for whitelist ↗](https://developers.zoom.us/docs/api/rest/webhook-reference/#ip-addresses)
---
* ## SDKs and Sample Code
* - [NodeJS Sample ↗](https://github.com/zoom/webhook-sample-node.js)
* - [NodeJS Sample ↗](https://github.com/zoom/webhook-sample)
{% /table %}

---
Expand Down