Skip to content

Commit

Permalink
Replace the secret key with a different query parameter. (generated …
Browse files Browse the repository at this point in the history
…by blackbox.ai )
  • Loading branch information
saiyamdubey committed Feb 13, 2024
1 parent 479076d commit 37d31b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
url = url.replace(/\?hl=en$/, '');
url = url.replace(/\?igsh=MWNqM3Jkemx0ZGNpaA==$/, '');
url = url.replace(/\/[^/]*$/, '');
url = url + process.env.SECRET_KEY;
url = url + "/?__a=1&__d=dis";
console.log(url)
}

Expand Down

0 comments on commit 37d31b5

Please sign in to comment.