![]() ![]() |
|
{KERO} Admin File Security Mod v1.01
|
Dec 28 2003, 07:05 PM
Post
#1
|
|
|
Member ![]() ![]() Group: Members Posts: 200 Joined: 12-April 03 Member No.: 1,772 IPB Version: 1.3.x |
{KERO} Admin File Security Mod v1.01
Category: Admin CP Modifications Compatibility: All versions of Invision Board Demo: N/A Description: This mod will allow you to rename and move your admin.php file for extra protection of your forum's Administration Control Panel After all if they can't find the Admin Cp login page, it's kinda hard to hack it Your new admin.php file will be just a renamed version of your current admin.php file, but you need to do the edits that this mod says before you rename the file so you don't forgot to do it. That also means any future mod you do will be refering to your new renamed admin.php file and does not mean you need to undo this mod and get your old one back. View This Mod This post has been edited by Kero_1116: Dec 28 2003, 09:53 PM |
|
|
|
Dec 28 2003, 08:32 PM
Post
#2
|
|
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 255 Joined: 2-August 03 Member No.: 31,885 IPB Version: Not Applicable |
When i click on my Admin CP link on my forums, it directs me to the old admin.php
What should i do? The Link doesnt come out now, for the the Admin CP in the User Links. This post has been edited by AJHeat34: Dec 28 2003, 08:39 PM -------------------- |
|
|
|
Dec 28 2003, 09:47 PM
Post
#3
|
|
|
Member ![]() ![]() Group: Members Posts: 200 Joined: 12-April 03 Member No.: 1,772 IPB Version: 1.3.x |
hv u tried adding all the text from the instruction files?
This post has been edited by Kero_1116: Dec 28 2003, 09:52 PM |
|
|
|
Dec 28 2003, 10:25 PM
Post
#4
|
|
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 255 Joined: 2-August 03 Member No.: 31,885 IPB Version: Not Applicable |
What file do YOU think i missed?
-------------------- |
|
|
|
Dec 29 2003, 03:49 AM
Post
#5
|
|
|
Newbie ![]() Group: Members Posts: 77 Joined: 23-April 03 Member No.: 5,860 IPB Version: 1.3.x |
this hack works like a treat! thank you.
@AJHeat34, maybe you downloaded and edited the admin.php, but never renamed it before you uploaded?? i did the same thing and realised that there was the orig admin.php and the new renamed admin.php in the same directory. |
|
|
|
Dec 29 2003, 10:01 AM
Post
#6
|
|
|
Member ![]() ![]() Group: Members Posts: 200 Joined: 12-April 03 Member No.: 1,772 IPB Version: 1.3.x |
if u hv no other mods installed, mayb try uploading a new admin.php
make sure u backup ur old admin.php just incase did u do the following? QUOTE --------------------------------------------------------------------
Open /admin.php AND FIND THE FOLLOWING (around line 475) -------------------------------------------------------------------- $ADMIN->html .= "<tr><td id='tdrow1'><meta http-equiv='refresh' content='2; url=".$INFO['board_url']."/admin.".$INFO['php_ext']."?adsess=".$IN['AD_SESS']."'><a href='".$INFO['board_url']."/admin.".$INFO['php_ext']."?adsess=".$IN['AD_SESS']."'>( Click here if you do not wish to wait )</a></td></tr>"; -------------------------------------------------------------------- REPLACE WITH: -------------------------------------------------------------------- // Admin File Security Mod v1.01 // $ADMIN->html .= "<tr><td id='tdrow1'><meta http-equiv='refresh' content='2; url=".$INFO['board_url']."/".$INFO['admin_file_path'].".".$INFO['php_ext']."?adsess=".$IN['AD_SESS']."'><a href='".$INFO['board_url']."/".$INFO['admin_file_path'].".".$INFO['php_ext']."?adsess=".$IN['AD_SESS']."'>( Click here if you do not wish to wait )</a></td></tr>"; // Admin File Security Mod v1.01 // =======================================================================// Step 2 - Save and Close /admin.php =======================================================================// |
|
|
|
Dec 29 2003, 12:13 PM
Post
#7
|
|
|
Member ![]() ![]() Group: Members Posts: 168 Joined: 18-November 03 Member No.: 63,972 IPB Version: Not Applicable |
i have several mods installed. will this mod still work or interfer with the running of other mods?
|
|
|
|
Dec 29 2003, 08:36 PM
Post
#8
|
|
|
Member ![]() ![]() Group: Members Posts: 107 Joined: 11-July 03 From: Somewhere else Member No.: 26,287 IPB Version: 1.3.x |
QUOTE(AJHeat34 @ Dec 29 2003, 02:32 AM) When i click on my Admin CP link on my forums, it directs me to the old admin.php What should i do? The Link doesnt come out now, for the the Admin CP in the User Links. It didn't work for me either and a very irate fellow admin left me a number of messages telling me where to go. The original instructions say to take replace the following: QUOTE --------------------------------------------------------------------- Open /Skin/s*/skin_global.php AND FIND THE FOLLOWING (around line 307) *Remeber skin edits must be done for all skins you use* --------------------------------------------------------------------- function admin_link() { global $ibforums; return <<<EOF · <b><a href='{$ibforums->vars['board_url']}/admin.{$ibforums->vars['php_ext']}' target='_blank'>{$ibforums->lang['admin_cp']}</a></b> EOF; } -------------------------------------------------------------------- REPLACE WITH: -------------------------------------------------------------------- function admin_link() { global $ibforums; return <<<EOF EOF; } =======================================================================// Step 5 : Save And Close /Skin/s*/skin_global.php =======================================================================// What I have found that instead of replacing with a blank space you just put the name of your admin file back in that place where I have made it red. function admin_link() { global $ibforums; return <<<EOF · <b><a href='{$ibforums->vars['board_url']}/your_new_admin_file_name.{$ibforums->vars['php_ext']}' target='_blank'>{$ibforums->lang['admin_cp']}</a></b> EOF; I hope this doesn't defeat the purpose of renaming my file... This post has been edited by DragonSeven: Dec 29 2003, 08:37 PM -------------------- If the image shows up as a red x right click the area and choose show picture, sometimes the photohoster server acts funny.
If you like the graphics I have made for you please save them to your own computer and photohoster. I would like to keep my own photohost open for others to share my works. All created images will be removed from my photohoster 5 days from the date of my post on the forums. If you use the banner or not please reply with comments or suggestions. Thank you. Please don't PM me with graphic requests I only fill requests that are posted in the request forum. |
|
|
|
Dec 29 2003, 08:48 PM
Post
#9
|
|
![]() back in the old days, there was IPB 1.1 and everyone was happy ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1,428 Joined: 10-April 03 From: Winnipeg, Manitoba, Canada Member No.: 368 IPB Version: 2.3.x |
I could've sworn that Shadow Fox or Outlaw or someone made something exactly like this....
-------------------- |
|
|
|
Dec 29 2003, 09:59 PM
Post
#10
|
|
|
Too Much Free Time ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 7,038 Joined: 27-April 03 Member No.: 7,194 IPB Version: 1.3.x |
Shadow Fox made this modification and kero took over in terms of supporting it. (I Think, don't hold me too it)
-------------------- I do not do create/support/upgrade modifications anymore.
I am not currently giving out permission to upgrade my modifications either. It's amazing how nobody reads signatures, I bet if I said i'd ban everyone who messaged me for support, they'd still message me and then complain when they got banned. |
|
|
|
Dec 31 2003, 07:53 AM
Post
#11
|
|
|
Member ![]() ![]() Group: Members Posts: 200 Joined: 12-April 03 Member No.: 1,772 IPB Version: 1.3.x |
QUOTE(Outlaw @ Dec 29 2003, 10:59 PM) Shadow Fox made this modification and kero took over in terms of supporting it. (I Think, don't hold me too it) true |
|
|
|
Dec 31 2003, 07:58 AM
Post
#12
|
|
|
Newbie ![]() Group: Members Posts: 9 Joined: 22-November 03 Member No.: 64,879 IPB Version: 1.3.x |
i dont see ....... ,i want post code here . ok?
im from vietnam |
|
|
|
Dec 31 2003, 11:25 AM
Post
#13
|
|
|
Member ![]() ![]() Group: Members Posts: 200 Joined: 12-April 03 Member No.: 1,772 IPB Version: 1.3.x |
QUOTE(bowjthewen @ Dec 31 2003, 08:58 AM) i dont see ....... ,i want post code here . ok? im from vietnam what do u mean post code? |
|
|
|
Sep 14 2004, 08:07 PM
Post
#14
|
|
|
Newbie ![]() Group: Members Posts: 42 Joined: 18-November 03 Member No.: 64,052 IPB Version: 1.0.x |
Responding to DragonSeven's comment re' the necessity of putting the name of your admin file in that section of code; if you do it seems to me more likely that the intruder could find the name again. Safer to leave that blank and when you need to access the ACP, type the name into the link yourself (just replacing 'admin.php' with 'whateveritscalled.php' and hitting Enter. Once in the ACP, you can move about and change things with no problems at all. This may seem to be a pain in the butt but we don't spend that much time in there and it's another and higher level of security.
My thanks to the originator of this mod and to all who update it. This post has been edited by ketlan: Sep 14 2004, 08:08 PM |
|
|
|
Oct 10 2004, 08:06 AM
Post
#15
|
|
|
Newbie ![]() Group: Members Posts: 27 Joined: 11-April 03 Member No.: 638 |
Would it possible for you to update this mod so that it works with IBv2.0.1 asap?
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 17th March 2010 - 10:00 PM |