I have created a website using WordPress. After some days, Chrome is showing Deceptive site ahead warning. But Firefox, Opera, Edge don’t show any warning.
I have added my site to Google Search Console. In Security Issues tab, it says No issues detected. But google chrome is still showing the warning.
How can I fix this issue? Is there a way to submit my site for a review?
UPDATE:
I followed this link provided by @scytale and followed the following steps. But it is still the warning.
- Scan Website for Malware or Threat: I have scanned my website using Sucuri, ReScan, VirusTotal, and Quttera. None of the scans detected any malware in the website.
- Install SSL Certificate Properly: I am using AutoSSL from cPanel Inc. If I click on the alert icon at the left of warning, it shows the certificate is valid. So I guess my SSL is okay.
- Redirect the Website From HTTP to HTTPS (301 Redirections): I have enabled in just like the example they provided. All http requests are being redirected to https.
- Remove Mixed Content Warning: I have tested each individual page and haven’t found any Mixed content.
The issue is, google search console is not showing any warning. So there is not option to request a review. Is there any other way I can ask google for a review? What else can I do?
2
Answers
According to Google the warning appears when “The site you try to visit might be a phishing site.” However, if this were the case I would have thought it would be identified in Google Search Console.
dZone (a reputable security site) says the warning can appear for these reasons:
Google and other browser don’t report issue this is unlikely.
installed incorrectly or not issued by an “approved” certificate
authority
obtained by HTTP (no S) URLs e.g. images, CSS, your or 3rd party
scripts. However, I’m pretty sure some of my pages use 3rd party
http affiliate scripts and I don’t get this warning.
To fix check these issues and correct accordingly.
Its some time since I’ve used search console/webmaster tools but if Google has completed indexing of all your pages I would have thought it would also identify issues like mixed content. N.B. https://example.com and http://example.com are treated as “different sites” and you have to select appropriately in console. This Chrome extension claims to identify causes of mixed content for you (I’ve not used and have no idea as to its reliability).
Edit following request from Zakaria
I’ve no personal experience of this but I’ve done a bit of Googling:
In my case my website! (hosted on
vercel
) used SSR & reached timeout so didn’t opened in other browsers & in my chrome gave security error.My website didn’t have any security error as I checked it in
https://quttera.com/
.so I changed
getServerSideProps
togetStaticProps
& changed the domain-name of my website invercel
& it worked.😊