i have made an application in java...now i want to how can i make it secure ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

i have made an application in java...now i want to how can i make it secure ?

i have used jdbc,sql,swing

12th Feb 2017, 5:16 PM
Somnath Ghosh
Somnath Ghosh - avatar
3 Answers
+ 18
Obfuscate it! ^_^
12th Feb 2017, 5:19 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 5
Is it networked? Better get it well tested for overflows if so. Once you've done that look to encrypt the channel to prevent injection attacks. Obfuscation helps, but hosting your code on your own server is the ultimate protection, if the channel is secured.
12th Feb 2017, 5:34 PM
Leon
Leon - avatar
0
If you create an Android Java App. You can try: Bg+ Anti Decompiler (JAVA) It's free and powerful solution: https://play.google.com/store/apps/details?id=com.bgplus.Anti.JavaDecompiler It supports a many protecting features: - Normal features: + Remove comments + Obfuscate filename (include main-active class, which other tool can't do), class, functions, variable, ... - Advandce features: + Obfuscate with unicode characters + Hide string value (helpful when you keep some sensitive info in java source) + Hide packagename + Add fakecode to trap the decompiler tools + Check resource-string (helpful when someone try to edit the resources of your APK)
13th Feb 2017, 1:47 AM
NetJava