| View previous topic :: View next topic |
| Author |
Message |
SwedenS Cheater
Reputation: 0
Joined: 12 Dec 2007 Posts: 44
|
Posted: Thu Mar 20, 2008 4:45 am Post subject: [REL][VB6]Login Script V2[NOT REG][MANUALLY] |
|
|
Hi, iam releasing my V2 of my script....
[Manually]
| Quote: |
Open a new Project in VB6, rename Form1, to frmLogin.
Add 2TextBoxes, 2Labels, 2Buttons.
Rename the second txt box to "txtPassword".
Label Password and Username.
Label Command1 to Login and double click it.
Add this code. Everything is explained in the code.
| Code: |
Private Sub Command1_Click()
'check if right password
If txtPassword = "123test123" Then
'place code to here to pass the
Me.Hide
'success to the calling sub
'setting a global var is the easiest
LoginSucceeded = True
MsgBox "Succeded logged in!", , "Login"
frmMain.Show
End
Else
MsgBox "Invalid Password, try again!", , "Login"
txtPassword.SetFocus
SendKeys "{Home}+{End}"
End If
End Sub
|
Label Command2 to Cancel and double click it. Add this code.
| Code: |
Private Sub Command2_Click()
'You have now exited the login script
LoginSucceeded = False
End
End Sub
|
The finall step is to make frmMain.
|
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Thu Mar 20, 2008 4:50 am Post subject: |
|
|
This isn't more advanced.
_________________
| 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 |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
Posted: Thu Mar 20, 2008 6:56 am Post subject: |
|
|
| Good for beginners, but it's really easy to crack it.
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Thu Mar 20, 2008 1:35 pm Post subject: |
|
|
This kind of "protection" is absolutely worthless. Anybody that knows the basics of ollydbg will have it figured out in seconds.
e: and if it's .NET, it will likely just get torn to bits just as fast.
|
|
| Back to top |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Thu Mar 20, 2008 2:00 pm Post subject: |
|
|
You should make a crack mw with that script.
_________________
What dosen't kill you, usually does the second time. |
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Thu Mar 20, 2008 2:26 pm Post subject: |
|
|
| slovach wrote: | This kind of "protection" is absolutely worthless. Anybody that knows the basics of ollydbg will have it figured out in seconds.
e: and if it's .NET, it will likely just get torn to bits just as fast. |
As much as I respect you, that's wrong.
If it's .NET, it's gonna get torn much faster than ODBG.
.NET, you just decompile it and boom, there you go; ODBG you have to actually parse some assembly, not hard, but harder than just popping it open and reading the script.
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Thu Mar 20, 2008 2:44 pm Post subject: |
|
|
| samuri25404 wrote: | | slovach wrote: | This kind of "protection" is absolutely worthless. Anybody that knows the basics of ollydbg will have it figured out in seconds.
e: and if it's .NET, it will likely just get torn to bits just as fast. |
As much as I respect you, that's wrong.
If it's .NET, it's gonna get torn much faster than ODBG.
.NET, you just decompile it and boom, there you go; ODBG you have to actually parse some assembly, not hard, but harder than just popping it open and reading the script. |
Chances are you'll end up right at it if you set a breakpoint on vbstrcmp
|
|
| Back to top |
|
 |
です Newbie cheater
Reputation: 0
Joined: 09 Feb 2008 Posts: 20
|
Posted: Thu Mar 20, 2008 4:24 pm Post subject: |
|
|
| samuri25404 wrote: | | slovach wrote: | This kind of "protection" is absolutely worthless. Anybody that knows the basics of ollydbg will have it figured out in seconds.
e: and if it's .NET, it will likely just get torn to bits just as fast. |
As much as I respect you, that's wrong.
If it's .NET, it's gonna get torn much faster than ODBG.
.NET, you just decompile it and boom, there you go; ODBG you have to actually parse some assembly, not hard, but harder than just popping it open and reading the script. |
ITT we lern2dotfuscate.
Or some other method. Of course it is probably still crackable, but that's where the writer should protect some stuff himself.
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Thu Mar 20, 2008 8:43 pm Post subject: |
|
|
How to crack this
Open OllyDebug
Load up the EXE
Click View All Reference Text Strings
Find the password.
Thats the password.
Scroll up till a jump
reverse the jump.
|
|
| Back to top |
|
 |
Felgore Master Cheater
Reputation: 0
Joined: 16 Apr 2007 Posts: 447
|
Posted: Thu Mar 20, 2008 10:19 pm Post subject: |
|
|
| dnsi0 wrote: | How to crack this
Open OllyDebug
Load up the EXE
Click View All Reference Text Strings
Find the password.
Thats the password.
Scroll up till a jump
reverse the jump. |
LOL!
I know this sounds noob, but I downloaded VB2008 Express from Microsoft.com, and I was wondering if it's .NET or what.
I've also been reading up on a few Tut's, so I know the basics of VB, but I can't seem to find how to attach to a Process and write to Memory
Im assuming Dnsi0 know's how.
Thanks
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Thu Mar 20, 2008 11:53 pm Post subject: |
|
|
| Felgore wrote: | | dnsi0 wrote: | How to crack this
Open OllyDebug
Load up the EXE
Click View All Reference Text Strings
Find the password.
Thats the password.
Scroll up till a jump
reverse the jump. |
LOL!
I know this sounds noob, but I downloaded VB2008 Express from Microsoft.com, and I was wondering if it's .NET or what.
I've also been reading up on a few Tut's, so I know the basics of VB, but I can't seem to find how to attach to a Process and write to Memory
Im assuming Dnsi0 know's how.
Thanks  |
1. It's .NET
2. Do you know how to call the Win32 API?
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Fri Mar 21, 2008 12:41 am Post subject: |
|
|
| Felgore wrote: | | dnsi0 wrote: | How to crack this
Open OllyDebug
Load up the EXE
Click View All Reference Text Strings
Find the password.
Thats the password.
Scroll up till a jump
reverse the jump. |
LOL!
I know this sounds noob, but I downloaded VB2008 Express from Microsoft.com, and I was wondering if it's .NET or what.
I've also been reading up on a few Tut's, so I know the basics of VB, but I can't seem to find how to attach to a Process and write to Memory
Im assuming Dnsi0 know's how.
Thanks  |
1. Yes it can be used at .Net, even trough that was made at vb 6.0, only thing i see there that may change is the SendKeys function, at .Net its used like SendKeys.Send.
2. Read Wiccaan W/R process with VB tutorial. Its pretty good.
_________________
|
|
| Back to top |
|
 |
Felgore Master Cheater
Reputation: 0
Joined: 16 Apr 2007 Posts: 447
|
Posted: Fri Mar 21, 2008 1:39 am Post subject: |
|
|
Thanks for the response's.
In your opinion(s), Would learning VB.net be better or worse than normal VB?
Im off to read Wiccan's Tut now
Thanks again
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Fri Mar 21, 2008 10:34 am Post subject: |
|
|
| Felgore wrote: | Thanks for the response's.
In your opinion(s), Would learning VB.net be better or worse than normal VB?
Im off to read Wiccan's Tut now
Thanks again  |
VB.Net is the "New" generation, at how the world moves, would be better VB.Net, even it may be worse in some sense.. like, it's easier to decompile than 6.0, like, you can use the own compiler to change an .exe name/author/copyright etc.., also to see the code with a decompiler apparently.
But, it have his adventages in comparation with vb6.0.. which i still don't found (Appart from XP default skin).. but it must have it
_________________
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Fri Mar 21, 2008 11:45 am Post subject: |
|
|
| I don't know much cracking. But I know how to crack VB crackmes that are unprotected.
|
|
| Back to top |
|
 |
|