You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We do not want our example server to be able to be used as a DDOS proxy.
For each API request a user does, we issue a fetch to the third party server in the URL.
This can be used to launch a DDOS attack using our REST server's bandwidth.
Here are a few possible solutions:
Do not a fetch for the same file if the same URL is already being fetched.
Rate limit how many fetches we do to each domain.
Only allow fetching from a domains that is in a whitelist.
The text was updated successfully, but these errors were encountered:
We do not want our example server to be able to be used as a DDOS proxy.
For each API request a user does, we issue a fetch to the third party server in the URL.
This can be used to launch a DDOS attack using our REST server's bandwidth.
Here are a few possible solutions:
The text was updated successfully, but these errors were encountered: