Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.8k views
in Q2A Core by
Hi, I just ran into this website and did a check of my site. I got a few warnings about a suspicious seo spam.

It turns I got the same messages when looking at this site

http://sitecheck.sucuri.net/results/www.question2answer.org/qa/

I 'm thinking there is some scaremongering involved (in order to sell their product), but I thought of posting it in here so someone more knowledgeable takes a look

1 Answer

+3 votes
by
edited by

+1

Since HTML code below is not Malware, it would be miss recognition of that product.

<div style="position:absolute; left:-9999px; top:-9999px;">

However, malware frequently hide embedded code with absolute position (-9999px). Therefore, I think this code should be improved.

qa-include/qa-theme-base.php::body_hidden()

Before:

<div style="position:absolute; left:-9999px; top:-9999px;">

After:

<div style="position:absolute; display:none;">

 

...