vBulletin.v3.7.3.Patch.Level.1.PHP.NULLIFIED-vBGN

-Hammad-

New Member
Code:
[]------------------------------------------------------------------------------[]
||  ##########################################################################  ||
||  #                            ______ _____  _   _                         #  ||
||  #                            | ___ \  __ \| \ | |                        #  ||
||  #                      __   _| |_/ / |  \/|  \| |                        #  ||
||  #                      \ \ / / ___ \ | __ | . ` |                        #  ||
||  #                       \ V /| |_/ / |_\ \| |\  |                        #  ||
||  #                        \_/ \____/ \____/\_| \_/                        #  ||
||  #------------------------------------------------------------------------#  ||
||  #               vBulletin.v3.7.3.Patch.Level.1.PHP.NULLIFIED-vBGN        #  ||
||  #------------------------------------------------------------------------#  ||
||  ##########################################################################  ||
||  #                            www.vBGNW.com                               #  ||
||  ##########################################################################  ||
||                                                                              ||
||  #[ReLeAsE iNfO]──────────────────────────────────────────────────────────#  ||
||  # []  Supplied By  : vBGN TEAM                                           #  ||
||  # [] Nullified By  : vBGN TEAM                                           #  ||
||  # []  Packaged By  : vBGN TEAM                                           #  ||
||  # [] Release Date  : 04/09/2008 (Thur. 04th Sep. 2008)                   #  ||
||  # [] Script Info   : Bulletin Board system                               #  ||
||  # [] Script Type   : PHP/MySQL                                           #  ||
||  # [] Protection    : N/A                                                 #  ||
||  # [] Demo Provided : NO                                                  #  ||
||  # [] Demo URL/URI  : N/A                                                 #  ||
||                                                                              ||
||  #[OvErViEw]──────────────────────────────────────────────────────────────#  ||
||  # vBulletin® gets people talking.                                        #  ||
||  # vBulletin is a professional, affordable community forum solution.      #  ||
||  # Thousands of  clients, including many industry leading blue chip       #  ||
||  # companies, have chosen vBulletin - It's the ideal choice for any size  #  ||
||  # of community.                                                          #  ||
||  # Making your site a hub for information and discussion encourages       #  ||
||  # visitors to return again and again. It's also a highly effective way   #  ||
||  # of improving your service  to customers or users of your website.      #  ||
||                                                                              ||
||                                www.vbulletin.com                             ||
||  #[OtHeR NoTeS]───────────────────────────────────────────────────────────#  ||
||  # Files modified in the patch release are:                               #  ||
||  #     /global.php                                                        #  ||
||  #        /includes/class_core.php                                        #  ||
||  #        /includes/functions.php                                         #  ||
||  #        /includes/version_vbulletin.php                                 #  ||
||  #───────────────────────────────────────                                 #  ||
||  # If you wish to keep your current files, and apply the patched files    #  ||
||  # only, please see the release thread on vBGN for 3.7.3 Patch Level 1.   #  ||
||                                                                              ||
||  #[GrOuP CoNtAcT]─────────────────────────────────────────────────────────#  ||
||  # [] Website      : www.vbgnw.com                                        #  ||
||  # [] E-Mail       : [email protected]                                      #  ||
||  # [] Contact No.  : N/A                                                  #  ||
||                   ┌─────────────────────────────────────────┐                ||
||                   │ vBGN IS A WEB-RELATED GROUP AND WE DO   │                ||
||                   │ NOT ALLOW ANYONE TO REDISTRIBUTE OUR    │                ||
||                   │ RELEASES                                │                ||
||                   │  WITHOUT CONSENT OR WITHOUT THE NFO FILE│                ||
||                   └─────────────────────────────────────────┘                ||
[]------------------------------------------------------------------------------[]
 

Gh0st

New Member
Oh, didn't know PL1 was released - thanks for the updates/patches! Just downloaded the patches. =]

Thanks.
 

Kfir

New Member
They are pretty fast, but as for their poor last release I would pass it.
Also I'm waiting for a keygen release. :p
 

-Hammad-

New Member
Kfir said:
They are pretty fast, but as for their poor last release I would pass it.
Also I'm waiting for a keygen release. :p
The release in question was vBulletin 3.7.2 and the hotlinks were missed by accident, it was not intended. Since then, we double and triple check our releases, and it wasn't our last release. :p
 

zdig1

New Member
Database error in vBulletin 3.7.3:

Invalid SQL:
SELECT COUNT(*) AS countFROM threadWHERE visible IN (0,1,2)AND sticky IN (0,1)AND open <> 10AND dateline >= 1220659200;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'threadWHERE visible IN (0,1,2)AND sticky IN (0,1)AND open <> 10AND dateline >= 1' at line 1
Error Number : 1064
Request Date : Saturday, September 6th 2008 @ 04:21:49 PM
Error Date : Saturday, September 6th 2008 @ 04:21:49 PM
as usual this team have many pb
 

-Hammad-

New Member
zdig1 said:
as usual this team have many pb
This release was double checked; every last aspect of it's features were checked, and we found no problems. The origin of that error looks more like it's from your database or whatever, not from this release.
 

zdig1

New Member
the solution was posted
bluescorpion said:
This is a problem that would make me nervous if I did an install and got this error. The query is / has been modified. It is using a prefix vb_ AND the query has either been modified or got mudged during process? Here is what it is suppose to look like:

SELECT COUNT(*) AS count FROM thread WHERE visible IN (0,1,2)AND sticky IN (0,1)AND open <> 10 AND dateline >= 1219788000;

HTH, bluescorpion.

Looking at the source, whoever hacked it, messed up the query in /admincp/index.php:

// An index exists on dateline for thread marking so we can run this on each page load.
$newthreads = $db->query_first("SELECT COUNT(*) AS countFROM " . TABLE_PREFIX . "threadWHERE visible IN (0,1,2)AND sticky IN (0,1)AND open <> 10AND dateline >= $starttime");


should be:

// An index exists on dateline for thread marking so we can run this on each page load.
$newthreads = $db->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "thread WHERE visible IN (0,1,2) AND sticky IN (0,1) AND open <> 10 AND dateline >= $starttime");

Note that this query does not exist in a REAL version 3.7.3, fyi.

Update: actually, this query does exist but it is spread out over 8 lines so when they nulled it, the editor didn't add spaces after the end of line. I just did the same thing when I tried to consolidate the 8 lines into one contiguous, so this is probably not a real problem.
 

bluescorpion

New Member
This release was double checked; every last aspect of it's features were checked, and we found no problems. The origin of that error looks more like it's from your database or whatever, not from this release.

With all that checking, I am wondering why you didn't fix the broken query in /admincp/index.php or get rid of the callback in there?

Generally a good job but don't make boasts about your quality that are bogus.
 

-Hammad-

New Member
bluescorpion said:
With all that checking, I am wondering why you didn't fix the broken query in /admincp/index.php or get rid of the callback in there?

Generally a good job but don't make boasts about your quality that are bogus.
When the hell did I/we EVER boast about our quality? We acknowledge there are better groups out there, and we do not put that behind us.
 

Gh0st

New Member
klops said:
i search German Version

You can get a 'Language Pack' which are available here, but be careful with everything, using the wrong version or doing something wrong will get your forum f*cked up. So you must use a working brain!
 
Top