Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Security - PHP Nuke
Author Message
xGSTQ
Involved
Involved



Joined: Feb 03, 2006
Posts: 269

PostPosted: Sat Nov 06, 2010 2:23 am Reply with quote

Hey using NukeSentinel(tm) 2.6.01 On Ravens

Just went to track a users IP under Display Tracked IP's and it came back with:

"There are currently no IP addresses in the database"

So I checked the Display Tracked Users, and got the same

"There are currently no IP addresses in the database"

I used to use this all the time when someone is up to no good

Is there something ive missed or why it wouldn't track users no more ?
 
View user's profile Send private message Send e-mail
xGSTQ







PostPosted: Sat Nov 06, 2010 2:26 am Reply with quote

Sry I should mention that IP Tracking: is set to on as well
 
PHrEEkie
Subject Matter Expert



Joined: Feb 23, 2004
Posts: 358

PostPosted: Sat Nov 06, 2010 2:34 am Reply with quote

Was this a RN build with Sentinel integrated, or was Sentinel added? Are you sure Sentinel is enabled? If Sentinel was added on, there are quite a few script modifications necessary, and some of them may have been missed.

Certainly something is not hooking if you have IP tracking enabled but nothing's going into the database. : shrug :

- Keith

_________________
PHP - Breaking your legacy scripts one build at a time. 
View user's profile Send private message
xGSTQ







PostPosted: Sat Nov 06, 2010 2:35 am Reply with quote

Okay so i think there is a new updated version and im getting confused with the version numbers

Im using NukeSentinel(tm) 2.6.01
[ Only registered users can see links on this board! Get registered or login! ] says the latest version is 2.6.00

The downloads states that the latest version is indeed >> 2.6.01 [ Only registered users can see links on this board! Get registered or login! ]

But this thread says 2.6.02 is the latest version >> [ Only registered users can see links on this board! Get registered or login! ]

Whats going on !! lol

Confused.com
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 2:37 am Reply with quote

I have worse news for you... the RN2.40.01 that I just installed a few days ago says that the Sentinel is 2.6.03. It is integrated.

- Keith
 
xGSTQ







PostPosted: Sat Nov 06, 2010 2:38 am Reply with quote

Hey Keith, this is a RAvens Nuke install, I belive we are using Raaves Nuke v2.3 with intergrated Sentinal, we keep sentinal and IP To Countries up to date too..

Sentinal admin says version NukeSentinel(tm) 2.6.01 but im not 100% sure that is correct, just wondering where else it would state the version number

Thanks for your very very fast reply too, im trying to get to the bottom of this ...fast
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 2:43 am Reply with quote

Your version number is available through phpMyAdmin. Open table {your_prefix}_nsnst_config and view the row "Version".

- Keith
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 2:46 am Reply with quote

While you're doing that, another discussion might come about your RN dist version. If your site isn't heavily modded or custom themed, it might be rather simple to get the current release, 2.40.01. 2.3.x builds aren't really recommended anymore, but if you don't have a choice there, just getting Sentinel to work should be possible.

- Keith
 
xGSTQ







PostPosted: Sat Nov 06, 2010 2:58 am Reply with quote

Our site is extremely modified Wink

Ill take a peek now...

Sentinel version number is 2.6.01

RN version is rn2.10.01 hehe... I know for a fact we upgraded past 2.10 that's what our initial site was when we started, im sure we upgraded to v2.3 I will need to check with Floppy and make sure

Is there no stand alone version of Sentinel these days, or are they just going to be integrated versions ?
 
xGSTQ







PostPosted: Sat Nov 06, 2010 3:00 am Reply with quote

Anyone know the DB table for Tracked Ips, I cant see it in DB... that might be the problem.. lol
 
xGSTQ







PostPosted: Sat Nov 06, 2010 3:03 am Reply with quote

my god im getting there, there is no nuke_nsnst_tracked_ips in my DB !!

Whats going on here...
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 3:07 am Reply with quote

{your_prefix}_nsnst_tracked_ips

Code:
--

-- Table structure for table `nuke_nsnst_tracked_ips`
--

CREATE TABLE IF NOT EXISTS `nuke_nsnst_tracked_ips` (
  `tid` int(10) NOT NULL auto_increment,
  `ip_addr` varchar(15) NOT NULL default '',
  `ip_long` int(10) unsigned NOT NULL default '0',
  `user_id` int(11) NOT NULL default '1',
  `username` varchar(60) NOT NULL default '',
  `user_agent` text NOT NULL,
  `refered_from` text NOT NULL,
  `date` int(20) NOT NULL default '0',
  `page` text NOT NULL,
  `x_forward_for` varchar(32) NOT NULL default '',
  `client_ip` varchar(32) NOT NULL default '',
  `remote_addr` varchar(32) NOT NULL default '',
  `remote_port` varchar(11) NOT NULL default '',
  `request_method` varchar(10) NOT NULL default '',
  `c2c` char(2) NOT NULL default '00',
  PRIMARY KEY  (`tid`),
  KEY `ip_addr` (`ip_addr`),
  KEY `ip_long` (`ip_long`),
  KEY `user_id` (`user_id`),
  KEY `username` (`username`),
  KEY `user_agent` (`user_agent`(255)),
  KEY `refered_from` (`refered_from`(255)),
  KEY `date` (`date`),
  KEY `page` (`page`(255)),
  KEY `c2c` (`c2c`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


to add the table if you need to...

- Keith
 
xGSTQ







PostPosted: Sat Nov 06, 2010 3:10 am Reply with quote

Working now again

I have absolutely no idea how or why the table nuke_nsnst_tracked_ips was missing

scary stuff

So I would just like to know now if there is a standalone update of Sentinel now Wink

And for the peeps that want to know how i fixed, I manually inserted the table into PHPMYADMIN

I got the code from the Nuke Sentinel Download and grabbed it out of install.php
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 3:10 am Reply with quote

xGSTQ wrote:
Is there no stand alone version of Sentinel these days, or are they just going to be integrated versions ?


There is still a standalone Wink

- Keith
 
xGSTQ







PostPosted: Sat Nov 06, 2010 3:11 am Reply with quote

Cheers Keith, we are both working on this at teh same time so it would seem, thanks for your help
 
xGSTQ







PostPosted: Sat Nov 06, 2010 3:12 am Reply with quote

I know there is a standalone, but that's version 2.6.01 if your saying there is a version 2.6.03 integrated, can we not get hold of that ?
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 3:12 am Reply with quote

No worries mate.. glad you got it sorted! = )

- Keith
 
PHrEEkie







PostPosted: Sat Nov 06, 2010 3:15 am Reply with quote

xGSTQ wrote:
I know there is a standalone, but that's version 2.6.01 if your saying there is a version 2.6.03 integrated, can we not get hold of that ?


I have not done a file compariosn between the two, tbh... the 2.6 distros are pretty mature, the versioning might be IP2C updates? Really unsure.. gonna let a Team Member answer that one. Cheers

- Keith
 
Guardian2003
Site Admin



Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam

PostPosted: Sat Nov 06, 2010 4:52 pm Reply with quote

I cannot think of any significant changes that you should worry about. The only one I can think of is the removal of the version file lookup to the NS website, as it's now done directly in the database and is updated with the IP2C data sql file.
I think you should definitely let Floppy now about the missing table though, especially if this is for the CT website.
 
View user's profile Send private message Send e-mail
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Security - PHP Nuke

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©