File | Date | Author | Commit |
---|---|---|---|
css | 2024-05-02 |
![]() |
[382780] first commit |
fonts | 2024-05-02 |
![]() |
[382780] first commit |
fortune | 2024-05-02 |
![]() |
[382780] first commit |
img | 2024-05-05 |
![]() |
[c1131d] rename |
js | 2024-05-02 |
![]() |
[382780] first commit |
403.php | 2025-04-28 |
![]() |
[eed612] Fixed Forms not scrolling on Apple |
404.php | 2024-05-02 |
![]() |
[382780] first commit |
LICENSE.txt | 2024-05-02 |
![]() |
[382780] first commit |
README.md | 2025-04-28 |
![]() |
[eed612] Fixed Forms not scrolling on Apple |
index.php | 2025-04-28 |
![]() |
[eed612] Fixed Forms not scrolling on Apple |
New on GitHub since: 1st of May 2024
PHP Password Manager with 100% Custom Fields and a built-in SQLite Database (author: Ron de Jong)
TinyPass Secrets have unlimited Custom Fields, supports mobiles and has many other fun features.
Traditional Password Managers work with Fixed Fields that often causes unused and missing fields.
Installing TinyPass is also easy, no database server required or manual paths / URLs to specify.
TinyPass simply stores a single database file "tinypass.db" making backups & restores also easy.
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 (CC BY-NC-ND 4.0 LEGAL CODE)
Login | Show Secrets |
---|---|
![]() |
![]() |
View Secret | Edit Secret |
---|---|
![]() |
![]() |
Login | Show Secrets | Show Secrets Menu |
---|---|---|
![]() |
![]() |
![]() |
View Secret | Edit Secret |
---|---|
![]() |
![]() |
PHP extensions:
standard
sudo -u www-data mkdir -v "/var/www/html/tinypass";
or create dir automatically to a subdir of your real DocumentRoot as the user running Apache2
sudo -u "$(apachectl -S | grep "User" | awk -F"\"" '{ print $2 }')" mkdir -v "$(sudo apachectl -S | grep "DocumentRoot" | awk -F"\"" '{ print $2 }')tinypass";
sudo -u www-data git clone https://github.com/ron-from-nl/TinyPass.git "/var/www/html/tinypass";
or copy automatically to a subdir of your real DocumentRoot as the user running Apache2
sudo -u "$(apachectl -S | grep "User" | awk -F"\"" '{ print $2 }')" git clone https://github.com/ron-from-nl/TinyPass.git "$(sudo apachectl -S | grep "DocumentRoot" | awk -F"\"" '{ print $2 }')tinypass";
sudo nano /etc/apache2/sites-available/000-default.conf
Add the following example section (edit alias and directory)
RewriteRule ^/tinypass$ /tinypass/ [R,L]
Alias /tinypass/ /var/www/html/tinypass/
<Directory /var/www/html/tinypass>
Options MultiViews SymLinksIfOwnerMatch
<Files tinypass.db>
Require all denied
</Files>
AllowOverride All
Require all granted
</Directory>
sudo apachectl configtest;
sudo systemctl reload apache2;
sudo systemctl status apache2;