I dont want to name it index.html

Yeah not working still.

Your website works fine. Unfortunately, it seems like it has been flagged by Google Safe Browsing.
The advice in these posts should help:

3 Likes

try another browser

While it works in other browsers, InfinityFree suspends websites reported as unsafe in Google Safe Browsing, so I’d advise you to take the steps needed to resolve the situation as soon as possible.

6 Likes

Here is the error from Google

The site https://spoxblox.rf.gd/ contains harmful content, including pages that:

  • Try to trick visitors into sharing personal info or downloading software

https://transparencyreport.google.com/safe-browsing/search?url=spoxblox.rf.gd

2 Likes

Hi Sponge,

Here are a few indicators that your site may be flagged as phishing very easily.

  1. Your website title is uncommonly long and contains unnecessary capitalization.
<title>SPOXBLOX: A FREE Virtual World-Building Game with Avatar Chat, 3D Environments, and Physics</title>
  1. You have been repeating your homepage link in multiple a href tags.
<div id="Banner">
	<div id="Options">
		<div id="Authentication">
			<span><a href="https://spoxblox.rf.gd">Login</a></span>
		</div>
		...
	</div>
	<div id="Logo">
		<a title="SPOXBLOX" href="http://spoxblox.rf.gd/" ...>
			...
		</a>
	</div>
	<div style="float: right; height: 72px; width: 287px;">
		<table style="width:100%;height:100%">
			<tbody>
				<tr>
					<td valign="middle">
						<a class="SignUpAndPlay" href="https://spoxblox.rf.gd">
							...
						</a>
					</td>
				</tr>
			</tbody>
		</table>
	</div>
</div>
<div class="Navigation">
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">My SPOXBLOX</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">Games</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">Catalog</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">People</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">Builders Club</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">Forum</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">News</a>&nbsp;
		<a id="NewsFeed" href="https://spoxblox.rf.gd">...</a></span>
	<span><a class="MenuItem" href="https://spoxblox.rf.gd">Help</a></span>
</div>
  1. Your website image is hosted elsewhere which matches a common tactic of phishers reducing their costs.
<img src="https://cdn.discordapp.com/..." alt="SPOXBLOX" blankurl="http://t2.roblox.com:80/blank-267x70.gif" border="0">
  1. Your website does not have a proper css styling
  2. There is a login form on your homepage but with no valid actions, giving Google grounds to suspect malicious user info capture. Phishing sites normally do not include the action to avoid GoogleBot from identifying the ultimate location and risk having that blocked, instead, they add the action only upon someone clicks on submit via JavaScript. So leaving that one out is actually kinda suspicious to Google.
<form class="AspNet-Login" method="post">
	...
</form>
  1. A hidden iframe exists when your website loads just before the body tag.
<iframe id="google_esf" name="google_esf" src="./index_files/zrt_lookup.html" style="display: none;"></iframe>
  1. There are multiple references to using a non-recognised ad tool.
<script data-ad-client="ca-pub-9428704937125405" async="" src="./index_files/f.txt" type="text/javascript"></script>

In the meantime, with a high number of suspicious items on their scan, getting flagged for phishing is not that surprising. You should address the above issues asap to avoid losing the website due to suspension rules here or getting delisted from the Google index even without the suspension.

Cheers!

8 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.