in reply to Question of safe data passing...

Non-responsive answer: (but I agree w/ frankus -- this is waaaay too much work) take a peek at Hiding DBI Passwords?

Replies are listed 'Best First'.
Re: Re: Question of safe data passing...
by suaveant (Parson) on Apr 27, 2001 at 17:28 UTC
    I read hiding DBI passwords... it hides them, but nothing protects the virtual user from being used by other people (I know, I asked the author)... so you still get the scripts access to the DB... anyway, it is not too much work because I want to make a generic tool people can use... its not just a one time shot. It can also be used for other data, not just DBI passwords...
                    - Ant

      Okay write a request server as a daemon that the scripts can ask for stuff from. If you want to make it bafflingly encrypted. Store the data as encrypted and use several salts. Store the data in the server in encrypted form and transmit it encrypted.

      After you've done this compile the perl code for the server and delete the history files, burn your notes..... kill the sys admins for your site1

      1. This isn't totally necessary, but if your gonna be thorough ;^)

      --
      
      Brother Frankus.
        Ok.. tell me how I can call it securely? Same problem, if it has a password, it is visible in perl script, and other people can write something to access the request daemon.
                        - Ant
      In that case would it not be use-full to use a tunnel to protect your data. Something like the C script you talked about opens an SSH tunnel to the localhost and throws the data in there, with perl script waiting on the other side waiting to munge... ??? 8-& Sinister greetings.
        That sounds like more work than what I am planning... and harder for general users to set up... and I'm not even sure it is more secure... or more robust.
                        - Ant