Welcome Guest! To access all forums & features, please register an account or sign-in. → Why register?



dumb question, how to i close source?


11 replies to this topic - - - - -

#1 SPEhosting

    C++ n00b

  • 2,435 posts
  • Joined: 15-July 08
  • Location: my room
  • OS: windows 7, backtrack 5, OSx 10.6

Posted 20 November 2012 - 15:30

ok basically im writing java programs, but i want it so no one can read or ever read the code ..... how do i do this ?


#2 Glassed Silver

    ☆♡Neowin's portion of Crazy♡☆

  • 10,729 posts
  • Joined: 10-June 04
  • Location: MY CATFORT in Kassel, Germany
  • OS: OS X ML; W7; Elementary; Android 4
  • Phone: iPhone 5 64GB Black (6.0.2)

Posted 20 November 2012 - 15:34

Well, Java is rather easy to decompile, so if you rely that much on lack of easy code extraction... You're basically screwed with Java.

Afaik at least.
I could be wrong.

Glassed Silver:mac

#3 omnicoder

    Programmer

  • 2,791 posts
  • Joined: 18-February 08
  • Location: Space

Posted 20 November 2012 - 15:38

Java compiles to bytecode which can be rather easily converted back into readable source code with a free tool like this. Java isn't meant for keeping your source code secure and even if you use C++ someone sufficiently dedicated will manage to reverse-engineer your code if they want to. I'm not trying to be offensive, but if you have to ask this question you probably aren't writing anything that would be worth someone's time to try to steal anyway at the moment. Just write your program, practice and don't worry about people decompiling your code because anything you do can only make it slightly harder for them, not stop them.

#4 OP SPEhosting

    C++ n00b

  • 2,435 posts
  • Joined: 15-July 08
  • Location: my room
  • OS: windows 7, backtrack 5, OSx 10.6

Posted 20 November 2012 - 15:54

View Postomnicoder, on 20 November 2012 - 15:38, said:

Java compiles to bytecode which can be rather easily converted back into readable source code with a free tool like this. Java isn't meant for keeping your source code secure and even if you use C++ someone sufficiently dedicated will manage to reverse-engineer your code if they want to. I'm not trying to be offensive, but if you have to ask this question you probably aren't writing anything that would be worth someone's time to try to steal anyway at the moment. Just write your program, practice and don't worry about people decompiling your code because anything you do can only make it slightly harder for them, not stop them.

I do not take you comment offensively but I am making encryption programs and I am simply exploring methods to ensure no reverse engineering of the encrypted data can happen (or happen with extreme ease)

#5 Eddie7

    Hallo... www.connectw.me

  • 799 posts
  • Joined: 01-December 11
  • Location: Sydney, Australia
  • OS: Windows 7 Ultimate
  • Phone: 1-800-CALL-ME-MAYBE

Posted 20 November 2012 - 15:58

Scramble Java with C++. It's what Facebook does. Take a look at their source and you'll be completely lost! :p

#6 Max Norris

    Neowinian Senior

  • 1,996 posts
  • Joined: 20-February 11
  • Location: Midwestern US
  • OS: Windows 8, 7, FreeBSD
  • Phone: Lumia 900

Posted 20 November 2012 - 15:58

Could look into an obfuscator. Not 100% foolproof(if somebody wants to decompile your code they will, there are no magic bullets for software protection) but certainly makes it a bit tougher.

#7 Glassed Silver

    ☆♡Neowin's portion of Crazy♡☆

  • 10,729 posts
  • Joined: 10-June 04
  • Location: MY CATFORT in Kassel, Germany
  • OS: OS X ML; W7; Elementary; Android 4
  • Phone: iPhone 5 64GB Black (6.0.2)

Posted 20 November 2012 - 16:24

View PostSPEhosting, on 20 November 2012 - 15:54, said:

I do not take you comment offensively but I am making encryption programs and I am simply exploring methods to ensure no reverse engineering of the encrypted data can happen (or happen with extreme ease)
Pure Java doesn't seem like a too great idea for me here.

Glassed Silver:mac

#8 +Asik

  • 6,021 posts
  • Joined: 26-October 05

Posted 20 November 2012 - 17:36

View PostSPEhosting, on 20 November 2012 - 15:54, said:

I do not take you comment offensively but I am making encryption programs and I am simply exploring methods to ensure no reverse engineering of the encrypted data can happen (or happen with extreme ease)
A good encryption method is hard to break even if the attacker knows exactly how it works. Obfuscating your source code will NOT improve the strength of the encryption it performs. Everyone knows how AES works, for instance, yet no one can break it. The program TrueCrypt is open-source yet it is widely used to secure sensitive data and is considered secure.

Security comes not from obfuscation of algorithms but from the time it would take an attacker to break the encryption.

#9 Lant

    Neowinian Senior

  • 1,532 posts
  • Joined: 13-April 06
  • Location: North London, UK

Posted 20 November 2012 - 17:42

View PostDr_Asik, on 20 November 2012 - 17:36, said:

A good encryption method is hard to break even if the attacker knows exactly how it works. Obfuscating your source code will NOT improve the strength of the encryption it performs. Everyone knows how AES works, for instance, yet no one can break it. The program TrueCrypt is open-source yet it is widely used to secure sensitive data and is considered secure.

Exactly, encryption should be provably difficult to calculate the reverse of some function. Don't rely on security through obscurity, use logic and proofs!

#10 n_K

    Neowinian Wise One

  • 4,251 posts
  • Joined: 19-March 06
  • Location: here.
  • OS: FreeDOS
  • Phone: Nokia 3315

Posted 20 November 2012 - 17:47

There is no such thing.
You can make it harder yes, if you want to completely stop people from knowing how your program works well then the best and only way I can see to do that is release your program in a non-working state.
If a computer can read and execute it, so can a human (with some effort/tools/hassle)

#11 +theblazingangel

    AutoPatcher Veteran

  • 3,176 posts
  • Joined: 25-March 04
  • Location: England, UK

Posted 21 November 2012 - 01:59

View PostSPEhosting, on 20 November 2012 - 15:54, said:

I do not take you comment offensively but I am making encryption programs and I am simply exploring methods to ensure no reverse engineering of the encrypted data can happen (or happen with extreme ease)

View PostDr_Asik, on 20 November 2012 - 17:36, said:

A good encryption method is hard to break even if the attacker knows exactly how it works. Obfuscating your source code will NOT improve the strength of the encryption it performs. Everyone knows how AES works, for instance, yet no one can break it. The program TrueCrypt is open-source yet it is widely used to secure sensitive data and is considered secure.

Security comes not from obfuscation of algorithms but from the time it would take an attacker to break the encryption.
This!

OP, forget it, code obfuscation is not about protecting data, it's about making it harder for other programmers to copy your code. As Asik said above, just simply encrypt your data, and for f-sake don't create your own encryption algorithm, use something standard.

This thread is pointless, lets return conversation to your other thread or make a new one on the lines of 'help me design a secure chat client'.

#12 thatguyandrew1992

    Neowinian Senior

  • 2,082 posts
  • Joined: 22-January 09

Posted 21 November 2012 - 06:31

This thread is useful because I was wondering the same thing!