Anyone else using free hosting services?
I am using
ultifreehosting.com, I uploaded there a php file whose computed result I want to download via a fetch request but the site's protection basically prevents me from downloading the file telling me that I need to execute javascript to get the response.
<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("a03df7564625bf52c6018adf425ab5c6");document.cookie="__test="+toHex(slowAES.decrypt(c,2,a,b))+"; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/"; location.href="http://goth.webpg.top/?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>
I use nodejs to download the response with node-fetch
fetch('http://mysite.webpg.top/')
.then(res => res.text())
.then(json => console.log(json));
I don't believe anyone hasn't come up with a way to bypass this.
Obviously google returns only failed attempts of people switching to different hosting providers.
I am going to retry tomorrow.