🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Bug? Occasional script-like junk above banner

Started by
4 comments, last by ericrrichards22 8 years, 8 months ago
The following text occasionally loads at the top of the page, perhaps once a day or so...

I'm using Internet Explorer 11 on Windows 7.


ode on iOS5+ if (hasTouch && document.querySelectorAll && !iOS5) { var i, len, element, dropdowns = document.querySelectorAll("#dark li.drop > a"); function menuTouch(event) { // toggle flag for preventing click for this link var i, len, noclick = !(this.dataNoclick); // reset flag on all links for (i = 0, len = dropdowns.length; i < len; ++i) { dropdowns[i].dataNoclick = false; } // set new flag value and focus on dropdown menu this.dataNoclick = noclick; this.focus(); } function menuClick(event) { // if click isn't wanted, prevent it if (this.dataNoclick) { event.preventDefault(); } } for (i = 0, len = dropdowns.length; i < len; ++i) { element = dropdowns[i]; element.dataNoclick = false; element.addEventListener("touchstart", menuTouch, false); element.addEventListener("click", menuClick, false); } } });document.observe("dom:loaded", function() {var FAVE_TEMPLATE = ''; var ajaxUrl = ipb.vars['base_url'] + "app=search&module=ajax§ion=taginfo&md5check=" + ipb.vars['secure_hash']; ipb.hoverCardRegister.initialize( 'taginfo', { 'w' : '300px', 'delay': 750, 'position' : 'bottomLeft' , 'getId': true, 'setIdParam': 'tag', /*'ajaxUrl' : ajaxUrl,*/ 'callback' : initTagLike } ); function initTagLike(hoverCardObject, id) { var ajaxUrl = ipb.vars['base_url'] + "app=search&module=ajax§ion=taginfo&md5check=" + ipb.vars['secure_hash'] + "&tag=" + encodeURIComponent($(id).readAttribute('hovercard-id')); new Ajax.Request( ajaxUrl, { method: 'post', evalJS: 'true', onSuccess: function(t) { hoverCardObject.card.update(t.responseText); ipb.delegate.register('.ftoggle' , ipb.like.clicked ); ipb.delegate.register('._fsubmit', ipb.like.save ); ipb.delegate.register('._funset' , ipb.like.remove ); ipb.delegate.register('._fmore' , ipb.like.more ); /* Make sure hcards work */ ipb.like.resetEvents(); } }); } }); var _gaq = _gaq || []; var pluginUrl = '//www.google-analytics.com/plugins/ga/inpage_linkid.js'; _gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', 'UA-279474-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); 
Using the DOM inspector, this text starts here:


<body id="ipboard_body">ode on iOS5+
Advertisement
Probably related to: http://www.gamedev.net/topic/672633-gdnet-triggers-avast-convinced-this-is-serious/

If you happen to get it to happen again, please save the entire page with resources, and post it here. If it is related to those advertisements, there might be some malicious javascript somewhere, and there're members who are interested in analyzing it.
Will do.
I get this all the time on my mobile device and have been getting it for more than a year. I think this is a bug and not malicious code.

I got it again earlier and attempted to save the page, but it LOOKS like IE11 re-requested the page because what it saved to disk did not contain the same HTML as what was loaded in the browser, so I'm not confident it saved a state that would be useful for diagnosing.

Can you grab it with Chrome/Firefox devtools?

I don't think I've ever seen it

Eric Richards

SlimDX tutorials - http://www.richardssoftware.net/

Twitter - @EricRichards22

This topic is closed to new replies.

Advertisement