Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[REL][VB6]Login Script V2[NOT REG][MANUALLY]
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
SwedenS
Cheater
Reputation: 0

Joined: 12 Dec 2007
Posts: 44

PostPosted: Thu Mar 20, 2008 4:45 am    Post subject: [REL][VB6]Login Script V2[NOT REG][MANUALLY] Reply with quote

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
View user's profile Send private message
Pseudo Xero
I post too much
Reputation: 0

Joined: 16 Feb 2007
Posts: 2607

PostPosted: Thu Mar 20, 2008 4:50 am    Post subject: Reply with quote

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
View user's profile Send private message
HolyBlah
Master Cheater
Reputation: 2

Joined: 24 Aug 2007
Posts: 446

PostPosted: Thu Mar 20, 2008 6:56 am    Post subject: Reply with quote

Good for beginners, but it's really easy to crack it.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Mar 20, 2008 1:35 pm    Post subject: Reply with quote

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
View user's profile Send private message
Heartless
I post too much
Reputation: 0

Joined: 03 Dec 2006
Posts: 2436

PostPosted: Thu Mar 20, 2008 2:00 pm    Post subject: Reply with quote

You should make a crack mw with that script.
_________________
What dosen't kill you, usually does the second time.
Back to top
View user's profile Send private message
samuri25404
Grandmaster Cheater
Reputation: 7

Joined: 04 May 2007
Posts: 955
Location: Why do you care?

PostPosted: Thu Mar 20, 2008 2:26 pm    Post subject: Reply with quote

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.

_________________
Wiccaan wrote:

Oh jeez, watchout I'm a bias person! Locked.


Auto Assembly Tuts:
In Depth Tutorial on AA
Extended
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Mar 20, 2008 2:44 pm    Post subject: Reply with quote

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 Smile
Back to top
View user's profile Send private message
です
Newbie cheater
Reputation: 0

Joined: 09 Feb 2008
Posts: 20

PostPosted: Thu Mar 20, 2008 4:24 pm    Post subject: Reply with quote

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
View user's profile Send private message
dnsi0
I post too much
Reputation: 0

Joined: 04 Jan 2007
Posts: 2674

PostPosted: Thu Mar 20, 2008 8:43 pm    Post subject: Reply with quote

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
View user's profile Send private message
Felgore
Master Cheater
Reputation: 0

Joined: 16 Apr 2007
Posts: 447

PostPosted: Thu Mar 20, 2008 10:19 pm    Post subject: Reply with quote

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. Wink

Thanks Very Happy
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Thu Mar 20, 2008 11:53 pm    Post subject: Reply with quote

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. Wink

Thanks Very Happy


1. It's .NET

2. Do you know how to call the Win32 API?
Back to top
View user's profile Send private message
XxOsirisxX
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Oct 2006
Posts: 1597

PostPosted: Fri Mar 21, 2008 12:41 am    Post subject: Reply with quote

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. Wink

Thanks Very Happy


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
View user's profile Send private message
Felgore
Master Cheater
Reputation: 0

Joined: 16 Apr 2007
Posts: 447

PostPosted: Fri Mar 21, 2008 1:39 am    Post subject: Reply with quote

Thanks for the response's. Very Happy

In your opinion(s), Would learning VB.net be better or worse than normal VB?

Im off to read Wiccan's Tut now Very Happy

Thanks again Wink
Back to top
View user's profile Send private message
XxOsirisxX
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Oct 2006
Posts: 1597

PostPosted: Fri Mar 21, 2008 10:34 am    Post subject: Reply with quote

Felgore wrote:
Thanks for the response's. Very Happy

In your opinion(s), Would learning VB.net be better or worse than normal VB?

Im off to read Wiccan's Tut now Very Happy

Thanks again Wink


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 Razz

_________________

Back to top
View user's profile Send private message
dnsi0
I post too much
Reputation: 0

Joined: 04 Jan 2007
Posts: 2674

PostPosted: Fri Mar 21, 2008 11:45 am    Post subject: Reply with quote

I don't know much cracking. But I know how to crack VB crackmes that are unprotected.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites