Savent
Regular
![Regular Regular](modules/Forums/images/ranks/2stars.gif)
![](modules/Forums/images/avatars/18f7d38041998cf63f7b2.gif)
Joined: Jun 30, 2003
Posts: 81
|
Posted:
Sat Nov 06, 2004 10:32 pm |
|
somehow i have no idea how, but..i ended up on a german website and came across this in their forums, has to do with sentinel, and admin cookies or something like that, what file is this in, and what does it do, looks like he is saying find this...change to this...dunno thou, Im just curious as to what i stummbled apon.
de fix zoals deze geïmplementeerd is in NukeSentinel™:
PHP:
// Basic Value Setup
if($aid AND (!isset($admin) OR empty($admin)) AND $op!='login') {
unset($aid);
unset($admin);
}
Zou dan ook vervangen moeten worden door onderstaand?
PHP:
// Basic Value Setup
if($aid && (!isset($_COOKIE['admin']) || empty($_COOKIE['admin'])) && $op!='login') {
unset($aid);
unset($admin);
}
EDIT: its in the includes folder, raven what does this do: here is the forum post: http://www.phpnuke-nederland.com/modules.php?name=Forums&file=viewtopic&t=220#1198 |
|
|
beetraham
Regular
![Regular Regular](modules/Forums/images/ranks/2stars.gif)
![](modules/Forums/images/avatars/d4f639af415ef4a5704fe.gif)
Joined: Dec 13, 2003
Posts: 94
Location: Finland (EU)
|
Posted:
Sat Nov 06, 2004 11:32 pm |
|
Savent wrote: | somehow i have no idea how, but..i ended up on a german website and came across this in their forums, has to do with sentinel, and admin cookies or something like that, what file is this in, and what does it do, looks like he is saying find this...change to this...dunno thou, Im just curious as to what i stummbled apon.
de fix zoals deze geïmplementeerd is in NukeSentinel™:
PHP:
// Basic Value Setup
if($aid AND (!isset($admin) OR empty($admin)) AND $op!='login') {
unset($aid);
unset($admin);
}
Zou dan ook vervangen moeten worden door onderstaand?
PHP:
// Basic Value Setup
if($aid && (!isset($_COOKIE['admin']) || empty($_COOKIE['admin'])) && $op!='login') {
unset($aid);
unset($admin);
}
EDIT: its in the includes folder, raven what does this do: here is the forum post: http://www.phpnuke-nederland.com/modules.php?name=Forums&file=viewtopic&t=220#1198 |
In my humble opinion - just as a general notice; as this form of "customized hacks" are out of scope in terms of Support to be expected from NukeSentinel(tm) Authors by default, one should be very sceptic at all times to assimilate any such features, which are not fully understood at end-user level.
It's always up to Authors to response to this kind of support calls, but in general, one should not expect to get it easily, as the application core development takes its time in extensive sense to evolve.
Quote: | ################################
# NukeSentinel(tm) --- License
################################
END-USER LICENSE AGREEMENT
NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORITION
OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT.
(i) The NukeSentinel(tm) source code may be modified at the user's risk, but the software
(altered or otherwise) may NOT be distributed to other entities without the explicit
written permission of NukeScripts Network. In other words, NukeSentinel(tm) may be modified
for your use only. Under no circumstances may any modified or unmodified NukeSentinel
code be distributed unless an explicit written permission is granted by NukeScripts
Network.
(ii) All NukeScripts Network copyright notices within the source code, design templates,
software, etc. can not be modified and must remain visible.
(iii) The Redistributable Code is the property of NukeScripts Network and is protected
by copyright law and international treaty provisions. You are not authorized to
reproduce and distribute the Redistributable Code. NukeScripts Network, reserves all
rights not expressly granted. THE REDISTRIBUTABLE CODE IS PROVIDED TO YOU "AS IS"
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. YOU
ASSUME THE ENTIRE RISK AS TO THE ACCURACY AND THE USE OF THE REDISTRIBUTABLE CODE.
NUKESCRIPTS NETWORK, SHALL NOT BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING OUT OF THE
USE OF OR INABILITY TO USE THE REDISTRIBUTABLE CODE, EVEN IF NUKESCRIPTS NETWORK, HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(iv) UNION, CLIKE, & Email elements used from HackAlert with permission and are subject
to Raven PHP Scripts licensing not NSN's licensing.
(v) Scripting blocker elements are used from ChatServ with permission and are subject
to ChatServ's licensing not NSN's licensing.
(vi) HTTPAuth element used from Raven with permission and is subject to Raven PHP Scripts
licensing not NSN's licensing.
(vii) CGI AdminAuth element used from Raven with permission and is subject to Raven PHP
Scripts licensing not NSN's licensing. |
Kind Regards,
-beetraham |
_________________ - Let there be no windows at your home - |
|