Ok, I my site is using phpnuke 7.8, I dont have patches for nuke or whatever, I have no idea what that is
I downloaded NukeSentinel_222_Guide.tar
Iam not exactly to sure what to do next, I've been reading the readme and now Iam really confused, its talking about they dont recomend nuke 7.7-7.8
Quote:
Requirements & Latest Features:
------------------------------------------
REQUIREMENTS:
- While NukeSentinel(tm) runs with PHP-Nuke 7.7/7.8 it is recommended that you use 7.6
or below due to the many security issues introduced in 7.7/7.8 .
- NukeSentinel(tm) requires PHP-Nuke 7.1 - 7.8 plus Patched 2.9+ to be installed. If
you are not using Patched 2.9+ you can still use it, but you will need to make
several modifications. If you are using v6.5, it should work but there may be additional
edits needed.
next problem is I dont understand is the patched 2.9 and talking about patches and stuff, I thought 2.4.2 is the latest version? If someone can fill me in it would be great
Last edited by phpnuke-hosting on Mon Oct 30, 2006 8:50 pm; edited 1 time in total
Gabe3 Nuke Soldier
Joined: Oct 18, 2005
Posts: 28
Posted:
Sat Oct 29, 2005 9:15 pm
well I uploaded the files, ran the install script, it passed, then I edited all the files, now Iam getting
Code:
Parse error: parse error, unexpected $ in /home/allout/public_html/mainfile.php on line 1546
when i goto my site
Gabe3 Nuke Soldier
Joined: Oct 18, 2005
Posts: 28
Posted:
Sat Oct 29, 2005 9:52 pm
it looks like i fixed it, it wasent easy finding the problem though, but it seems that the "in function online" line screwed things up, heres what I mean:
Code:
#-----[ FIND ]------------------------------------------
#
$queryString = strtolower($_SERVER['QUERY_STRING']);
if (stripos_clone($queryString,'%20union%20') OR stripos_clone($queryString,'/*') OR stripos_clone($queryString,'*/union/*') OR stripos_clone($queryString,'c2nyaxb0')) {
header("Location: index.php");
die();
}
#
#-----[ CHANGE TO ]------------------------------------------
#
if(!file_exists('includes/nukesentinel.php')) {
if(isset($_SERVER['QUERY_STRING']) && (!stripos_clone($_SERVER['QUERY_STRING'], "ad_click") || !stripos_clone($_SERVER['QUERY_STRING'], "url"))) {
$queryString = $_SERVER['QUERY_STRING'];
if (stripos_clone($queryString,'%20union%20') OR stripos_clone($queryString,'/*') OR stripos_clone($queryString,'*/union/*') OR stripos_clone($queryString,'c2nyaxb0') OR stripos_clone($queryString,'+union+') OR stripos_clone($queryString,'http://') OR (stripos_clone($queryString,'cmd=') AND !stripos_clone($queryString,'&cmd')) OR (stripos_clone($queryString,'exec') AND !stripos_clone($queryString,'execu')) OR stripos_clone($queryString,'concat')) {
die('Illegal Operation');
}
}
}
in function function online() {
#
when I added that "in function function online() {" code it gave me the page error, Iam not sure if I need that code but it doesent give me the site error and Iam able to get into the sentinel admin page
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