DTO vBulletin Product Support


Go Back   Drive Thru Online - Support | Drive Thru Online vBulletin Products > Pre-Sales Questions > DTO Vendor Tools

DTO Vendor Tools Questions regarding our Vendor Tools product.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-15-2011, 11:33 AM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default Vendor Registration Spam

Ok so before we open up each file in the DTO Vendor Tools vBulletin Product and research it's code, I would like to see if we can get some support help.

Can someone please explain how is it possible for anyone to register in the Vendor Registration when it is disabled in the Settings?

Since installing DTO Vendor Tools on day one, we have had the "Enable Vendor Registration" setting in the admincp disabled. With this setting disabled, there is nothing displayed in the public area that shows a possible way for a Vendor to register. The option for a vendor to register Does Not Appear in the dropdown tab located on the NavBar.

However, for a unexplained reason, we have a same group of what I call spam which has the ability to fill out the Vendor Registration request form(which keep in mind we have disabled and does not appear anywhere as a possible option to register). If the option to register does not appear, how is anyone still able to register? It's almost like there is something hidden in the script that gives these individuals the ability to be able to register their website.

As an admin I get the confirmation email which shows a new vendor registration. I then login to DTO Vendor Tools in admincp and select Manage Vendors and sure enough there it shows the new register in the Pending Vendors section.

As it is now, this product is not safe. At this point I can only hope there is a explanation why it possible, as well as a fix/cure.

How is this possible?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-15-2011, 11:57 AM
Nathan Nathan is offline
Director - Product Support
 
Join Date: Jan 2009
Location: Ohio
Posts: 463
Default

The switch only removes the registration page from public view. If the URL is known then one can access the URL.

Later today we'll try to put a bit of code together that will totally disable the ability to access the page.
__________________
-----
Nathan Freedenberg
Director - Product Support
Drive Thru Online
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-15-2011, 02:12 PM
Mark's Avatar
Mark Mark is offline
Administrator
 
Join Date: Nov 2008
Posts: 1,079
Default

I'll incorporate this code into a future release but in the meantime here are a couple of simple code changes to prevent the URLs from doing anything even if you have registration disabled:

Edit the file dto_vendor.php and search for the following:

PHP Code:
if ($_REQUEST['do'] == 'regproc'
change this to:

PHP Code:
if (($_REQUEST['do'] == 'regproc') && ($vbulletin->options['dto_vendor_register'])) 
in the same file search for:

PHP Code:
if ($_REQUEST['do'] == 'reg'
change this to:

PHP Code:
if (($_REQUEST['do'] == 'reg') && ($vbulletin->options['dto_vendor_register'])) 
Save the file and then try the following URLs:

http://yoursitehere/forums/dto_vendor.php?do=reg

http://yoursitehere/forums/dto_vendor.php?do=regproc

both should result in a white screen.

Let us know if you need any additional assistance.

Thanks!

Mark
__________________
Mark Ferguson
President - Drive Thru Online, Inc.
Drive Thru Online – Helping Turn Your Passion into Profit
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-15-2011, 02:15 PM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default

Quote:
Originally Posted by Nathan View Post
The switch only removes the registration page from public view. If the URL is known then one can access the URL.

Later today we'll try to put a bit of code together that will totally disable the ability to access the page.
There is no doubt something needs to be done. I'm shocked you haven't had other customers complaining before now. Maybe others don't pay attention, or know the difference when they are, and are not, being used from spam bots ect.

As a customer I appreciate you putting in the time to create a patch for this issue.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-15-2011, 02:17 PM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default

Thank you Mark. I will install the upgrade here very shortly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-15-2011, 02:55 PM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default

I made the changes with in the 'dto_vendor.php' file. After checking both the mentioned links below but with including my website address to them, the links both show the white page just like you said it would.

http://yoursitehere/forums/dto_vendor.php?do=reg
http://yoursitehere/forums/dto_vendor.php?do=regproc

I hope these changes put a stop to the attacks.

Thanks again, and I will be sure to return should any additional issues take place.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-15-2011, 02:58 PM
Mark's Avatar
Mark Mark is offline
Administrator
 
Join Date: Nov 2008
Posts: 1,079
Default

Glad to assist. If you haven't already done so be sure to upgrade/change out the form of CAPTCHA you are using in vBulletin as it was cracked a month or so ago. This has led to a lot of spam registrations for all forum owners.

Mark
__________________
Mark Ferguson
President - Drive Thru Online, Inc.
Drive Thru Online – Helping Turn Your Passion into Profit
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-15-2011, 03:08 PM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default

Quote:
Originally Posted by Mark View Post
Glad to assist. If you haven't already done so be sure to upgrade/change out the form of CAPTCHA you are using in vBulletin as it was cracked a month or so ago. This has led to a lot of spam registrations for all forum owners.

Mark
Are you referring to switching to a different option from the Human Verification Options, or?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 03-15-2011, 03:08 PM
Nathan Nathan is offline
Director - Product Support
 
Join Date: Jan 2009
Location: Ohio
Posts: 463
Default

Check out Solve Media. We've been using it on various sites for a few weeks now and it has brought the spam registrations to a stop.

Solve Media
__________________
-----
Nathan Freedenberg
Director - Product Support
Drive Thru Online
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 03-15-2011, 06:58 PM
psychobike psychobike is offline
 
Join Date: Oct 2009
Posts: 7
Default

Quote:
Originally Posted by Nathan View Post
Check out Solve Media. We've been using it on various sites for a few weeks now and it has brought the spam registrations to a stop.

Solve Media
After researching Solve Media, it looked to be promising. I installed Solve Media and I'm now looking forward to it's benefits. Thank you guys for the help and heads up!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

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 Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -6. The time now is 03:23 AM.