| View previous topic :: View next topic |
| Author |
Message |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 1:09 pm Post subject: [Quesion] Is that possible? |
|
|
Can I make a registration-ket to my own program?
Something like - if I enter the correct registration-key and it'll open the program, I'll not need to write the reg-key twice (or more).
Is that possible?
Thx...
*Note: I'm talking about Delphi, NOTHING ELSE.
_________________
Last edited by DevilGilad on Tue Jul 10, 2007 1:32 pm; edited 1 time in total |
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Tue Jul 10, 2007 1:17 pm Post subject: |
|
|
Yes. But before you do that, try to make a few crackme's first, so that your protection won't be killed so easily.
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 1:28 pm Post subject: |
|
|
| DeltaFlyer wrote: | | Yes. But before you do that, try to make a few crackme's first, so that your protection won't be killed so easily. |
I don't want to create such an advanced program, you know. I'm a little kid against the world O_O
Anyways, do you know how to?
_________________
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Tue Jul 10, 2007 1:29 pm Post subject: |
|
|
Can't really do much unless you tell me the language you're using...
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 1:32 pm Post subject: |
|
|
| DeltaFlyer wrote: | | Can't really do much unless you tell me the language you're using... |
Delphi.
_________________
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Tue Jul 10, 2007 1:43 pm Post subject: |
|
|
If I were to do such thing, I would set up a web server, and verify the key on the server, then the server will tell the application whether the key is valid or not.
But if you don't want anything complicated, just protection against the average computer user, you could settle for a simple if-statement.
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 1:50 pm Post subject: |
|
|
| DeltaFlyer wrote: | If I were to do such thing, I would set up a web server, and verify the key on the server, then the server will tell the application whether the key is valid or not.
But if you don't want anything complicated, just protection against the average computer user, you could settle for a simple if-statement. |
Yeah, I know what do you mean, but I want that after I typed the correct reg-key it'll allow me enter the program ALL the time, that I won't be constrainted to do it everytime...
_________________
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Tue Jul 10, 2007 1:52 pm Post subject: |
|
|
| store it in a text file/registry and check for that on startup
|
|
| Back to top |
|
 |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 1:54 pm Post subject: |
|
|
| appalsap wrote: | | store it in a text file/registry and check for that on startup |
There's a command to do that? O_O
And if I'll store it on a text file, the user will know the reg-key without even trying to search for it O_O
_________________
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Tue Jul 10, 2007 1:58 pm Post subject: |
|
|
RegCreateKeyEx/RegSetValueEx
_________________
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Tue Jul 10, 2007 2:14 pm Post subject: |
|
|
| DevilGilad wrote: | | appalsap wrote: | | store it in a text file/registry and check for that on startup |
There's a command to do that? O_O
And if I'll store it on a text file, the user will know the reg-key without even trying to search for it O_O |
You don't have to write it to "key.txt"... It could be anywhere, at the end of a picture file for example. Apply a simple shift cipher so that whatever you were storing doesn't show up in a text editor.
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
DevilGilad Grandmaster Cheater
Reputation: 0
Joined: 10 May 2007 Posts: 624 Location: Delete C:\WINDOWS folder and you'll be able to see me.
|
Posted: Tue Jul 10, 2007 2:39 pm Post subject: |
|
|
| DeltaFlyer wrote: | | DevilGilad wrote: | | appalsap wrote: | | store it in a text file/registry and check for that on startup |
There's a command to do that? O_O
And if I'll store it on a text file, the user will know the reg-key without even trying to search for it O_O |
You don't have to write it to "key.txt"... It could be anywhere, at the end of a picture file for example. Apply a simple shift cipher so that whatever you were storing doesn't show up in a text editor. |
Can it be EVERYTHING? O_O
_________________
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Tue Jul 10, 2007 4:11 pm Post subject: |
|
|
if edit1.text:= KeyLOL then
form1.create
or whatever
im not sure its the right code, my comp is down so i cant open any of my old programs ... :\
its a noob way but easy as hell
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Tue Jul 10, 2007 4:19 pm Post subject: |
|
|
| Kevinnn wrote: | if edit1.text:= KeyLOL then
form1.create
or whatever
im not sure its the right code, my comp is down so i cant open any of my old programs ... :\
its a noob way but easy as hell  |
Form.show;
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Tue Jul 10, 2007 4:22 pm Post subject: |
|
|
well, if it havent been created yet ? well idk.
i startet out using
form1:=Tform1.create(self);
form1.showmodal;
but now i figured out all you need is form1.show;
heh
|
|
| Back to top |
|
 |
|