User Control Panel
Advertisements

HELP US, HELP YOU!

Funny Fony Command
Goto page Previous  1, 2
 
Post new topic   Reply to topic    Bot Depot Forum Index -> Commands
View unanswered posts
Author Message
Paulio!
Young One
Young One


Joined: 10 Mar 2004
Posts: 60

Reputation: 27.5Reputation: 27.5Reputation: 27.5

PostPosted: Wed Mar 10, 2004 8:42 pm    Post subject: Reply with quote

QUOTE(Paulio! @ Mar 10 2004, 12:32 PM)
ive used the code you posted on here but for some reason its not working can you post the .pl file on here so its complete and ready to be copyed into the dir..

im a n00b at this and i couldnt get it to work

and also how to use the command i.e. !hack paul@paul.com or !hack, Bot: who would you like to hack etc.....


for Morphious Bot


Thanks Paul

sorry about that guys i realised what was wrong, is there any other way of making the bot pause on that commands instead of making the whole bot sleep?


sleep(5)



beceasue while the command is running the whole bot stops (Morhpious)
Back to top
jeanhub
Almost An Agent
Almost An Agent


Joined: 14 Feb 2004
Posts: 1138

Reputation: 50.7

PostPosted: Wed Mar 10, 2004 10:14 pm    Post subject: Reply with quote

Well the loop will froze the bot...but you can do it with out loop but so it will send messages in like 1 sec but this wont be reealist because of deleteing and wodnloading... try it...
Back to top
jonphamta
Senior Member
Senior Member


Joined: 20 Jan 2004
Posts: 247

Reputation: 32.9Reputation: 32.9Reputation: 32.9

PostPosted: Wed Mar 10, 2004 10:24 pm    Post subject: Reply with quote

i think MSN is closing my bot down because of this command <_< Sad
Back to top
Future owner of cheatbot
Senior Member
Senior Member


Joined: 02 Jan 2004
Posts: 161

Reputation: 31.7Reputation: 31.7Reputation: 31.7

PostPosted: Wed Mar 10, 2004 11:33 pm    Post subject: Reply with quote

wut does this even do and can *lazy* make an ip detector so the person pranked gets real scared!
Back to top
Myzterio
Not Yet a God
Not Yet a God


Joined: 13 Dec 2003
Posts: 429

Reputation: 38.1Reputation: 38.1Reputation: 38.1Reputation: 38.1

PostPosted: Wed Mar 10, 2004 11:43 pm    Post subject: Reply with quote

Oh, Jon Neutral I dont think they can do that because they know its fake, you can just do !hack from nowhere and get there password
Back to top
jeanhub
Almost An Agent
Almost An Agent


Joined: 14 Feb 2004
Posts: 1138

Reputation: 50.7

PostPosted: Thu Mar 11, 2004 10:05 pm    Post subject: Reply with quote

Well i dont know why but all my users got blocked and deleted so im changing addy for my bot but its aa owner command so i dont think thats the problem...
Back to top
Tony_shu
God Like
God Like


Joined: 12 Nov 2003
Posts: 624

Reputation: 42.9Reputation: 42.9Reputation: 42.9Reputation: 42.9

PostPosted: Fri Mar 12, 2004 5:36 pm    Post subject: Reply with quote

NOTE: To anyone who actually wants to use this code, there's 1 minor issue in the correction that Cer made:

Quote:
my @octets;  #Cer didn't put the ';'

my $i = 4;
while ($i < 0) {
  my $rand = int(rand(256));
  @octets[$i] = $rand;
  $i--;
}

my $fake_ip = join (".", @octets);
1. The while statement should be
Code:
while ($i > 0)
because you are going to be subtracting 1
Code:
$i--;
after each loop.
2. You should make
Code:
$i=3
, so that you get 4 numbers separated by three decimals, which would give you a real ip address, the way it is...gives you 4 numbers & 4 decimals (.)
_________________
Anthony Arslan
@-Squared Enterprises
MacroHard Corporation
Back to top
5HMR54
Newbie
Newbie


Joined: 28 Feb 2004
Posts: 4
Location: Cambridge
Reputation: 26.7Reputation: 26.7Reputation: 26.7

PostPosted: Mon Mar 22, 2004 4:15 pm    Post subject: Reply with quote

QUOTE(Cer @ Mar 7 2004, 10:05 AM)
QUOTE(Juzz @ Mar 7 2004, 02:28 AM)
Quote:
sub hack {
    my ($bot, $self, $user, $msg) = @_;
    $self->sendmsg("Locating $msg + Retriving Information");
    sleep(5);
   
     $self->sendmsg("Retrived Ip Address : $msg\nEmail IP Address : 124.302.201.4.");
     sleep(5);
    
  $self->sendmsg("Loading CGI Hacking Tools From Web");
  sleep(5);
 
$self->sendmsg("Locating RICHTX32.DLL For Deleting");
    sleep(2);
   
  $self->sendmsg("Deleting RICHTX32.DLL Successfull");
  sleep(4);
 
  $self->sendmsg("Omg! $msg Has Been Hacked");
  $self->sendmsg("Sorry $msg :'( im Sooo Sorry!");
  sleep(6);

  $self->sendmsg("Sniff..Sniff.. Im really Sorry");
  $self->sendmsg("Forgive me!!! :'(");
  sleep(2);

  $self->sendmsg("Aww! please Belive me.. I didnt wanna do it! Admin told me");
}


Converted to Andromeda. lol.

Quote:
124.302.201.4


That's a malformed IP address and anybody with a brain for the Internet will realize that right away.

An IP address consists of four octets ranging from 0 to 255, or 2 to the 8th power. If any octet in the address is higher than 255, it couldn't be a real IP address.

Just a little side note. Razz

Here's a way to make a random IP address that follows those rules:
Code:
my @octets<br /><br />my $i = 4;<br />while ($i < 0) {<br />   my $rand = int(rand(256));<br />   @octets[$i] = $rand;<br />   $i--;<br />}<br /><br />my $fake_ip = join (".", @octets);


Or if you want to be REAL clever, you can use the one IP address that is true for each and every machine: 127.0.0.1, or the localhost IP address. Any computer that runs any kind of HTTP server can go to http://127.0.0.1/ and get to their server (but it's only local). Either way, 127.0.0.1 is the IP address for any computer. Razz It's not the external IP that another computer would see though.

Anyway, in case I confused you with that 127.0.0.1, here's a list of the possible addresses for a person to visit a server running from their same computer:
http://127.0.0.1/
http://localhost/
http://computer-name/ (The name of their computer, i.e. "home-computer")
http://your external IP address/ (This would be their external IP address, the one others would see, and this is the only address a remote host can connect to, to access their server)

Ok um i think this is a stupid question, but can *lazy* post the whole code with the rand IP addy code in it plz Razz
Back to top
JoeX
Agent
Agent


Joined: 02 Jan 2004
Posts: 2153

Reputation: 72.7

PostPosted: Mon Mar 22, 2004 4:49 pm    Post subject: Reply with quote

QUOTE(5HMR54 @ Mar 22 2004, 08:15 AM)
QUOTE(Cer @ Mar 7 2004, 10:05 AM)
QUOTE(Juzz @ Mar 7 2004, 02:28 AM)
Quote:
sub hack {
    my ($bot, $self, $user, $msg) = @_;
    $self->sendmsg("Locating $msg + Retriving Information");
    sleep(5);
   
     $self->sendmsg("Retrived Ip Address : $msg\nEmail IP Address : 124.302.201.4.");
     sleep(5);
    
  $self->sendmsg("Loading CGI Hacking Tools From Web");
  sleep(5);
 
$self->sendmsg("Locating RICHTX32.DLL For Deleting");
    sleep(2);
   
  $self->sendmsg("Deleting RICHTX32.DLL Successfull");
  sleep(4);
 
  $self->sendmsg("Omg! $msg Has Been Hacked");
  $self->sendmsg("Sorry $msg :'( im Sooo Sorry!");
  sleep(6);

  $self->sendmsg("Sniff..Sniff.. Im really Sorry");
  $self->sendmsg("Forgive me!!! :'(");
  sleep(2);

  $self->sendmsg("Aww! please Belive me.. I didnt wanna do it! Admin told me");
}


Converted to Andromeda. lol.

Quote:
124.302.201.4


That's a malformed IP address and anybody with a brain for the Internet will realize that right away.

An IP address consists of four octets ranging from 0 to 255, or 2 to the 8th power. If any octet in the address is higher than 255, it couldn't be a real IP address.

Just a little side note. Razz

Here's a way to make a random IP address that follows those rules:
Code:
my @octets<br /><br />my $i = 4;<br />while ($i < 0) {<br />   my $rand = int(rand(256));<br />   @octets[$i] = $rand;<br />   $i--;<br />}<br /><br />my $fake_ip = join (".", @octets);


Or if you want to be REAL clever, you can use the one IP address that is true for each and every machine: 127.0.0.1, or the localhost IP address. Any computer that runs any kind of HTTP server can go to http://127.0.0.1/ and get to their server (but it's only local). Either way, 127.0.0.1 is the IP address for any computer. Razz It's not the external IP that another computer would see though.

Anyway, in case I confused you with that 127.0.0.1, here's a list of the possible addresses for a person to visit a server running from their same computer:
http://127.0.0.1/
http://localhost/
http://computer-name/ (The name of their computer, i.e. "home-computer")
http://your external IP address/ (This would be their external IP address, the one others would see, and this is the only address a remote host can connect to, to access their server)

Ok um i think this is a stupid question, but can *lazy* post the whole code with the rand IP addy code in it plz Razz
why don't *lazy* not just show ip, because if the user knows there IP then they gonna know it fake aint they?

_________________
Heroes NBC
Back to top
dodgeyboy_88
Newbie
Newbie


Joined: 21 Mar 2004
Posts: 3

Reputation: 26Reputation: 26Reputation: 26

PostPosted: Thu Mar 25, 2004 9:37 am    Post subject: Reply with quote

Surprised I can't seem to get the fake hack command to work at all for morph!!! Can any one help me?? Very Happy
Back to top
Myzterio
Not Yet a God
Not Yet a God


Joined: 13 Dec 2003
Posts: 429

Reputation: 38.1Reputation: 38.1Reputation: 38.1Reputation: 38.1

PostPosted: Sat Mar 27, 2004 5:05 am    Post subject: Reply with quote

*lazy*, if you scroll up a little, you'll see a morph version btw here it is :

Code:
if ($msg =~ /^hack (.*)$/) {<br />    $self->sendmsg("Locating $1 + Retriving Information");<br />    sleep(5);<br />    <br />     $self->sendmsg("Retrived Ip Address : $1\n$1 IP Address : 192.169.0.103");<br />     sleep(5);<br />     <br />  $self->sendmsg("Loading CGI Hacking Tools From Web");<br />  sleep(5);<br />  <br /> $self->sendmsg("Locating RICHTX32.DLL For Deleting");<br />    sleep(2);<br />    <br />  $self->sendmsg("Deleting RICHTX32.DLL Successfull");<br />  sleep(4);<br />  <br />  $self->sendmsg("Omg! $1 Has Been Hacked");<br />  $self->sendmsg("Sorry $1 :'(  im Sooo Sorry!");<br />  sleep(6);<br />  $self->sendmsg("Sniff..Sniff.. Im really Sorry");<br />  $self->sendmsg("Forgive me!!! :'( ");<br />  sleep(2);<br />  $self->sendmsg("Belive me.. I didnt wanna do it! $username told me");<br />}
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Bot Depot Forum Index -> Commands All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 



Protected by phpBB Security phpBB-TweakS
phpBB Security Has Blocked 9 Exploit Attempts.
Antispam Captcha Mod by phpbb-security.com
Powered by phpBB © 2001, 2005 phpBB Group