Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zoff99/pwstore
simple password mananger for unix scripts
https://github.com/zoff99/pwstore
c password-manager unix
Last synced: about 1 month ago
JSON representation
simple password mananger for unix scripts
- Host: GitHub
- URL: https://github.com/zoff99/pwstore
- Owner: zoff99
- License: gpl-2.0
- Created: 2017-04-14T08:58:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T05:42:59.000Z (3 months ago)
- Last Synced: 2024-10-24T23:49:36.471Z (3 months ago)
- Topics: c, password-manager, unix
- Language: C
- Homepage:
- Size: 58.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pwstore
simple password mananger for unix scripts
works on Solaris, AIX and Linux
tested on Solaris and Linux## compile on Linux
```
gcc -O3 pwstore.c -D LINUX -o pwstore
```## usage
```
/opt/pwstore/bin/pwstore list # list all readable by current user on current system
/opt/pwstore/bin/pwstore add key1 key2 # add password for for current user on current system
/opt/pwstore/bin/pwstore read key1 key2 # output password for for current user on current system
```## install (via sudo)
```
sudo mkdir -p /opt/pwstore
sudo chmod a+rx /opt/pwstore
sudo chmod u+rwx /opt/pwstore
sudo chmod og-w /opt/pwstoresudo mkdir -p /opt/pwstore/bin
sudo chmod u+rwx /opt/pwstore/bin
sudo chmod og-rw /opt/pwstore/bin
sudo chmod og+x /opt/pwstore/binsudo mkdir -p /opt/pwstore/conf
sudo chmod u+rwx /opt/pwstore/conf
sudo chmod og-rwx /opt/pwstore/confsudo cp -av pwstore /opt/pwstore/bin/pwstore
sudo chown root:root /opt/pwstore/bin/pwstore
sudo chmod og-rw /opt/pwstore/bin/pwstore
sudo chmod og+x /opt/pwstore/bin/pwstore
sudo chmod u+rwx /opt/pwstore/bin/pwstore
sudo chmod u+s /opt/pwstore/bin/pwstore
```
Any use of this project's code by GitHub Copilot, past or present, is done
without our permission. We do not consent to GitHub's use of this project's
code in Copilot.
No part of this work may be used or reproduced in any manner for the purpose of training artificial intelligence technologies or systems.