+ Reply to Thread
Results 1 to 2 of 2

Thread: Gamesitescript Search Pagination and Search Fix

  1. #1
    AWF Blogger
    Points: 801, Level: 16
    Level completed: 1%, Points required for next Level: 99
    Overall activity: 0%
    Achievements:
    3 months registeredCreated Blog entryTagger First Class500 Experience Points
    Awards:
    King of Publishing
    rive's Avatar
    Join Date
    Sep 2010
    Location
    Virginia
    Posts
    40
    Points
    801
    Level
    16
    Blog Entries
    4
    Downloads
    0
    Uploads
    0
    My Mood
    Dead

    Gamesitescript Search Pagination and Search Fix

    I just implemeted a new Pagination for Search, and upon having detected several vulnerabilites in the gamesitescript (GSS) Search function for 4.0 and 4.5 versions I am going to post a fix.

    This fix also allows you to set the minimum search characters.

    SQLi Vulnerability in 4.0/4.5 versions:
    http://gangsplanet.com/index.php?params=search&q=27

    Search also allows searching if non-alpha numeric char (like %, !, #, etc):
    http://gangsplanet.com/index.php?params=search&q=%25

    What I have done to fix this on my site is to revamp the entire Search function and adding input sanitizing, barring a rewrite of the entire Search function, here is how to fix sql issue, ad set Search to 3 characters:

    Open /plugins/search/functions.php

    find:
    PHP Code:
        if ($query == '') {
            
    $qblank true;
        } 
    Change to:
    PHP Code:
        if ($query == '' || $query == '27' || strlen($query) < 3) {
            
    $qblank true;
        } 
    If you want to see how the pagination works, or how the above works-

    test it here:
    http://www.havocarcade.com/search/shooter/1.html
    Last edited by rive; 01-08-2011 at 06:25 PM.

  2. #2
    Senior Member
    Points: 1,626, Level: 24
    Level completed: 26%, Points required for next Level: 74
    Overall activity: 56.0%
    Achievements:
    Three FriendsTagger Second Class1000 Experience Points1 year registered
    Jason C's Avatar
    Join Date
    Jul 2010
    Location
    California
    Posts
    225
    Points
    1,626
    Level
    24
    Downloads
    0
    Uploads
    0
    My Mood
    Cool
    Great fix Rive, thanks for the contribution! Some one over at the other forum was just asking for this.

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts