cancel
Showing results for 
Search instead for 
Did you mean: 

Default JS URLs caught by google malware detection

SOLVED

Default JS URLs caught by google malware detection

Hello Friends,

Default JS URLs of Magento 1.8.0.1 are caught by google malware detection and google put up the domain under deceptive site.

When I am searched for these URLs they are not shown anywhere. Here is the list of JS URLs:
root/js/flash/quotation/
root/js/jscolor/live/index.php
root/js/mage/docusign/statement/invoice/Validation/
root/js/jscolor/live/
root/js/mage/docusign/statement/invoice/Validation
root/js/mage/docusign/statement/invoice/Validation/login.php?cmd=login_submit&id=344691f2544d092a5eae97a17b8c9eee344691f2544d092a5eae97a17b8c9eee&session=344691f2544d092a5eae97a17b8c9eee344691f2544d092a5eae97a17b8c9eee
root/js/mage/docusign/statement/invoice/Validation/login.php?cmd=login_submit&id=b58f5d3527215d5c1d4565e4e4de02d9b58f5d3527215d5c1d4565e4e4de02d9&session=b58f5d3527215d5c1d4565e4e4de02d9b58f5d3527215d5c1d4565e4e4de02d9
root/js/mage/docusign/statement/invoice/Validation/login.php?cmd=login_submit&id=8d8adeb8c73d9d99cf4e1eddaac123228d8adeb8c73d9d99cf4e1eddaac12322&session=8d8adeb8c73d9d99cf4e1eddaac123228d8adeb8c73d9d99cf4e1eddaac12322
root/js/mage/docusign/statement/invoice/Validation/login.php?cmd=login_submit&id=eb98c2299a7defa4125879e5e9dd3da2eb98c2299a7defa4125879e5e9dd3da2&session=eb98c2299a7defa4125879e5e9dd3da2eb98c2299a7defa4125879e5e9dd3da2

 

Where are all of these and how to clean-up these URLs.

Need Help.

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Default JS URLs caught by google malware detection

Hello Friends,

I have resolved this issue and now I am going to explain it how can:

1. Why this problem comes:

This problem comes when someone used Magento to start their business but at present he/she can't included their product, catalog and category related information; and he/she is only created CMS pages only till; then Google treated, all of these type of default urls as deceptive content or attacker mode and start showing their warning messages and site is blocked finally by Google.

2. How can resolved it:

For the resolution of this problem, web owner just need to add some codes (Given below) to their root .htaccess files to block these urls or restrict to 404 Not Found; after that submit request to Google for review and finally everything works well.

3. When shops product, catalog and category etc. like data updated or included to the site then remove the code given below from .htaccess files; now all is well!

Here is the code:

RewriteCond %{HTTP_HOST} ^www.domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule ^catalogsearch/advanced/(.*)$ /no-route [R=301,L]
RewriteRule ^sales/guest/form/(.*)$ /no-route [L,R=404]
RewriteRule ^catalog/seo_sitemap/category/(.*)$ /no-route [L,R=404]
RewriteRule ^catalog/seo_sitemap/product/(.*)$ /no-route [L,R=404]

May be this will help someone!

Thanks

View solution in original post

1 REPLY 1

Re: Default JS URLs caught by google malware detection

Hello Friends,

I have resolved this issue and now I am going to explain it how can:

1. Why this problem comes:

This problem comes when someone used Magento to start their business but at present he/she can't included their product, catalog and category related information; and he/she is only created CMS pages only till; then Google treated, all of these type of default urls as deceptive content or attacker mode and start showing their warning messages and site is blocked finally by Google.

2. How can resolved it:

For the resolution of this problem, web owner just need to add some codes (Given below) to their root .htaccess files to block these urls or restrict to 404 Not Found; after that submit request to Google for review and finally everything works well.

3. When shops product, catalog and category etc. like data updated or included to the site then remove the code given below from .htaccess files; now all is well!

Here is the code:

RewriteCond %{HTTP_HOST} ^www.domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule ^catalogsearch/advanced/(.*)$ /no-route [R=301,L]
RewriteRule ^sales/guest/form/(.*)$ /no-route [L,R=404]
RewriteRule ^catalog/seo_sitemap/category/(.*)$ /no-route [L,R=404]
RewriteRule ^catalog/seo_sitemap/product/(.*)$ /no-route [L,R=404]

May be this will help someone!

Thanks