-
When I use a password in termux:
I'd like to learn how to make sure the password string is deleted from RAM and termux memory so that it will not be possible to be accidentally used by another app scanning memory. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Sorry, but I can't understand how password management is related to Termux application itself. Termux app is just a terminal emulator. It is only a convenient interface for working with shell. As Termux developers team we develop only Termux app and few helper utilities. We do not develop bash, coreutils, git, openssh and the most of other packages that you can install. This means password handling is in complete responsibility of third parties who developed such software. If you have concerns about security of specific package, visit its home page (can be seen by I would not go into details (other wise it worth for long article), but it is not possible for Termux to wipe passwords from memory of other programs. Now what you can do:
If your device has an app scanning memory, then you have much more things to worry about: the device is fundamentally compromised. It is actually hard to distinguish password from other data of process memory. Much effective just to collect what you are typing on keyboard. P.S. Passwords and other data should gone from memory once the process terminates. No need for manual cleanup. |
Beta Was this translation helpful? Give feedback.
Sorry, but I can't understand how password management is related to Termux application itself. Termux app is just a terminal emulator. It is only a convenient interface for working with shell.
As Termux developers team we develop only Termux app and few helper utilities. We do not develop bash, coreutils, git, openssh and the most of other packages that you can install. This means password handling is in complete responsibility of third parties who developed such software. If you have concerns about security of specific package, visit its home page (can be seen by
apt show <your-package-name>
) and try to contact the author.I would not go into details (other wise it worth for long article…