I have a PHP app that needs to run bash scripts, and provide a username & password (for remote systems). I need to store these credentials somewhere that is accessible by my PHP (web) app. The logical place is the database (currently MySQL, but will be agnostic). The problem with the "standard" way of hashing and storing the credentials, is that it is not reversible. I have to be able to get the credentials out as unencrypted clear text, to be able to insert the data into bash scripts.
Herkes bu konuda gitmek için güvenli bir yol için herhangi bir öneriniz var mı?
Ben belki kimlik PKI'ing, ve DB sonucu depolamak düşündüm. Sonra unencrypt için özel anahtarı (PHP yapabilirsiniz) kullanın. Web kök dışında bunu yapmak için komut dosyalarını saklayın.
Herhangi bir düşünce çok takdir.