Results 1 to 8 of 8

Thread: [RESOLVED] how to encrypt a url inside my exe (please help)

  1. #1

    Thread Starter
    Lively Member Nerd-Man's Avatar
    Join Date
    Dec 2006
    Location
    India
    Posts
    119

    Resolved [RESOLVED] how to encrypt a url inside my exe (please help)

    i am trying to make a software protection that will be activated from the server. i am using Inet control to test the system and its working fine. but now i notice that there is a big problem. when i compile and make the EXE file, then the link is visible in any hex editor which can be redirect from there. so i need to add some kind of encryption so that when someone open the program in any programs editor, then they dont see any link inside.

    actually i have no knowledge in encryption, so i dont know what how i will make the url not visible inside my exe. so please help me.
    Forgive me if I make mistakes because you know I wear really thick glass and I cannot see things well.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: how to encrypt a url inside my exe (please help)

    Have a look at this thread.

  3. #3
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: how to encrypt a url inside my exe (please help)

    Simply build the string, instead of having it sit as a single constant.

    Code:
    strURL = Chr$(65)
    'other code
    strURL = strURL & "b"
    'other code
    'etc.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  4. #4

    Thread Starter
    Lively Member Nerd-Man's Avatar
    Join Date
    Dec 2006
    Location
    India
    Posts
    119

    Resolved Re: how to encrypt a url inside my exe (please help)

    that is really a nice idea of using Chr$(65) and make a complete link..... thanks for your help. i will try the codes now....
    Forgive me if I make mistakes because you know I wear really thick glass and I cannot see things well.

  5. #5

    Thread Starter
    Lively Member Nerd-Man's Avatar
    Join Date
    Dec 2006
    Location
    India
    Posts
    119

    Re: [RESOLVED] how to encrypt a url inside my exe (please help)

    but one last question how can i code the link. i mean below is my code...

    Code:
    StrPage = Inet1.OpenURL("http://www.server.com/Authentication.html")
    so now the new codes should be below?

    Code:
    StrPage = Inet1.OpenURL (Chr$(65)+  Chr$(51)+ Chr$(42)+ Chr$(45)+ Chr$(63))
    Forgive me if I make mistakes because you know I wear really thick glass and I cannot see things well.

  6. #6
    Frenzied Member
    Join Date
    Sep 2006
    Location
    Scotland
    Posts
    1,054

    Re: [RESOLVED] how to encrypt a url inside my exe (please help)

    I think what it should be is this:

    Code:
    StrPage = Inet1.OpenURL(Chr(104) & Chr(116) & Chr(116) & Chr(112) & Chr(58) & Chr(47) & Chr(47) & Chr(119) & Chr(119) & Chr(119) & Chr(46) & Chr(115) & Chr(101) & Chr(114) & Chr(118) & Chr(101) & Chr(114) & Chr(46) & Chr(99) & Chr(111) & Chr(109) & Chr(47) & Chr(65) & Chr(117) & Chr(116) & Chr(104) & Chr(101) & Chr(110) & Chr(116) & Chr(105) & Chr(99) & Chr(97) & Chr(116) & Chr(105) & Chr(111) & Chr(110) & Chr(46) & Chr(104) & Chr(116) & Chr(109) & Chr(108))

  7. #7

    Thread Starter
    Lively Member Nerd-Man's Avatar
    Join Date
    Dec 2006
    Location
    India
    Posts
    119

    Re: [RESOLVED] how to encrypt a url inside my exe (please help)

    problem is solved and working fine now. now its not possible to see or modify the link inside the exe. thank you very much everyone for helping me. i must say that this forum has always been a big help to me. thank you all once again....
    Forgive me if I make mistakes because you know I wear really thick glass and I cannot see things well.

  8. #8
    Hyperactive Member
    Join Date
    Aug 2006
    Posts
    367

    Re: [RESOLVED] how to encrypt a url inside my exe (please help)

    Its not secure, just secure against the masses.. Anybody who decides to figure it out will be able to..
    I don't know whether you're sitting with a false sense of security, or if you understand that its 100% impossible to make it totally secure

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width