Avatar of prasiddutta
prasiddutta
Flag for India asked on

Anti-keylogger in delphi?

Respected Experts,
I want to make an anti-keylogger in Delphi! Anyone can give any idea or code? Tell me in details bcoz I'm beginner.
Delphi

Avatar of undefined
Last Comment
prasiddutta

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
CodedK

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
senad

this is beyond your knowledge since you are a beginner.
start with something easier and build your knowledge gradually...
ThievingSix

If it's application specific and you need to be able to prevent a keylogger from knowing someones password they type into your application you could have the user use an on screen keyboard to type it.
prasiddutta

ASKER
Thanks for valuable comment.
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
aikimark

To extend the remarks of ThievingSix...If you are providing a method for entering password data, consider user clicks on non-alphanumeric images.  If you want to make this more secure, jumble the entry positions randomly.

You wouldn't need to worry about key loggers for password data if you captured the data with the arrow keys, space bar, Shift, and Enter keys.  With scrambled positioning, the keylogger data couldn't be used to compromise the system.
Note: Any recorded information might be used in cryptanalysis, such as password length.
CodedK

Thats what the component i gave does
(The controls work by faking a random number of garbage keystrokes...).
aikimark

Be aware that there are hardware keyloggers that are undetectable with these software methods.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
prasiddutta

ASKER
Thanks lot!
prasiddutta

ASKER
If you provide me (prasid@rediffmail.com) source code, it'll better to understand.