mirror of
https://github.com/aithedev/X-Bogus.git
synced 2025-04-06 05:45:42 +08:00
18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
const { sign } = require("./X-Bogus.js");
|
|
|
|
// Replace the empty strings with valid values
|
|
const url = "";
|
|
const userAgent = "";
|
|
|
|
// Extract the query string from the URL
|
|
const query = url.includes("?") ? url.split("?")[1] : "";
|
|
|
|
// Generate the X-Bogus value
|
|
const xbogus = sign(query, userAgent);
|
|
|
|
// Add the X-Bogus value to the URL
|
|
const newUrl = url + "&X-Bogus=" + xbogus;
|
|
|
|
// Output the new URL to the console
|
|
console.log(newUrl);
|