vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Track all Duplicate IP Addresses via Admin CP (https://vborg.vbsupport.ru/showthread.php?t=75416)

Snake 06-22-2005 10:44 AM

There is just one problem with this hack. If 2 users are registered on the forums and are living nearby (neighbours I mean), there IP address will show up the same thing. Because they both live in the 'same' country so you won't notice properly if a user has multiple accounts or not. It may be a person who is so close to your country that will use the same IP as yours, or a person who has registered multiple accounts. That is the only problem with this hack. :tired:

Jolten 06-23-2005 01:24 AM

IP ranges may be similar. But IPs should never be identical just because users are neighbors unless they are using something like AOL.

mkdevo 06-23-2005 11:01 AM

Quote:

Originally Posted by Snake
There is just one problem with this hack. If 2 users are registered on the forums and are living nearby (neighbours I mean), there IP address will show up the same thing. Because they both live in the 'same' country so you won't notice properly if a user has multiple accounts or not. It may be a person who is so close to your country that will use the same IP as yours, or a person who has registered multiple accounts. That is the only problem with this hack. :tired:

that doesn't really make any sense...

Snake 06-23-2005 12:11 PM

What do you mean it doesn't make any sense?

Now your post doesn't make any sense and is pointless.

osariase 06-23-2005 06:15 PM

This is very good especially to flush out people that are using multiple names, however I want to ask is there anyway to to attache user names to these ips? so u will be able to know who is using more than one id in your forum.

is there?

thanks and by the way this is good hack

mkdevo 06-24-2005 02:12 AM

Quote:

Originally Posted by Snake
What do you mean it doesn't make any sense?

Now your post doesn't make any sense and is pointless.

as Jolten said, neighbors don't/shouldn't have the same ip address (unless one is taking advantage of the other's unencrypted wireless network. ;))

tamarian 06-24-2005 02:39 PM

Just installed. Looks good :up:

I have a suggestion for future release.

1. Add a page jump
2. Allow sorting by the number of duplicates.

I selected to disply 250 per page, and still got 67 pages :) So a page jump would be handy.

SmartGnome 06-27-2005 08:22 PM

Have installed the mod and in first view I like it much.

Install is clicked

Jolten 06-27-2005 09:17 PM

Quote:

Originally Posted by tamarian
Just installed. Looks good :up:
1. Add a page jump
2. Allow sorting by the number of duplicates.


On the list.
I do not know that I'll be updating for v3.5 though. My site is fine at 3.0.7 and I see nothing in 3.5 that warrants my upgrading.

BlackRabbit 07-04-2005 03:01 PM

Quote:

Originally Posted by Christine
@djwins - add an exclude in the WHERE statement on the query and include these LIKES:

64.12.%,
152.163.%,
205.188.%,
202.67.%,
149.174.%,
195.93.%,
198.81.%
209.240.%

The first 7 are AOL banks and the last one is WebTV.

:)


Can anyone give an example of implementing this into the script?

TIA

BR ;)

tamarian 07-04-2005 03:55 PM

Quote:

Originally Posted by Jolten
I do not know that I'll be updating for v3.5 though. My site is fine at 3.0.7 and I see nothing in 3.5 that warrants my upgrading.

Do you mind if I update it and release it fro 3.5?

Jolten 07-04-2005 06:00 PM

Feel free tamarian, just credit me.

tamarian 07-04-2005 06:20 PM

Quote:

Originally Posted by Jolten
Feel free tamarian, just credit me.

Most definitly :)

tamarian 07-05-2005 12:07 AM

Version 3.5 has been released here:

https://vborg.vbsupport.ru/showthread.php?t=91633

Snake 07-05-2005 08:41 AM

You da man!

BlackRabbit 07-05-2005 02:38 PM

Quote:

Originally Posted by BlackRabbit
Quote:

Originally Posted by Christine
@djwins - add an exclude in the WHERE statement on the query and include these LIKES:

64.12.%,
152.163.%,
205.188.%,
202.67.%,
149.174.%,
195.93.%,
198.81.%
209.240.%

The first 7 are AOL banks and the last one is WebTV.


Can anyone give an example of implementing this into the script?

TIA

BR ;)

PLEASE!!!

ReZ 07-27-2005 02:19 PM

Hmmm, you mention there are "Total Queries -- 3" wheres the information for these?

Jolten 07-28-2005 03:25 AM

What information? The queries are run in the php file that you must install.

ReZ 07-28-2005 09:09 AM

Ohhh...ok then, thanks alot Jolten.

lazytown 07-28-2005 09:21 AM

clicked install - nice hack

Couple of suggestions that shouldn't be hard to implement

It would be really useful if it did a reverse-ip lookup (or are they stored in the database already) and displayed it along with the highlighted account/ip. That way we can see right off if its a proxy/aol cache/etc.

If it could sort by any column heading (posts, last date, etc) but still show the duplicate ips grouped together as they are now.

If things could be restricted by user input in the the form, like only show with > x number of posts, or after x login date.

-V

m0nde 07-28-2005 10:22 AM

Great hack :up:

- Sid

ZombieAndy 08-16-2005 12:56 AM

how would i give super mods permission to trace duplicate IP's aswell?

loftyasianz 08-16-2005 02:22 AM

i guess you could in the modcp.php file add in the construct for the new option but put a if statement in there something like <if condition="$bbuserinfo['usergroupid']==XX"> where XX is the smod usergroup id so only the smod can see it o.o

Jolten 08-16-2005 04:27 AM

Quote:

Originally Posted by YodaTheCoda
how would i give super mods permission to trace duplicate IP's aswell?

copy dupip.php to the modcp folder.

In the copy of dupip.php

find:
PHP Code:

if (!can_administer('canadminusers')) 

and change to:
PHP Code:

if (!can_moderate('canviewips')) 

in modcp/index.php

find:
PHP Code:

construct_nav_option($vbphrase['search_ip_addresses'], 'user.php?do=doips'); 

immediately ABOVE that line add:
PHP Code:

construct_nav_option("Dup Ips"'dupip.php''<br />'); 

This allows mods to see the duplicate IPS but ONLY if you allow the moderator usergroup to view them (via your usergroup settings in the admincp).

ZombieAndy 08-16-2005 05:56 PM

Quote:

Originally Posted by Jolten
copy dupip.php to the modcp folder.

In the copy of dupip.php

find:
PHP Code:

if (!can_administer('canadminusers')) 

and change to:
PHP Code:

if (!can_moderate('canviewips')) 

in modcp/index.php

find:
PHP Code:

construct_nav_option($vbphrase['search_ip_addresses'], 'user.php?do=doips'); 

immediately ABOVE that line add:
PHP Code:

construct_nav_option("Dup Ips"'dupip.php''<br />'); 

This allows mods to see the duplicate IPS but ONLY if you allow the moderator usergroup to view them (via your usergroup settings in the admincp).

thanks alot jolten its working now :)

NxTek 08-18-2005 05:06 PM

Very odd. My admincp/index.php contains the following -

construct_nav_option($vbphrase['add_new_user'], 'user.php?do=add', '|');
construct_nav_option($vbphrase['dup_ip'], 'dupip.php', '|');

But it doesn't show up. It goes from Add New User to Search for Users.

Jolten 08-20-2005 01:35 AM

Quote:

Originally Posted by NxTek
Very odd. My admincp/index.php contains the following -

construct_nav_option($vbphrase['add_new_user'], 'user.php?do=add', '|');
construct_nav_option($vbphrase['dup_ip'], 'dupip.php', '|');

But it doesn't show up. It goes from Add New User to Search for Users.


Add the phrases indicated in the install instructions.

PyroChixRock 09-20-2005 12:53 AM

thanks! this is a nice mod.

Telegon80 10-19-2005 02:42 AM

nice. is there a version for 3.5.0 already?

Jolten 10-19-2005 04:17 AM

Tamarian ported it for 3.5

https://vborg.vbsupport.ru/showthrea...=Duplicate+Ips

gigaenvy 10-26-2005 09:22 PM

Cool hack. One step further would be to prevent duplicate IPs like how we use our forums. One hour lockout if breach attempted.

defcon_420 04-01-2006 08:55 AM

excellent! works great in 3.0.13

JVRudnick 07-27-2006 04:55 PM

trying to install same...but the Step 3 area I don't understand...

"Add 2 new phrases.." where to what?

in fact, in the Admin CP, I "see" the space where the new Title should be,
that is, there is an extra space there...but it's empty as I don't know where
to add the Step 3 items?

:-(

Jim

Jolten 07-28-2006 04:04 AM

Try reading the "installDupIP1.2.txt" file.


All times are GMT. The time now is 04:17 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01389 seconds
  • Memory Usage 1,800KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (34)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete