vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Multiple account login detector (AE Detector) (https://vborg.vbsupport.ru/showthread.php?t=107566)

SCRIPT3R 03-23-2006 07:46 AM

Quote:

Originally Posted by MPDev
It's working as designed - it won't notify you every time the user logs into each of those accounts; only on the initial detection of a subsequent new login for that computer.

seems to be working fine... but i just got notified about the same user twice... rather then just the initial detection? once yesterday, and now again today. same message posted...

Yesterday, 01:14 AM
Quote:

Originally Posted by Alert Bot
User1 seems to have multiple personalities using User2 and User1 sharing the same computer. No soup for you! and you! and you!

Today, 12:47 AM
Quote:

Originally Posted by Alert Bot
User1 seems to have multiple personalities using User2 and User1 sharing the same computer. No soup for you! and you! and you!


MPDev 03-23-2006 10:49 AM

Most likely that person is using two different computers; I've never had an issue with the report coming from the same machine twice, but I have had users who login to multiple accounts from home and work get tripped.

Karri 03-23-2006 02:08 PM

Quote:

Originally Posted by MPDev
it won't notify you every time the user logs into each of those accounts; only on the initial detection of a subsequent new login for that computer.

Odd. I am getting multiple alerts as well. One user I have 4 threads since 3/14 and then another thread when the alternate user logged in on a different day, another set of users was reported twice, probably more but I pruned the threads on the 10th.

SCRIPT3R 03-23-2006 05:51 PM

Quote:

Originally Posted by MPDev
Most likely that person is using two different computers; I've never had an issue with the report coming from the same machine twice, but I have had users who login to multiple accounts from home and work get tripped.

i've emailed the users; i know it's two brothers that share a computer at home. i'll ask them to see if they're using computers at their school or something too. also, just noticed you're at EF... i'm gonna send you a PM about Jenny P - she brought too many bigwigs to my board that got too nosey and started up a bunch of shiat.

MPDev 03-23-2006 07:48 PM

Quote:

Originally Posted by GearTripper
i'm gonna send you a PM about Jenny P - she brought too many bigwigs to my board that got too nosey and started up a bunch of shiat.

Fortunately for me, in this space, I'm probably a bigger fish.... ;)

TheEDIGuy 03-24-2006 03:40 PM

MPDev, this is a wonderful product. We've had people trip it several times, and it's very accurate. We've caught a few we didn't know about.

NeutralizeR 03-24-2006 06:50 PM

Great work.

Maybe this issue talked before but it's useless if somebody is using two browsers.

Internet Explorer and Firefox for example... Different cookies, and no game!

I'm using this hack though, thanks

SCRIPT3R 03-25-2006 05:01 PM

today i have several emails about the following error:
Quote:

Unable to add cookies, header already sent.
File: /homepages/9/d143443210/htdocs/forums/includes/functions_login.php(168) : eval()'d code
Line: 42
and i'm no longer able to log into my AdminCP... any ideas?

bashy 03-25-2006 05:06 PM

Hi

to access the admincp for no use http://www.yoursite.com/forums/admincp/plugin.php
and turn off the plugins thats causing the error....

Thats all i can suggest atm sorry...

SCRIPT3R 03-25-2006 05:16 PM

Quote:

Originally Posted by bashy
Hi

to access the admincp for no use http://www.yoursite.com/forums/admincp/plugin.php
and turn off the plugins thats causing the error....

Thats all i can suggest atm sorry...

that method isn't allowing me in either.

bashy 03-25-2006 05:25 PM

What was the full URL you used is yours forums/ or forum/ make
sure ya use the correct 1 as this method works for me whenever
i get locked out due to a issue with a plugin :)

SCRIPT3R 03-25-2006 05:27 PM

<a href="http://forums.mysite.com/admincp/plugin.php" target="_blank">http://forums.mysite.com/admincp/plugin.php</a>

bashy 03-25-2006 05:43 PM

Oh...i dont know how the free servers work....
Its saying that the url http://forums.mysite.com/ is:
Site available.
The subdomain forums.mysite.com is available. Use the link on the right to sign up for your FREE Web site.

You sure thats your url as this dont make sense?
If it is yours then why is it saying that its available?

Sommat aint right m8

SCRIPT3R 03-25-2006 05:52 PM

no silly, that's not my real site domain, just the path... i'm currently under attack by another forum, so i don't want to give out my real domain here. i fixed it anyways disabling the hooks by the method found here:

http://www.vbulletin.com/docs/html/disable_plugins

now i just have to clean up the hackers mess.

luroca 03-27-2006 09:17 AM

Quote:

Originally Posted by luroca
It would be very useful to know the usergroup of the different users. By example:

... User1 (registered) and User2 (Premium) in the same PC ...

Well, here it is my little aportation:

Find:
PHP Code:

 $checkuser $vbulletin->db->query_first("SELECT username FROM " TABLE_PREFIX "user WHERE userid={$Unums[$i]}");
if ( !empty(
$andids) ) $andids .= "and";
$andids .= " [url="$vbulletin->options['bburl'] ."/member.php?u=" $Unums[$i] . "] "$checkuser['username'] ."[/url] ";


And replace with:
PHP Code:

$checkuser $vbulletin->db->query_first("SELECT user.username as username, usergroup.title as usergroup FROM " TABLE_PREFIX "user LEFT JOIN " TABLE_PREFIX "usergroup ON user.usergroupid = usergroup.usergroupid WHERE userid={$Unums[$i]}");
if ( !empty(
$andids) ) $andids .= "and"
$andids .= " [url="$vbulletin->options['bburl'] ."/member.php?u=" $Unums[$i] . "] "$checkuser['username'] ."[/url] (" $checkuser['usergroup'] . ") ";


Regards

Paul M 03-27-2006 09:55 AM

Quote:

Originally Posted by NeutralizeR
Maybe this issue talked before but it's useless if somebody is using two browsers.

Nothing is perfect ;)

It will also fail on the same pc if different user accounts are used (like in xp).

MPDev 03-27-2006 11:59 AM

Quote:

Originally Posted by GearTripper
today i have several emails about the following error:

and i'm no longer able to log into my AdminCP... any ideas?

That's very odd, did something in your db get corrupted? Unusual that something which worked fine for a period of time would "suddenly" develop an error - maybe one of your vb tables is corrupt?

MPDev 03-27-2006 07:27 PM

Quote:

Originally Posted by TheEDIGuy
MPDev, this is a wonderful product. We've had people trip it several times, and it's very accurate. We've caught a few we didn't know about.

Thanks for the props; we've have infrequent issues with users who create accounts to cause problems on our site. It's nice to know who is doing the trolling when it becomes an issue.

MPDev 03-28-2006 06:22 PM

Quote:

Originally Posted by NeutralizeR
Great work.

Maybe this issue talked before but it's useless if somebody is using two browsers.

Internet Explorer and Firefox for example... Different cookies, and no game!

I'm using this hack though, thanks

This is true, not really anything I can do about that without trying to track IPs.

luroca 03-28-2006 07:45 PM

Quote:

Originally Posted by MPDev
This is true, not really anything I can do about that without trying to track IPs.

How can we know the IP when the user logins? Can we?

mskgr 03-30-2006 01:31 AM

Quote:

Originally Posted by Gunshot
but everytime it triggers the alarm....the offenders IP is added to my IP list
now my partners are wondering if I'm running a massive account duplicating ring

You can always create a maintenance account that is used for this kind of plugins / scripts. I created myself a user named "bot" and I assigned its id as the "Userid of who PM sender / Alert poster". This way, all the PMs and threads are originated by it... and not by me :)

MPDev 03-30-2006 10:44 AM

Quote:

Originally Posted by luroca
How can we know the IP when the user logins? Can we?

Do you want to know the current IP of the user or a history of all IPs used by the user (or users)?

luroca 03-30-2006 11:00 AM

Hello MPDev, the current IP from where the user is logging in that moment.

Thanks for your interest. A really good hack :)

South Fork 03-30-2006 11:37 PM

Any good reason why I'm not getting any hits with this after a week? Install and config is very straight forward, forum is active enough that I'd expect something, and I've tested it out with a couple accounts. Nadda.

(Finally got a hit today. Works great!)

hotwheels 03-31-2006 12:50 AM

Quote:

Originally Posted by South Fork
Any good reason why I'm not getting any hits with this after a week? Install and config is very straight forward, forum is active enough that I'd expect something, and I've tested it out with a couple accounts. Nadda.

Quote:

1Bullitt tripped AE detector
here is what it show's me when it get's a hit.......
Quote:

1Bullitt seems to have multiple personalities using 99***** and 1Bullitt sharing the same computer. No soup for you! and you! and you!
Just showin that it does work........

BamaStangGuy 03-31-2006 01:26 AM

Hi,

We have ran into issues with this script when using the vb_datastore function of vBulletin. The site simply draws a blank white page and to fix it we must restart apache with plugins disabled.

MPDev 03-31-2006 10:53 AM

Are you sure it is this mod that is causing the problem? We don't direct use the vb_datastore table for anything in our plugin.

SaN-DeeP 04-01-2006 01:49 AM

very usefull addition to vB

Gunshot 04-01-2006 04:29 AM

Quote:

Originally Posted by mskgr
You can always create a maintenance account that is used for this kind of plugins / scripts. I created myself a user named "bot" and I assigned its id as the "Userid of who PM sender / Alert poster". This way, all the PMs and threads are originated by it... and not by me :)


you're right about that.........now

we just had a little tension on our board after my IP started coinciding with all the known Trolls

:cross-eyed:

PHPGeek2k3 04-01-2006 04:46 AM

ok i have updated this with a couple more features and a possible fix for the IP problem that was posted earlier.

I have added the ability to post a reply to a thread if the user has already tripped a detection thread. How i get the thread id is it sets another cookie with the threadid and posts the reply to that thread.

going to send my updated code to MPDev for him to review and then possibly update the thread with the updated code.

EdQ 04-01-2006 11:23 AM

Quote:

Originally Posted by Megareus Rex
A small problem. The hack doesn't generate a new thread in my specified forum when the etector is tripped. All permissions for the thread poster and forum are set so new threads can be created.

Any idea what could be wrong?

Same issue

Snifter 04-05-2006 03:26 AM

Hey guys. One of my admins installed this hack and now when we try to access any forum page we get this message:

Warning: Invalid argument supplied for foreach() in /includes/sessions.php on line 271

Unable to add cookies, header already sent.
File: /home/dteatro/thefriendsociety.com/forum/includes/init.php
Line: 27

Any idea how I can fix this/uninstall it? I'm not too concerned with keeping the hack, whatever help is easiest.

Gunshot 04-05-2006 04:31 AM

have ya tried deactivating this in the plugin manager?

Snifter 04-05-2006 05:15 AM

Plugin manager?

Excuse my ignorance, it wasn't my idea to install the hack.

Edit: I see the problem now. The version of vbulletin I was using doesn't have a plugin manager. He tried to install the hack on a version 3.0.1 vbulletin. How am I going to fix this?

I'm not sure how he installed it. I think maybe in the "Import Language XML File" menu, but only because it's the only place I can think of where you can upload xml files.

Edit: ok fixed it by clicking on "This will take the latest settings from ./install/vbulletin-settings.xml" in the tools.php menu

Sorry for bothering you people with such an idiotic problem.

South Fork 04-05-2006 06:32 AM

This hack is great. Very enlightening, now knowing who's who with my troublemakers and their 2nd accounts.

Thanks very much for offering this up.

Gbml2u 04-05-2006 02:51 PM

thanks you

EdQ 04-05-2006 05:33 PM

Still can't figure out why it won't post in a forum

sandalwood 04-06-2006 02:53 AM

wtf, this is one of the first mods i installed on my forum, and it DOES NOT WORK. i did all the config settings correct and its set to notify me and the excluded groups aren't the problem ..

weird! this should have been one of the ones that actually worked!

Tacama 04-06-2006 08:04 AM

Simply fantastic... I found a troll trying to register up to 4 times today thanks to this hack... Two thumbs up.

speedracer68 04-06-2006 11:01 PM

Help!!! I'm dead and cant' get into my admincp. Shortlly after I installed this on 3.5.4 today I have been unable to log into my admincp

Here are the errors I get

Warning: split() [function.split]: match failed in /includes/functions_login.php(168) : eval()'d code on line 4

Warning: split() [function.split]: match failed in /includes/functions_login.php(168) : eval()'d code on line 5

Warning: in_array() [function.in-array]: Wrong datatype for second argument in /includes/functions_login.php(168) : eval()'d code on line 6

Warning: Cannot modify header information - headers already sent by (output started at /home/virtual/site5/fst/var/www/html/forum/includes/class_core.php:2984) in /includes/functions_login.php(168) : eval()'d code on line 18

Unable to add cookies, header already sent.
File: /home/virtual/site5/fst/var/www/html/forum/includes/class_core.php
Line: 2984


All times are GMT. The time now is 07:40 PM.

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.01782 seconds
  • Memory Usage 1,848KB
  • 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
  • (2)bbcode_php_printable
  • (21)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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