Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Hide the IP of SuperAdmins (now it hides it at the online list as well) Details »»
Hide the IP of SuperAdmins (now it hides it at the online list as well)
Version: 1.00, by borbole borbole is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.8.4 Rating:
Released: 05-11-2010 Last Update: 05-28-2010 Installs: 45
DB Changes Uses Plugins
Translations  
No support by the author.

This mod will hide the real Ip of the SuperAdmin in posts, in the MOD CP when searching for ip''s. After you install it, go to Settings-Options-Message Posting and Editing Options. And all the way to the bottom you will see 3 settings for the mod. You can enable and disable it, you can also enter a bogus ip for SuperAdmin which then will be displayed instead of the real ip. This is ideal for privacy. By default it affects those Super Admins whose userid is 1. If your userid is not 1 then enter at the third mod settings your own userid.

Things to consider 1: This mod it will hide the real ip of Superadmins for all the posts made before, present and all the time that the mod will be installed.

2: When you uninstall the mod, the past posts made from before, will still hide the ip of the superadmin. Whereas the posts made after the uninstall of the mod, will display the real ip of SuperAdmin normally.


After a request from a customer of mine I expanded it to hide the ip of Super Admin at the online list as well. The expanded version can be found at my forum but it is paid:

http://www.forumservices.eu/showthre...he-online-list

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 06-02-2010, 07:52 AM
hsh72 hsh72 is offline
 
Join Date: Nov 2008
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello, I wanted this addon delete?.It is no work over AdminCP.How can I delete it manually?Please help me
Reply With Quote
  #23  
Old 06-02-2010, 01:43 PM
borbole's Avatar
borbole borbole is offline
 
Join Date: Jan 2010
Posts: 2,559
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hsh72 View Post
Hello, I wanted this addon delete?.It is no work over AdminCP.How can I delete it manually?Please help me
Simply uninstall it from Plugins & Products->Manage Products.

P.s. It was never meant to work on Acp but on posts only as described clearly at the very first post here btw.
Reply With Quote
  #24  
Old 06-21-2010, 01:00 PM
Sajeth Sajeth is offline
 
Join Date: Feb 2008
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Unfortunatelly there is no real way of completely hiding the IP address by using Plug-Ins. But you can easily disable IP logging by editing a single file directly. This has the benefits of not only disabling logging for posts, but globally, even in error-, admin- and event-logs, as well as PMs and the currently online list.
Open file includes/class_core.php
Line 2259 find
Code:
return $_SERVER['REMOTE_ADDR'];
replace with
Code:
global $vbulletin;
		if ($vbulletin->userinfo['userid'] == $vbulletin->options['superadmin_id'])
		return "127.0.0.1";
		return $_SERVER['REMOTE_ADDR'];
and Line 2269 find
Code:
$alt_ip = $_SERVER['REMOTE_ADDR'];
replace with
Code:
global $vbulletin;
		if ($vbulletin->userinfo['userid'] == $vbulletin->options['superadmin_id'])
		return "127.0.0.1";
$alt_ip = $_SERVER['REMOTE_ADDR'];
But I strongly suggest NOT to install this hack, for you will not be able to trace crackers that got into an admin account.
Reply With Quote
  #25  
Old 08-30-2010, 01:59 PM
The Executioner The Executioner is offline
 
Join Date: Dec 2007
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works good.
And if ya made sure to change your PWs regularly as well as adding a great file to your server called. (.htaccess)...where you can allow or deny all the IPs ya want form accessing the ACP, server, or where ever...even if your account got hacked...they can't use your acct. as their IP is not on the allow list.

Anyways..I'm off topic.
This mod works fine for what it is.
There are plenty of settings to make sure no one sees any IPs anywhere.
Reply With Quote
  #26  
Old 12-25-2010, 11:04 AM
borbole's Avatar
borbole borbole is offline
 
Join Date: Jan 2010
Posts: 2,559
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

After a request from a customer of mine I expanded it to hide the ip of Super Admin at the online list as well. The expanded version can be found at my forum but it is paid:

http://www.forumservices.eu/showthre...he-online-list
Reply With Quote
  #27  
Old 12-26-2010, 07:15 PM
Mickie D Mickie D is offline
 
Join Date: Jun 2002
Posts: 430
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A good question is where does this hack NOT hide the IP if you buy the premium version ?

Can you find the IP anywhere if you buy this?

Mick
Reply With Quote
  #28  
Old 12-27-2010, 07:07 AM
FreshFroot's Avatar
FreshFroot FreshFroot is offline
 
Join Date: Jul 2005
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good stuff!

Finally someone posts up something neat.
Reply With Quote
  #29  
Old 12-27-2010, 07:09 AM
FreshFroot's Avatar
FreshFroot FreshFroot is offline
 
Join Date: Jul 2005
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by runelife View Post
I know this may sound stupid.

But is there any way you can set it so you can hide multiple users IP addresses.

Because I need it for my friends forums.

Because I'm the second owner of his website and I manage basically everything on his forums.
You could probably use this mod and modify it further to do that....
Reply With Quote
  #30  
Old 12-27-2010, 01:25 PM
borbole's Avatar
borbole borbole is offline
 
Join Date: Jan 2010
Posts: 2,559
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mickie D View Post
A good question is where does this hack NOT hide the IP if you buy the premium version ?

Can you find the IP anywhere if you buy this?

Mick
This paid version will hide it at the online list as well, besides in posts and at the modcp when the supermoderators and moderators will search for ips.
Reply With Quote
  #31  
Old 09-04-2011, 04:49 PM
Max Taxable's Avatar
Max Taxable Max Taxable is offline
 
Join Date: Feb 2011
Posts: 3,134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
After a request from a customer of mine I expanded it to hide the ip of Super Admin at the online list as well. The expanded version can be found at my forum but it is paid:

http://www.forumservices.eu/showthre...he-online-list
404 not found.

Isn't it about time to include that feature in the free version anyhow?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:29 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05093 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete