| View previous topic :: View next topic |
| Author |
Message |
MaximuS I post too much
Reputation: 3
Joined: 05 Apr 2007 Posts: 3212 Location: ......
|
Posted: Sat Mar 15, 2008 3:57 pm Post subject: Making a variable scanner in VB |
|
|
| well i made one in C# and wondering how to do it in Visual Basic
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 15, 2008 4:07 pm Post subject: Re: Making a variable scanner in VB |
|
|
| genson0 wrote: | | well i made one in C# and wondering how to do it in Visual Basic |
If you actually wrote it yourself in C# you would know how to do it in VB.
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
MaximuS I post too much
Reputation: 3
Joined: 05 Apr 2007 Posts: 3212 Location: ......
|
Posted: Sat Mar 15, 2008 4:15 pm Post subject: |
|
|
| well C# and VB are completely diffrent
|
|
| Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Sat Mar 15, 2008 4:58 pm Post subject: |
|
|
Well what method did you use in C#?
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sat Mar 15, 2008 5:11 pm Post subject: |
|
|
| genson0 wrote: | | well C# and VB are completely diffrent |
It's just minor syntax differences pretty much, they are both practically identical outside of that.
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 15, 2008 5:59 pm Post subject: |
|
|
| genson0 wrote: | | well C# and VB are completely diffrent |
No, they aren't.
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
MaximuS I post too much
Reputation: 3
Joined: 05 Apr 2007 Posts: 3212 Location: ......
|
Posted: Sat Mar 15, 2008 6:06 pm Post subject: |
|
|
| prove it then
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Sat Mar 15, 2008 6:25 pm Post subject: |
|
|
ok shtu up genson we want to do this in vb6, and this is what Blader said to me:
didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real
Can you tell us how?
_________________
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 15, 2008 6:38 pm Post subject: |
|
|
| pepsiguy_2 wrote: | ok shtu up genson we want to do this in vb6, and this is what Blader said to me:
didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real
Can you tell us how? |
It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
You read each line, and use GetVariable to see if the line is a valid variable.
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sat Mar 15, 2008 6:42 pm Post subject: |
|
|
| genson0 wrote: | | prove it then |
http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx
C# and VB.net (keyword here) are so similar, they can be converted between each other easily.
VB6 isn't exactly worlds away from VB.net either... for the most part.
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Sat Mar 15, 2008 6:47 pm Post subject: |
|
|
| Xenophobe wrote: | | pepsiguy_2 wrote: | ok shtu up genson we want to do this in vb6, and this is what Blader said to me:
didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real
Can you tell us how? |
It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
You read each line, and use GetVariable to see if the line is a valid variable. |
Well thats the problem, i know how to do get variable but i dont get how to know how to see if each line is valid
_________________
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sat Mar 15, 2008 6:50 pm Post subject: |
|
|
| pepsiguy_2 wrote: | | Xenophobe wrote: | | pepsiguy_2 wrote: | ok shtu up genson we want to do this in vb6, and this is what Blader said to me:
didn't really make a variable scanner, all I did was read from a text file, split each line, and use the get variable function to see which were real
Can you tell us how? |
It's an incredibly simple brute-forcing method.
You just have a simple text file like this:
You read each line, and use GetVariable to see if the line is a valid variable. |
Well thats the problem, i know how to do get variable but i dont get how to know how to see if each line is valid |
Read each line using a loop, and inside the loop use GetVariable to see if the returned line is valid.
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Sat Mar 15, 2008 7:11 pm Post subject: |
|
|
gimme the code im a beginner jeez
_________________
|
|
| Back to top |
|
 |
Pepsiguy I post too much
Reputation: 0
Joined: 16 Aug 2007 Posts: 2016
|
Posted: Sat Mar 15, 2008 7:11 pm Post subject: |
|
|
gimme the code im a beginner jeez
_________________
|
|
| Back to top |
|
 |
MaximuS I post too much
Reputation: 3
Joined: 05 Apr 2007 Posts: 3212 Location: ......
|
Posted: Sat Mar 15, 2008 7:43 pm Post subject: |
|
|
D>D>Double Post
we need the code xene
|
|
| Back to top |
|
 |
|