+ Reply to Thread
Results 1 to 5 of 5

Thread: PHPBB Hack (Log IP on Register)

  1. #1
    Join Date
    Jul 1999
    Posts
    4,893

    Default PHPBB Hack (Log IP on Register)

    ################################################## ############
    ## MOD Title: Log IP Address on Registration
    ## MOD Author: TerraFrost < N/A > (Jim Wigginton) http://www.frostjedi.com/phpbb
    ## MOD Description: Logs the IP address of users when they register.
    ## MOD Version: 1.0.0
    ##
    ## Installation Level: Intermediate
    ## Installation Time: 5 Minutes
    ##
    ## Files To Edit: 4
    ## includes/usercp_register.php
    ## admin/admin_users.php
    ## templates/subSilver/admin/user_edit_body.tpl
    ## language/lang_english/lang_admin.php
    ################################################## ############
    ## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
    ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
    ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
    ## in our MOD-Database, located at: http://www.phpbb.com/mods/
    ################################################## ############
    ## Author Notes:
    ##
    ## Although there are a number MODs out there that do this already, none of them
    ## have been validated by the phpBB MOD Team. This MOD attempts to fill this void.
    ##
    ## Also, since I don't know who the first person to make a MOD like this was, I'll
    ## just sorta credit Jarf with the idea:
    ## http://www.phpbb.com/phpBB/viewtopic.php?t=28580
    ##
    ## The latest version of this mod can be found here:
    ## http://www.frostjedi.com/terra/scripts/phpbb/reg_ip.zip
    ##
    ## For support / comments / whatever, visit here:
    ## http://www.frostjedi.com/phpbb/viewforum.php?f=33
    ##
    ################################################## ############
    ## MOD History:
    ##
    ## 2005-04-13 - Version 1.0.0
    ## - initial release
    ################################################## ############
    ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
    ################################################## ############
    #
    #-----[ SQL ]-------------------------------------------
    #
    ALTER TABLE phpbb_users ADD user_regip CHAR(8) NOT NULL DEFAULT '0';
    #
    #-----[ OPEN ]------------------------------------------
    #
    includes/usercp_register.php
    #
    #-----[ FIND ]------------------------------------------
    # this is only a partial match
    #
    $sql = "INSERT INTO " . USERS_TABLE . "
    #
    #-----[ IN-LINE FIND ]---------------------------------
    #
    user_icq,
    #
    #-----[ IN-LINE BEFORE, ADD ]---------------------------
    #
    user_regip,
    #
    #-----[ FIND ]------------------------------------------
    # this is only a partial match
    #
    VALUES ($user_id,
    #
    #-----[ IN-LINE FIND ]---------------------------------
    #
    . "', '" . str_replace("\'", "''", $icq)
    #
    #-----[ IN-LINE BEFORE, ADD ]---------------------------
    #
    . "', '" . $userdata['session_ip']
    #
    #-----[ OPEN ]------------------------------------------
    #
    admin/admin_users.php
    #
    #-----[ FIND ]------------------------------------------
    #
    $icq = $this_userdata['user_icq'];
    #
    #-----[ BEFORE, ADD ]-----------------------------------
    #
    $user_regip = decode_ip($this_userdata['user_regip']);
    #
    #-----[ FIND ]------------------------------------------
    #
    'YIM' => $yim,
    #
    #-----[ BEFORE, ADD ]-----------------------------------
    #
    'USER_REGIP' => $user_regip,
    #
    #-----[ FIND ]------------------------------------------
    #
    'L_ICQ_NUMBER' => $lang['ICQ'],
    #
    #-----[ BEFORE, ADD ]-----------------------------------
    #
    'L_REGIP' => $lang['Registration_IP'],
    #
    #-----[ OPEN ]------------------------------------------
    #
    templates/subSilver/admin/user_edit_body.tpl
    #
    #-----[ FIND ]------------------------------------------
    #
    <tr>
    <td class="catsides" colspan="2">&nbsp;</td>
    </tr>
    <tr>
    <th class="thSides" colspan="2">{L_PROFILE_INFO}</th>
    #
    #-----[ BEFORE, ADD ]-----------------------------------
    #
    <tr>
    <td class="row1"><span class="gen">{L_REGIP}: </span></td>
    <td class="row2"><span class="gen">{USER_REGIP}</span></td>
    </td>
    </tr>
    #
    #-----[ OPEN ]------------------------------------------
    #
    language/lang_english/lang_admin.php
    #
    #-----[ FIND ]------------------------------------------
    # this is a partial match
    #
    $lang['Install_No_PCRE']
    #
    #-----[ AFTER, ADD ]------------------------------------
    #
    $lang['Registration_IP'] = 'Registration IP Address';
    #
    #-----[ SAVE/CLOSE ALL FILES ]--------------------------
    #
    # EoM

  2. #2
    Join Date
    Jul 1999
    Posts
    7,089

    Default PHPBB Hack (Log IP on Register)

    Nice...
    I may be lazy, but I can...zzzZZZzzzZZZzzzZZZ...

  3. #3
    Join Date
    Jul 2002
    Location
    N.C.
    Posts
    1,075

    Default PHPBB Hack (Log IP on Register)

    Nice from me as well.... eh heh heck well I admit, that all looks 'damn' techy to me, but otherwise nice and great ISP (I call em ISP you call them IP numbers :P ) recorder so can be safe from that group of assholes now, well pretty much in anycase.

    ~Amy

  4. #4
    Join Date
    Jul 2002
    Posts
    1,659

    Default PHPBB Hack (Log IP on Register)

    Yeah, very nice. I imagine if anyone wants to try to do some damage they haven't yet registered. So now if they do then we'll have the info we need to hit back. Which is good.

  5. #5
    Join Date
    Jul 1999
    Posts
    4,893

    Default PHPBB Hack (Log IP on Register)

    This sucks. It looks like we're in the begining of a war now...

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. how exactly do you guy hack
    By Darknes in forum Current Generation Hacking
    Replies: 2
    Last Post: 03-04-2007, 09:32:33 PM
  2. PHPBB Mods
    By LiquidManZero in forum Announcements
    Replies: 3
    Last Post: 06-30-2005, 04:06:17 PM
  3. New Theme for the PHPBB
    By LiquidManZero in forum Announcements
    Replies: 2
    Last Post: 04-21-2005, 04:11:20 PM
  4. phpbb/mod Q
    By SharkMe in forum The Lounge
    Replies: 2
    Last Post: 02-23-2005, 06:41:20 PM
Collapse this box.

Visitors found this page by searching for:

phpbb register forum

hack forum phpbb3

phpbb forums register ip

phpbb ip address of user hack

phpbb2 ip log

hacking forum phpbb3

log hack phpbb3

phpBB forum hacken

phpbb2 mod user register ip

phpbb mods register ip

phpbb ipcheck bei registration

phpbb ip check

phpbb register ip

PHPBB3 ip register

phpbb3 Log IP on Register

php register ip

phpbb log connexion ip

phpbb ip on register

check phpbb ip log

php regster IP

phpbb2 ip address registration

IP register phpBB2

phpbb3 ip check register

Posting Permissions

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