There is something going on with my web server ever since I got it. it always put ?i=1 in a parameter and I found out why and it is messing up things
here is the code
<html><body><script type="text/javascript" src="/aes.js" ></script><script>function toNumbers(d){var e=[];d.replace(/(..)/g,function(d){e.push(parseInt(d,16))});return e}function toHex(){for(var d=[],d=1==arguments.length&&arguments[0].constructor==Array?arguments[0]:arguments,e="",f=0;f<d.length;f++)e+=(16>d[f]?"0":"")+d[f].toString(16);return e.toLowerCase()}var a=toNumbers("f655ba9d09a112d4968c63579db590b4"),b=toNumbers("98344c2eee86c3994890592585b49f80"),c=toNumbers("fc3264bf18bcb0b1989a542e92c2cf16");document.cookie="__test="+toHex(slowAES.decrypt(c,2,a,b))+"; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/"; location.href="https://forum.tails1154.42web.io/admin/index.php?module=config-mycode&action=xmlhttp_test_mycode&i=1";</script><noscript>This site requires Javascript to work, please enable Javascript in your browser or use a browser with Javascript support</noscript></body></html>
and /aes.js DOES exist on my web server. it makes a cookie called test with a seemingly random value. is there an explanation for this? how can I remove it?