Skip to content

Instantly share code, notes, and snippets.

@notcancername
Created October 31, 2024 21:33
Show Gist options
  • Save notcancername/972e99157ad42354ebcd9b9614c029f1 to your computer and use it in GitHub Desktop.
Save notcancername/972e99157ad42354ebcd9b9614c029f1 to your computer and use it in GitHub Desktop.
function memfrob(str) {
var out = "";
for (var i = 0; i < str.length; i++) {
out += String.fromCharCode(str.charCodeAt(i) ^ 42);
}
return out;
}
function apply(id, frobbed) {
document.getElementById(id).href = memfrob(atob(frobbed));
}
apply("av1fd", "Ql5eWlkQBQVOQ1lJRVhOBE1NBVxfZ2h/ExMZQHI=");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment