Website URL in google shows wrong, but .htaccess all OK

Discussion regarding Joomla! 1.5 security issues.
Joomla! Vulnerable Extensions: http://feeds.joomla.org/JoomlaSecurityV ... Extensions

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Security Checklist
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
R3yisgood
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Wed Jun 12, 2013 8:43 pm

Website URL in google shows wrong, but .htaccess all OK

Post by R3yisgood » Wed Jun 12, 2013 9:04 pm

hi,

is anyone ever experience what i got now?

so recently all of my SEO result is taken by this web,

and the result shows my website contain and title but not my URL !!


though when you clicked that web(aqiqahjakarta.com) is selling goat not a virtual credit card

can you guys help me , which part is compromised or is this just google bug?



Code: Select all

RewriteBase /
RewriteEngine On

########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section

Code: Select all

<?php
/**
* @version		$Id: index.php 14401 2010-01-26 14:10:00Z louis $
* @package		Joomla
* @copyright	Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license		GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Set flag that this is a parent file
define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;

/**
 * CREATE THE APPLICATION
 *
 * NOTE :
 */
$mainframe =& JFactory::getApplication('site');

/**
 * INITIALISE THE APPLICATION
 *
 * NOTE :
 */
// set the language
$mainframe->initialise();

JPluginHelper::importPlugin('system');

// trigger the onAfterInitialise events
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
$mainframe->triggerEvent('onAfterInitialise');

/**
 * ROUTE THE APPLICATION
 *
 * NOTE :
 */
$mainframe->route();

// authorization
$Itemid = JRequest::getInt( 'Itemid');
$mainframe->authorize($Itemid);

// trigger the onAfterRoute events
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
$mainframe->triggerEvent('onAfterRoute');

/**
 * DISPATCH THE APPLICATION
 *
 * NOTE :
 */
$option = JRequest::getCmd('option');
$mainframe->dispatch($option);

// trigger the onAfterDispatch events
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
$mainframe->triggerEvent('onAfterDispatch');

/**
 * RENDER  THE APPLICATION
 *
 * NOTE :
 */
$mainframe->render();

// trigger the onAfterRender events
JDEBUG ? $_PROFILER->mark('afterRender') : null;
$mainframe->triggerEvent('onAfterRender');

/**
 * RETURN THE RESPONSE
 */
echo JResponse::toString($mainframe->getCfg('gzip'));
You do not have the required permissions to view the files attached to this post.

User avatar
dattard
Joomla! Ace
Joomla! Ace
Posts: 1035
Joined: Tue Apr 11, 2006 7:29 pm
Contact:

Re: Website URL in google shows wrong, but .htaccess all OK

Post by dattard » Wed Jun 12, 2013 9:38 pm

What version of Joomla are you running? Could you be running some extension which is insecure? A hack attack does not only come from your htaccess file.
https://www.collectiveray.com - We make Joomla and WordPress Easy: Tutorials, Tips and Tricks, Lots of Free Modules incl. Easy Paypal, Popin Window, Random Flash, Google AdSense, Slide Menu (dropdown), 2CO / Paypal payment, [youtube] module, and more!

R3yisgood
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Wed Jun 12, 2013 8:43 pm

Re: Website URL in google shows wrong, but .htaccess all OK

Post by R3yisgood » Wed Jun 12, 2013 9:41 pm

i'm running 1.5 joomla

User avatar
dattard
Joomla! Ace
Joomla! Ace
Posts: 1035
Joined: Tue Apr 11, 2006 7:29 pm
Contact:

Re: Website URL in google shows wrong, but .htaccess all OK

Post by dattard » Wed Jun 12, 2013 9:44 pm

Which minor version?
https://www.collectiveray.com - We make Joomla and WordPress Easy: Tutorials, Tips and Tricks, Lots of Free Modules incl. Easy Paypal, Popin Window, Random Flash, Google AdSense, Slide Menu (dropdown), 2CO / Paypal payment, [youtube] module, and more!

R3yisgood
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Wed Jun 12, 2013 8:43 pm

Re: Website URL in google shows wrong, but .htaccess all OK

Post by R3yisgood » Wed Jun 12, 2013 9:47 pm

Database Version: 5.1.68-cll
Database Collation: utf8_general_ci
PHP Version: 5.3.16
Web Server: Apache
Web Server to PHP interface: cgi-fcgi
Joomla! Version: Joomla! 1.5.22 Stable [ senu takaa ama woi ] 04-November-2010 18:00 GMT
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36
--------------------------------------------

now all my seo results are missing from google and yahoo, i think i got hacked

(because i was on google page 1 rank 2/3)

is there something to do with the crawling or something?

User avatar
dattard
Joomla! Ace
Joomla! Ace
Posts: 1035
Joined: Tue Apr 11, 2006 7:29 pm
Contact:

Re: Website URL in google shows wrong, but .htaccess all OK

Post by dattard » Wed Jun 12, 2013 10:09 pm

The latest Joomla stable version for 1.5 is 1.5.26 ... so you should upgrade to that for sure. Joomla 1.5 is end of life so you should consider upgrading to Joomla 2.5...you'll also need to make sure that any components you are using have not been found to contain extensions. It looks like that your website has been hacked - the trouble is, cleaning up a hacked website is quite difficult unless you have a full backup from before you got hacked.
https://www.collectiveray.com - We make Joomla and WordPress Easy: Tutorials, Tips and Tricks, Lots of Free Modules incl. Easy Paypal, Popin Window, Random Flash, Google AdSense, Slide Menu (dropdown), 2CO / Paypal payment, [youtube] module, and more!

User avatar
Slackervaara
Joomla! Ace
Joomla! Ace
Posts: 1115
Joined: Sat Aug 13, 2011 6:27 am

Re: Website URL in google shows wrong, but .htaccess all OK

Post by Slackervaara » Thu Jun 13, 2013 4:37 am

Run the Forum Post Assistant and post the output here, so we can see, if your site have any security weakness.


Locked

Return to “Security in Joomla! 1.5”