mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-04 08:07:15 -04:00
Compare commits
24
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
330fa5f89e | ||
|
|
11550f114e | ||
|
|
e8412405e6 | ||
|
|
0340848447 | ||
|
|
1bdef1382f | ||
|
|
e9bbc48c14 | ||
|
|
6be6d75000 | ||
|
|
254aca0839 | ||
|
|
3da92ff20b | ||
|
|
ca0cf57ffe | ||
|
|
72f36c5046 | ||
|
|
c253c5e2b7 | ||
|
|
5c457e4ec0 | ||
|
|
f06684798d | ||
|
|
04dbd0624f | ||
|
|
9e2aa21ab2 | ||
|
|
865841f1cd | ||
|
|
98b6d40c19 | ||
|
|
ae6726bb3c | ||
|
|
5a78902700 | ||
|
|
ab815a1b77 | ||
|
|
4c625bb978 | ||
|
|
9f824ab72d | ||
|
|
61026d0c28 |
@@ -1,15 +0,0 @@
|
|||||||
pkgbase = rpass
|
|
||||||
pkgdesc = An rsync-based password manager and alternative to GNU pass
|
|
||||||
pkgver = 2021.09.07.pr3.1
|
|
||||||
pkgrel = 1
|
|
||||||
arch = x86_64
|
|
||||||
arch = aarch64
|
|
||||||
license = GPL3
|
|
||||||
depends = python
|
|
||||||
depends = gnupg
|
|
||||||
depends = openssh
|
|
||||||
depends = rsync
|
|
||||||
source = https://cloud.watergateserver.xyz/api/public/dl/6b0Wqz-J
|
|
||||||
sha512sums = f59cd1cd3c981b9424fba85bfd5e7b33e26a482d48b9b47a77be6f8e7cecbf078ec956a46b37db488d5173cd0a439f572ff06fc7d35cc3e9b0a7666e49cadeee
|
|
||||||
|
|
||||||
pkgname = rpass
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
# Maintainer: Randall Winkhart (Cuan) <idgr at tutanota dot com>
|
|
||||||
|
|
||||||
pkgname=rpass
|
|
||||||
pkgver=2021.09.07.pr3.1
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="An rsync-based password manager and alternative to GNU pass"
|
|
||||||
arch=('x86_64' 'aarch64')
|
|
||||||
license=('GPL3')
|
|
||||||
depends=( python gnupg openssh rsync )
|
|
||||||
|
|
||||||
source=('https://cloud.watergateserver.xyz/api/public/dl/6b0Wqz-J')
|
|
||||||
sha512sums=('f59cd1cd3c981b9424fba85bfd5e7b33e26a482d48b9b47a77be6f8e7cecbf078ec956a46b37db488d5173cd0a439f572ff06fc7d35cc3e9b0a7666e49cadeee')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
|
|
||||||
mv 6b0Wqz-J rpass-2021.09.07.pr3.1.tar.xz
|
|
||||||
tar xf rpass-2021.09.07.pr3.1.tar.xz -C "${pkgdir}"
|
|
||||||
chown -R "$USER" ${pkgdir}/var/lib/rpass
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,14 +1,52 @@
|
|||||||
# rpass
|
# rpass
|
||||||
A password manager with rsync integration - alternative to GNU pass
|
A very simple password manager with rsync integration - alternative to GNU pass
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Arch Linux (x86_64, aarch64)
|
Arch Linux (x86_64, aarch64)
|
||||||
|
|
||||||
rpass is available in the Arch User Repository as 'rpass'.
|
rpass releases are available in the Arch User Repository as 'rpass'.
|
||||||
|
|
||||||
Install with your preferred AUR helper or use:
|
Install with your preferred AUR helper or use:
|
||||||
|
|
||||||
git clone https://aur.archlinux.org/rpass.git
|
```
|
||||||
|
git clone https://aur.archlinux.org/rpass.git
|
||||||
cd rpass
|
cd rpass
|
||||||
makepkg -si
|
makepkg -si
|
||||||
|
```
|
||||||
|
|
||||||
|
Packaging for other distributions coming soon.
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
Upon initial installation, be sure to run:
|
||||||
|
|
||||||
|
```
|
||||||
|
rpass config
|
||||||
|
```
|
||||||
|
|
||||||
|
This command will allow you to configure the settings necessary for rpass to function.
|
||||||
|
|
||||||
|
All available options can be found with:
|
||||||
|
|
||||||
|
```
|
||||||
|
rpass --help
|
||||||
|
```
|
||||||
|
|
||||||
|
# Roadmap
|
||||||
|
Short-term Goals:
|
||||||
|
|
||||||
|
- create new file list w/color and w/o file extensions
|
||||||
|
- create a man page
|
||||||
|
- allow for multi-line notes
|
||||||
|
- overhaul argument system
|
||||||
|
- fix lots of bugs!
|
||||||
|
|
||||||
|
Medium-term Goals:
|
||||||
|
|
||||||
|
- add libsecret integration to allow rpass to act as a gnome-keyring alternative
|
||||||
|
- create a minimal GUI app optimized for the Pinephone (also compatible with x86_64)
|
||||||
|
|
||||||
|
Long-term Goals:
|
||||||
|
|
||||||
|
- make an Android port (including GUI)
|
||||||
|
- make a minimal Windows port
|
||||||
|
- investigate auto-completion on tab
|
||||||
|
|||||||
@@ -0,0 +1,810 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
# internal modules
|
||||||
|
|
||||||
|
from os import system
|
||||||
|
from os import remove
|
||||||
|
from os import environ
|
||||||
|
from shutil import move
|
||||||
|
from shutil import rmtree
|
||||||
|
from sys import argv
|
||||||
|
import random
|
||||||
|
import string
|
||||||
|
|
||||||
|
# custom modules
|
||||||
|
|
||||||
|
|
||||||
|
def clear():
|
||||||
|
print('\n' * 100)
|
||||||
|
|
||||||
|
|
||||||
|
def term(cmd):
|
||||||
|
_ = system(cmd)
|
||||||
|
|
||||||
|
|
||||||
|
def replace_line(file_name, line_num, text):
|
||||||
|
lines = open(file_name, 'r').readlines()
|
||||||
|
lines[line_num] = text
|
||||||
|
out = open(file_name, 'w')
|
||||||
|
out.writelines(lines)
|
||||||
|
out.close()
|
||||||
|
|
||||||
|
|
||||||
|
def shmgen():
|
||||||
|
shmfoldergen = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
||||||
|
for _ in range(random.randint(10, 30)))
|
||||||
|
shmentrygen = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
||||||
|
for _ in range(random.randint(10, 30)))
|
||||||
|
term('mkdir -p /dev/shm/' + shmfoldergen)
|
||||||
|
return shmfoldergen, shmentrygen
|
||||||
|
|
||||||
|
|
||||||
|
def encrypt():
|
||||||
|
term('gpg -r ' + str(gpgid) + ' -e ' + "'" + '/dev/shm/' + shmfolder + '/' + shmentry + "'")
|
||||||
|
move('/dev/shm/' + shmfolder + '/' + shmentry + '.gpg', directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
|
||||||
|
|
||||||
|
def encryptfolder():
|
||||||
|
term('gpg -r ' + str(gpgid) + ' -e ' + "'" + '/dev/shm/' + shmfolder + '/' + shmentry + "'")
|
||||||
|
move('/dev/shm/' + shmfolder + '/' + shmentry + '.gpg', directory + folder + '/' + folderentry + '.gpg')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
|
||||||
|
|
||||||
|
# argument - filter the argument to usable text
|
||||||
|
|
||||||
|
argument = str(argv).replace('[', '', 1).replace(']', '', 1).replace(',', '').replace("'", '') \
|
||||||
|
.replace(' ', '', 1).replace('/usr/bin/', '', 1).replace('rpass', '', 1)
|
||||||
|
|
||||||
|
# help
|
||||||
|
|
||||||
|
if argument == 'help' or argument == '--help' or argument == '-h':
|
||||||
|
print('\nrpass Copyright (C) 2021 Randall Winkhart')
|
||||||
|
print("This program comes with ABSOLUTELY NO WARRANTY; for details type `rpass show w'.\nThis is free software, "
|
||||||
|
"and you are welcome to redistribute it under certain conditions; type `rpass show c' for details.")
|
||||||
|
print('\nUSAGE: rpass [/<entry name>] [OPTION] [FLAG]\n')
|
||||||
|
print('Options: ')
|
||||||
|
print('help/--help/-h bring up this menu')
|
||||||
|
print('version/-v display rpass version info')
|
||||||
|
print('config configure rpass')
|
||||||
|
print('add add an entry')
|
||||||
|
print('gen generate a new password')
|
||||||
|
print('edit edit an existing entry')
|
||||||
|
print('copy copy details of an entry to your clipboard')
|
||||||
|
print('remove/-rm delete an existing entry')
|
||||||
|
print('sync/-s manually sync the entry directory via rsync\n')
|
||||||
|
print('Flags:')
|
||||||
|
print('add:')
|
||||||
|
print(' password/-p add a password entry')
|
||||||
|
print(' note/-n add a note entry')
|
||||||
|
print(' folder/-f add a new folder for entries')
|
||||||
|
print('edit:')
|
||||||
|
print(' rename/relocate/-r rename or relocate an entry')
|
||||||
|
print(' username/-u change the username of an entry')
|
||||||
|
print(' password/-p change the password of an entry')
|
||||||
|
print(' note/-n change the note attached to an entry')
|
||||||
|
print(' url/-l change the url attached to an entry')
|
||||||
|
print('copy:')
|
||||||
|
print(' username/-u copy the username of an entry to your clipboard')
|
||||||
|
print(' password/-p copy the password of an entry to your clipboard')
|
||||||
|
print(' url/-l copy the URL of an entry to your clipboard')
|
||||||
|
print(' note/-n copy the note of an entry to your clipboard')
|
||||||
|
print('gen:')
|
||||||
|
print(' update/-u generate a password for an existing entry\n')
|
||||||
|
print("Tip: You can quickly read an entry with 'rpass /<entry name>'!")
|
||||||
|
print("When specifying entry names, do not include the file extension! '.gpg' is assumed!\n")
|
||||||
|
|
||||||
|
# version info
|
||||||
|
|
||||||
|
if argument == 'version' or argument == '-v':
|
||||||
|
print('\n////////////////////////////////////////////////////////')
|
||||||
|
print('/ /')
|
||||||
|
print('/ rpass Copyright (C) 2021 Randall Winkhart /')
|
||||||
|
print('/ /')
|
||||||
|
print('/ Version 2021.09.15.pr4 /')
|
||||||
|
print('/ The Housekeeping Update (Pt. 1) /')
|
||||||
|
print('/ /')
|
||||||
|
print('////////////////////////////////////////////////////////\n')
|
||||||
|
|
||||||
|
# licensing info
|
||||||
|
|
||||||
|
if argument == 'show w':
|
||||||
|
clear()
|
||||||
|
print('This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;')
|
||||||
|
print('without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.')
|
||||||
|
print('See the GNU General Public License for more details.')
|
||||||
|
print('\nhttps://opensource.org/licenses/GPL-3.0\n')
|
||||||
|
|
||||||
|
if argument == 'show c':
|
||||||
|
clear()
|
||||||
|
print('This program is free software: you can redistribute it and/or modify it under the terms of the GNU General')
|
||||||
|
print('Public License as published by the Free Software Foundation, either version 3 of the License,')
|
||||||
|
print('or (at your option) any later version.\n')
|
||||||
|
|
||||||
|
# config
|
||||||
|
|
||||||
|
if argument == 'config':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
directorychoice = str(input('Would you like to use the default entry directory (~/.rpass-store/)? (Y/n) '))
|
||||||
|
if directorychoice == 'n' or directorychoice == 'N':
|
||||||
|
print('\nFormat: /this/path/ends/with/a/slash/\n')
|
||||||
|
directory = str(input('Please input a custom directory: '))
|
||||||
|
with open("/var/lib/rpass/rpass-dir", 'w') as f:
|
||||||
|
f.write(directory + '\n')
|
||||||
|
else:
|
||||||
|
with open("/var/lib/rpass/rpass-dir", 'w') as f:
|
||||||
|
f.write('/home/' + environ.get('USER') + '/.rpass-store/' + '\n')
|
||||||
|
print()
|
||||||
|
devicetype = str(input('Will this be a client, server, or offline device? (C/s/o) '))
|
||||||
|
if devicetype == 's' or devicetype == 'S':
|
||||||
|
with open("/var/lib/rpass/rpass-ssh", 'w') as f:
|
||||||
|
f.write('\n\n\n\n' + devicetype)
|
||||||
|
print('\nMake sure the ssh service is running and properly configured.\n')
|
||||||
|
print('Configuration complete!\n')
|
||||||
|
if devicetype == 'o' or devicetype == 'O' or devicetype == 'c' or devicetype == 'C':
|
||||||
|
print()
|
||||||
|
gpgpresent = str(input(
|
||||||
|
'rpass requires the use of a unique gpg key. Do you already have one you are willing to use? (y/N) '))
|
||||||
|
if gpgpresent == 'y' or gpgpresent == 'Y':
|
||||||
|
print()
|
||||||
|
gpgid = str(input('Please input the ID of your gpg key: '))
|
||||||
|
with open("/var/lib/rpass/rpass-gpg", 'w') as f:
|
||||||
|
f.write(gpgid + '\n')
|
||||||
|
else:
|
||||||
|
print()
|
||||||
|
gpggen = str(
|
||||||
|
input('Would you like to generate one now? Note that if you choose not to do this, you will have '
|
||||||
|
'to re-run "rpass config" to specify a gpg key when you acquire one (Y/n) '))
|
||||||
|
if gpggen == 'n' or gpggen == 'N':
|
||||||
|
exit()
|
||||||
|
else:
|
||||||
|
term('gpg --full-generate-key')
|
||||||
|
print()
|
||||||
|
gpgid = str(input('Please input the ID of your gpg key: '))
|
||||||
|
with open("/var/lib/rpass/rpass-gpg", 'w') as f:
|
||||||
|
f.write(gpgid + '\n')
|
||||||
|
if devicetype == 'o' or devicetype == 'O':
|
||||||
|
with open("/var/lib/rpass/rpass-ssh", 'w') as f:
|
||||||
|
f.write('\n\n\n\n' + devicetype)
|
||||||
|
print('\nConfiguration complete!\n')
|
||||||
|
elif devicetype != 's' and devicetype != 'S':
|
||||||
|
print('\nMake sure the ssh service on the remote server is running and properly configured.\n')
|
||||||
|
sshgen = str(input('rsync support requires a unique ssh key. Would you like to have this '
|
||||||
|
'automatically generated? (Y/n) '))
|
||||||
|
if sshgen != 'n' and sshgen != 'N':
|
||||||
|
term('ssh-keygen -f ~/.ssh/rpass')
|
||||||
|
print('\nExample input: 10.10.10.10:9999\n')
|
||||||
|
ip_port = str(input('What is the IP and ssh port of the remote server? '))
|
||||||
|
print()
|
||||||
|
ip, sep, port = ip_port.partition(':')
|
||||||
|
usernamessh = str(input('What is the username of the remote server? '))
|
||||||
|
print('\nDefault directory: ' + '/home/' + usernamessh + '/.rpass-store/\n')
|
||||||
|
directoryssh = str(input('Is the remote server using the default password directory? (Y/n) '))
|
||||||
|
if directoryssh == 'n' or directoryssh == 'N':
|
||||||
|
print('\nFormat: /this/path/ends/with/a/slash/\n')
|
||||||
|
directoryssh = str(input('What directory is the server using?: '))
|
||||||
|
else:
|
||||||
|
directoryssh = ('/home/' + usernamessh + '/.rpass-store/')
|
||||||
|
with open("/var/lib/rpass/rpass-ssh", 'w') as f:
|
||||||
|
f.write(usernamessh + '\n' + ip + '\n' + port + '\n' + directoryssh + '\n' + devicetype)
|
||||||
|
print('\nConfiguration complete!\n')
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('\n\nConfiguration cancelled.\n')
|
||||||
|
exit()
|
||||||
|
|
||||||
|
|
||||||
|
# startup help
|
||||||
|
|
||||||
|
if argument == '':
|
||||||
|
clear()
|
||||||
|
print("Use 'help', '--help', or '-h' to see a list of commands.\n")
|
||||||
|
print('rpass is currently early software with very little polish\n')
|
||||||
|
|
||||||
|
# import userdata
|
||||||
|
|
||||||
|
try:
|
||||||
|
sshinfo = open("/var/lib/rpass/rpass-ssh").readlines()
|
||||||
|
usernamessh = sshinfo[0].replace('\n', '')
|
||||||
|
ip = (sshinfo[1].replace('\n', ''))
|
||||||
|
port = (sshinfo[2].replace('\n', ''))
|
||||||
|
directoryssh = (sshinfo[3].replace('\n', ''))
|
||||||
|
devicetype = (sshinfo[4].replace('\n', ''))
|
||||||
|
except (FileNotFoundError, IndexError):
|
||||||
|
usernamessh, ip, port, directoryssh, devicetype = (0, 0, 0, 0, 0)
|
||||||
|
try:
|
||||||
|
with open("/var/lib/rpass/rpass-gpg") as f:
|
||||||
|
gpgid = f.read().strip()
|
||||||
|
with open("/var/lib/rpass/rpass-dir") as f:
|
||||||
|
directory = f.read().strip()
|
||||||
|
term('mkdir -p ' + directory)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print("Not all necessary configuration files are present. Please run 'rpass config'!")
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# no argument
|
||||||
|
|
||||||
|
if argument == '':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
readentry = str(input('Entry to read: '))
|
||||||
|
clear()
|
||||||
|
term('gpg -d ' + directory + "'" + readentry.replace('/', '', 1) + "'" + '.gpg')
|
||||||
|
print()
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('\n\nSelection cancelled.\n')
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# read shortcut
|
||||||
|
|
||||||
|
if argument.startswith('/'):
|
||||||
|
if argument.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = argument.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d ' + directory + "'" + argument.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
|
||||||
|
# add
|
||||||
|
|
||||||
|
if argument == 'add':
|
||||||
|
print('\nUSAGE: rpass add [FLAG]')
|
||||||
|
print('Flags:')
|
||||||
|
print('add:')
|
||||||
|
print(' password/-p add a password entry')
|
||||||
|
print(' note/-n add a note entry')
|
||||||
|
print(' folder/-f add a new folder for entries\n')
|
||||||
|
|
||||||
|
if argument == 'add note' or argument == 'add -n':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
entryname = str(input('Name of note: '))
|
||||||
|
notes = str(input('Contents of note: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, notes = (0, 0)
|
||||||
|
print('\n\nEntry add cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines('\n\n\n' + notes + '\n\n')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines('\n\n\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines('\n\n\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The folder you requested to access does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'add password' or argument == 'add -p':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
entryname = str(input('Name of service: '))
|
||||||
|
username = str(input('Username: '))
|
||||||
|
password = str(input('Password: '))
|
||||||
|
url = str(input('URL: '))
|
||||||
|
notes = str(input('Additional notes: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, username, password, url, notes = (0, 0, 0, 0, 0)
|
||||||
|
print('\n\nEntry add cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The folder you requested to access does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'add folder' or argument == 'add -f':
|
||||||
|
newfolder = str(input('Name of new folder: '))
|
||||||
|
term('mkdir ' + "'" + directory + newfolder + "'")
|
||||||
|
|
||||||
|
# edit
|
||||||
|
|
||||||
|
if argument == 'edit':
|
||||||
|
print('\nUSAGE: rpass edit [FLAG]')
|
||||||
|
print('Flags:')
|
||||||
|
print('edit:')
|
||||||
|
print(' rename/relocate/-r rename or relocate an entry')
|
||||||
|
print(' username/-u change the username of an entry')
|
||||||
|
print(' password/-p change the password of an entry')
|
||||||
|
print(' url/-l change the url attached to an entry')
|
||||||
|
print(' note/-n change the note attached to an entry\n')
|
||||||
|
|
||||||
|
if argument == 'edit rename' or argument == 'edit relocate' or argument == 'edit -r':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('What file would you like to edit? '))
|
||||||
|
newname = str(input('New Name: '))
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
move(directory + folder + '/' + folderentry + '.gpg', directory + '/' + newname + '.gpg')
|
||||||
|
else:
|
||||||
|
move(directory + entryname.replace('/', '', 1) + '.gpg',
|
||||||
|
directory + newname.replace('/', '', 1) + '.gpg')
|
||||||
|
else:
|
||||||
|
move(directory + entryname + '.gpg', directory + newname + '.gpg')
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('\n\nEdit cancelled.\n')
|
||||||
|
exit()
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'edit username' or argument == 'edit -u':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('What file would you like to edit? '))
|
||||||
|
username = str(input('New Username: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, username = (0, 0)
|
||||||
|
print('\n\nEdit cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
folder + '/' + folderentry + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
||||||
|
remove(directory + folder + '/' + folderentry + '.gpg')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'edit password' or argument == 'edit -p':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('What file would you like to edit? '))
|
||||||
|
password = str(input('New Password: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, password = (0, 0)
|
||||||
|
print('\n\nEdit cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
folder + '/' + folderentry + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
||||||
|
remove(directory + folder + '/' + folderentry + '.gpg')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'edit url' or argument == 'edit -l':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('What file would you like to edit? '))
|
||||||
|
url = str(input('New URL: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, url = (0, 0)
|
||||||
|
print('\n\nEdit cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
folder + '/' + folderentry + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
||||||
|
remove(directory + folder + '/' + folderentry + '.gpg')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'edit note' or argument == 'edit -n':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('What file would you like to edit? '))
|
||||||
|
notes = str(input('New Note: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, notes = (0, 0)
|
||||||
|
print('\n\nEdit cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
folder + '/' + folderentry + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
||||||
|
remove(directory + folder + '/' + folderentry + '.gpg')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# copy
|
||||||
|
|
||||||
|
if argument == 'copy':
|
||||||
|
print('\nUSAGE: rpass copy [FLAG]')
|
||||||
|
print('Flags:')
|
||||||
|
print('copy:')
|
||||||
|
print(' username/-u copy the username of an entry to your clipboard')
|
||||||
|
print(' password/-p copy the password of an entry to your clipboard')
|
||||||
|
print(' url/-l copy the URL of an entry to your clipboard')
|
||||||
|
print(' note/-n copy the note of an entry to your clipboard\n')
|
||||||
|
|
||||||
|
if argument == 'copy username' or argument == 'copy -u':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
readentry = str(input('Entry to copy: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
readentry = 0
|
||||||
|
print('\n\nCopy cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + readentry + '.gpg')
|
||||||
|
copyline = open('/dev/shm/' + shmfolder + '/' + shmentry, 'r').readlines()
|
||||||
|
if environ.get('WAYLAND_DISPLAY') == 'wayland-0':
|
||||||
|
term('wl-copy ' + "'" + copyline[0].replace('\n', '') + "'")
|
||||||
|
else:
|
||||||
|
term('echo -n ' + "'" + copyline[0].replace('\n', '') + "'" + ' | xclip -sel c')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'copy password' or argument == 'copy -p':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
readentry = str(input('Entry to copy: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
readentry = 0
|
||||||
|
print('\n\nCopy cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + readentry + '.gpg')
|
||||||
|
copyline = open('/dev/shm/' + shmfolder + '/' + shmentry, 'r').readlines()
|
||||||
|
if environ.get('WAYLAND_DISPLAY') == 'wayland-0':
|
||||||
|
term('wl-copy ' + "'" + copyline[1].replace('\n', '') + "'")
|
||||||
|
else:
|
||||||
|
term('echo -n ' + "'" + copyline[1].replace('\n', '') + "'" + ' | xclip -sel c')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'copy url' or argument == 'copy -l':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
readentry = str(input('Entry to copy: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
readentry = 0
|
||||||
|
print('\n\nCopy cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + readentry + '.gpg')
|
||||||
|
copyline = open('/dev/shm/' + shmfolder + '/' + shmentry, 'r').readlines()
|
||||||
|
if environ.get('WAYLAND_DISPLAY') == 'wayland-0':
|
||||||
|
term('wl-copy ' + "'" + copyline[2].replace('\n', '') + "'")
|
||||||
|
else:
|
||||||
|
term('echo -n ' + "'" + copyline[2].replace('\n', '') + "'" + ' | xclip -sel c')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'copy note' or argument == 'copy -n':
|
||||||
|
try:
|
||||||
|
print()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
readentry = str(input('Entry to copy: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
readentry = 0
|
||||||
|
print('\n\nCopy cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + readentry + '.gpg')
|
||||||
|
copyline = open('/dev/shm/' + shmfolder + '/' + shmentry, 'r').readlines()
|
||||||
|
if environ.get('WAYLAND_DISPLAY') == 'wayland-0':
|
||||||
|
term('wl-copy ' + "'" + copyline[3].replace('\n', '') + "'")
|
||||||
|
else:
|
||||||
|
term('echo -n ' + "'" + copyline[3].replace('\n', '') + "'" + ' | xclip -sel c')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# gen
|
||||||
|
|
||||||
|
if argument == 'gen':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
entryname = str(input('Name of service: '))
|
||||||
|
username = str(input('Username: '))
|
||||||
|
passlength = int(input('How many characters should be in the password? '))
|
||||||
|
passtype = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) '))
|
||||||
|
if passtype != 's':
|
||||||
|
passtype = string.ascii_letters + string.digits + string.punctuation
|
||||||
|
if passtype == 's':
|
||||||
|
passtype = string.ascii_letters + string.digits
|
||||||
|
passgen = ''.join(random.SystemRandom().choice(passtype) for _ in range(passlength))
|
||||||
|
url = str(input('URL: '))
|
||||||
|
notes = str(input('Additional notes: '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, username, passgen, url, notes = (0, 0, 0, 0, 0)
|
||||||
|
print('\n\nEntry generation cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
||||||
|
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The folder you requested to access does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument == 'gen update' or argument == 'gen -u':
|
||||||
|
try:
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
entryname = str(input('Which password would you like to re-generate? '))
|
||||||
|
passlength = int(input('How many characters should be in the password? '))
|
||||||
|
passtype = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) '))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
entryname, passlength, passtype = (0, 0, 0)
|
||||||
|
print('\n\nEntry generation cancelled.\n')
|
||||||
|
exit()
|
||||||
|
shmfolder, shmentry = shmgen()
|
||||||
|
try:
|
||||||
|
if passtype != 's':
|
||||||
|
passtype = string.ascii_letters + string.digits + string.punctuation
|
||||||
|
if passtype == 's':
|
||||||
|
passtype = string.ascii_letters + string.digits
|
||||||
|
passgen = ''.join(random.SystemRandom().choice(passtype) for _ in range(passlength))
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
folder + '/' + folderentry + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
||||||
|
remove(directory + folder + '/' + folderentry.replace('/', '', 1) + '.gpg')
|
||||||
|
encryptfolder()
|
||||||
|
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
||||||
|
else:
|
||||||
|
term('gpg -d --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
||||||
|
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
encrypt()
|
||||||
|
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to edit does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
rmtree('/dev/shm/' + shmfolder)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# remove
|
||||||
|
|
||||||
|
if argument == 'remove' or argument == '-rm':
|
||||||
|
clear()
|
||||||
|
term('cd ' + directory + '; ls -1 *')
|
||||||
|
print()
|
||||||
|
try:
|
||||||
|
entryname = str(input('What would you like to delete? '))
|
||||||
|
if entryname.startswith('/'):
|
||||||
|
if entryname.replace('/', '', 1).__contains__('/'):
|
||||||
|
if devicetype == 'c' or devicetype == 'C':
|
||||||
|
term('ssh -p ' + port + '' + usernamessh + '@' + ip + ' rm -rf ' + "'" + directoryssh + "'" +
|
||||||
|
entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
||||||
|
else:
|
||||||
|
if devicetype == 'c' or devicetype == 'C':
|
||||||
|
term('ssh -p ' + port + '' + usernamessh + '@' + ip + ' rm -rf ' + "'" + directoryssh + "'" +
|
||||||
|
entryname.replace('/', '', 1))
|
||||||
|
rmtree(directory + entryname.replace('/', '', 1))
|
||||||
|
else:
|
||||||
|
if devicetype == 'c' or devicetype == 'C':
|
||||||
|
term('ssh -p ' + port + ' ' + usernamessh + '@' + ip + ' rm -rf ' + "'" + directoryssh + "'" +
|
||||||
|
entryname + '.gpg')
|
||||||
|
remove(directory + entryname + '.gpg')
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('\n\nDeletion cancelled.\n')
|
||||||
|
exit()
|
||||||
|
except FileNotFoundError:
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print('The file you requested to delete does not exist!')
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if argument.__contains__('add') or argument.__contains__('-rm') or argument.__contains__('remove') or argument.\
|
||||||
|
__contains__('edit') or argument.__contains__('gen') or argument.__contains__('version') or argument.\
|
||||||
|
__contains__('-v') or argument.__contains__('config') or argument.__contains__('copy') or argument.\
|
||||||
|
__contains__('show') or argument.__contains__('/') or argument == 'sync' or argument == '-s' or argument == '' \
|
||||||
|
or argument == 'help' or argument == '--help' or argument == '-h':
|
||||||
|
null = 'null'
|
||||||
|
else:
|
||||||
|
print('\n!!!!!!!!!!!!!!!')
|
||||||
|
print('Argument error!')
|
||||||
|
print('!!!!!!!!!!!!!!!')
|
||||||
|
print("\nUse 'help', '--help', or '-h' to see a list of commands.\n")
|
||||||
|
|
||||||
|
# permissions - applied pre-sync to ensure permissions are correct before upload
|
||||||
|
|
||||||
|
term('find ' + directory + ' -type d -exec chmod -R 700 {} +')
|
||||||
|
term('find ' + directory + ' -type f -exec chmod -R 600 {} +')
|
||||||
|
|
||||||
|
# rsync - ran at end of program to ensure all files are properly synced
|
||||||
|
if devicetype == 'c' or devicetype == 'C':
|
||||||
|
if argument.__contains__('add') or argument.__contains__('-rm') or argument.__contains__('remove') or argument. \
|
||||||
|
__contains__('edit') or argument.__contains__('gen') or argument == 'sync' or argument == '-s':
|
||||||
|
print('Syncing entries with other device(s)...\n')
|
||||||
|
term('rsync -v -H -r -l -t -p -e ' + '"ssh -i ~/.ssh/rpass -p ' + port + '" ' + directory + ' ' + usernamessh
|
||||||
|
+ '@' + ip + ':' + directoryssh)
|
||||||
|
term('rsync -v -H -r -l -t -p --delete -e ' + '"ssh -i ~/.ssh/rpass -p ' + port + '" ' + usernamessh
|
||||||
|
+ '@' + ip + ':' + directoryssh + ' ' + directory)
|
||||||
-605
@@ -1,605 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
# rpass 2021.09.07.pr3.1
|
|
||||||
# rpass is the gnu pass alternative for those who don't want to use git
|
|
||||||
# rpass is freely licensed for modification and redistribution under the GNU General Public License V3
|
|
||||||
|
|
||||||
from os import system
|
|
||||||
from os import remove
|
|
||||||
from os import environ
|
|
||||||
from shutil import move
|
|
||||||
from shutil import rmtree
|
|
||||||
from sys import argv
|
|
||||||
import random
|
|
||||||
import string
|
|
||||||
|
|
||||||
|
|
||||||
def clear():
|
|
||||||
print("\n" * 100)
|
|
||||||
|
|
||||||
|
|
||||||
def term(cmd):
|
|
||||||
_ = system(cmd)
|
|
||||||
|
|
||||||
|
|
||||||
def replace_line(file_name, line_num, text):
|
|
||||||
lines = open(file_name, 'r').readlines()
|
|
||||||
lines[line_num] = text
|
|
||||||
out = open(file_name, 'w')
|
|
||||||
out.writelines(lines)
|
|
||||||
out.close()
|
|
||||||
|
|
||||||
|
|
||||||
def encrypt():
|
|
||||||
term('gpg -r ' + str(gpgid) + ' -e ' + "'" + '/dev/shm/' + shmfolder + '/' + shmentry + "'")
|
|
||||||
move('/dev/shm/' + shmfolder + '/' + shmentry + '.gpg', directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
rmtree('/dev/shm/' + shmfolder)
|
|
||||||
|
|
||||||
|
|
||||||
def encryptfolder():
|
|
||||||
term('gpg -r ' + str(gpgid) + ' -e ' + "'" + '/dev/shm/' + shmfolder + '/' + shmentry + "'")
|
|
||||||
move('/dev/shm/' + shmfolder + '/' + shmentry + '.gpg', directory + folder + '/' + folderentry + '.gpg')
|
|
||||||
rmtree('/dev/shm/' + shmfolder)
|
|
||||||
|
|
||||||
|
|
||||||
def rsyncup():
|
|
||||||
term(rsyncupp + ' ' + directory + ' ' + usernamessh + '@' + ip + ':' + directoryssh)
|
|
||||||
|
|
||||||
|
|
||||||
def rsyncdown():
|
|
||||||
term(rsyncdownn + ' ' + usernamessh + '@' + ip + ':' + directoryssh + ' ' + directory)
|
|
||||||
|
|
||||||
|
|
||||||
# argument - filter the argument to usable text - some replacements are only done once to prevent interference
|
|
||||||
|
|
||||||
argument = str(argv).replace('[', '', 1).replace(']', '', 1).replace(',', '').replace("'", '') \
|
|
||||||
.replace(' ', '', 1).replace('/usr/bin/', '', 1).replace('rpass', '', 1)
|
|
||||||
|
|
||||||
# startup help
|
|
||||||
|
|
||||||
if argument == '':
|
|
||||||
clear()
|
|
||||||
print("use 'help', '--help', or '-h' to see a list of commands")
|
|
||||||
print()
|
|
||||||
print('<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>')
|
|
||||||
print("If you are receiving errors, run 'rpass config' and go through the guided setup wizard.")
|
|
||||||
print('This MUST be done before rpass will function!!')
|
|
||||||
print('<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>')
|
|
||||||
print()
|
|
||||||
print('rpass is currently early software with very little polish')
|
|
||||||
print()
|
|
||||||
|
|
||||||
# help
|
|
||||||
|
|
||||||
if argument == 'help' or argument == '--help' or argument == '-h':
|
|
||||||
print()
|
|
||||||
print('rpass Copyright (C) 2021 Randall Winkhart')
|
|
||||||
print("This program comes with ABSOLUTELY NO WARRANTY; for details type `rpass show w'. This is free software, "
|
|
||||||
"and you are welcome to redistribute it under certain conditions; type `rpass show c' for details.")
|
|
||||||
print()
|
|
||||||
print('USAGE: rpass [/<entry name>] [OPTION] [FLAG]')
|
|
||||||
print()
|
|
||||||
print('Options: ')
|
|
||||||
print('help/--help/-h bring up this menu')
|
|
||||||
print('config configure rpass')
|
|
||||||
print('add add an entry')
|
|
||||||
print('gen generate a new password')
|
|
||||||
print('edit edit an existing entry')
|
|
||||||
print('remove/-rm delete an existing entry')
|
|
||||||
print('sync/-s manually sync the entry directory via rsync')
|
|
||||||
print()
|
|
||||||
print('Flags:')
|
|
||||||
print('add:')
|
|
||||||
print(' password/-p add a password entry')
|
|
||||||
print(' note/-n add a note entry')
|
|
||||||
print(' folder/-f add a new folder for entries')
|
|
||||||
print('edit:')
|
|
||||||
print(' rename/relocate/-r rename or relocate an entry')
|
|
||||||
print(' username/-u change the username of an entry')
|
|
||||||
print(' password/-p change the password of an entry')
|
|
||||||
print(' note/-n change the note attached to an entry')
|
|
||||||
print(' url/-l change the url attached to an entry')
|
|
||||||
print('gen:')
|
|
||||||
print(' update/-u generate a password for an existing entry')
|
|
||||||
print()
|
|
||||||
print("Tip: You can quickly read an entry with 'rpass /<entry name>'!")
|
|
||||||
print("When specifying entry names, do not include the file extension! '.gpg' is assumed!")
|
|
||||||
print()
|
|
||||||
|
|
||||||
# licensing info
|
|
||||||
|
|
||||||
if argument == 'show w':
|
|
||||||
clear()
|
|
||||||
print('This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;')
|
|
||||||
print('without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.')
|
|
||||||
print('See the GNU General Public License for more details.')
|
|
||||||
print()
|
|
||||||
print('https://opensource.org/licenses/GPL-3.0')
|
|
||||||
print()
|
|
||||||
|
|
||||||
if argument == 'show c':
|
|
||||||
clear()
|
|
||||||
print('This program is free software: you can redistribute it and/or modify it under the terms of the GNU General')
|
|
||||||
print('Public License as published by the Free Software Foundation, either version 3 of the License,')
|
|
||||||
print('or (at your option) any later version.')
|
|
||||||
print()
|
|
||||||
|
|
||||||
# config
|
|
||||||
|
|
||||||
if argument == 'config':
|
|
||||||
print()
|
|
||||||
directorychoice = str(input('Would you like to use the default entry directory (~/.rpass-store/)? (Y/n) '))
|
|
||||||
if directorychoice != 'n':
|
|
||||||
with open("/var/lib/rpass/rpassdir", 'w') as f:
|
|
||||||
f.write('/home/' + environ.get('USER') + '/.rpass-store/' + '\n')
|
|
||||||
if directorychoice == 'n':
|
|
||||||
print()
|
|
||||||
print('Format: /this/path/ends/with/a/slash/')
|
|
||||||
print()
|
|
||||||
directory = str(input('Please input a custom directory: '))
|
|
||||||
with open("/var/lib/rpass/rpassdir", 'w') as f:
|
|
||||||
f.write(directory + '\n')
|
|
||||||
print()
|
|
||||||
gpgpresent = str(input('rpass requires the use of a unique gpg key. Do you already have one you are willing to '
|
|
||||||
'use? (y/N) '))
|
|
||||||
if gpgpresent == 'y' or gpgpresent == 'Y':
|
|
||||||
print()
|
|
||||||
gpgid = str(input('Please input the ID of your gpg key: '))
|
|
||||||
with open("/var/lib/rpass/rpassgpg", 'w') as f:
|
|
||||||
f.write(gpgid + '\n')
|
|
||||||
if gpgpresent != 'y':
|
|
||||||
print()
|
|
||||||
gpggen = str(input('Would you like to generate one now? Note that if you choose not to do this, you will have '
|
|
||||||
'to re-run "rpass config" to specify a gpg key when you acquire one (Y/n) '))
|
|
||||||
if gpggen != 'n':
|
|
||||||
term('gpg --full-generate-key')
|
|
||||||
print()
|
|
||||||
gpgid = str(input('Please input the ID of your gpg key: '))
|
|
||||||
with open("/var/lib/rpass/rpassgpg", 'w') as f:
|
|
||||||
f.write(gpgid + '\n')
|
|
||||||
if gpggen == 'n' or gpggen == 'N':
|
|
||||||
exit()
|
|
||||||
print()
|
|
||||||
syncsetup = str(input('Would you like to configure rsync over ssh for entry backup and syncing? (Y/n) '))
|
|
||||||
if syncsetup != 'n':
|
|
||||||
print()
|
|
||||||
sshgen = str(input('rsync support requires a unique ssh key. Would you like to have this '
|
|
||||||
'automatically generated? (Y/n) '))
|
|
||||||
if sshgen != 'n':
|
|
||||||
term('ssh-keygen -f ~/.ssh/rpass')
|
|
||||||
print()
|
|
||||||
print('The server device(s) should be configured first.')
|
|
||||||
print()
|
|
||||||
devicetype = str(input('Will this be a client or a server device? (c/S) '))
|
|
||||||
if devicetype != 'c':
|
|
||||||
print()
|
|
||||||
print('Make sure the ssh service is running and that the proper port is forwarded.')
|
|
||||||
if devicetype == 'c':
|
|
||||||
print()
|
|
||||||
print('Make sure the ssh service is running and that the proper port is forwarded on the remote server.')
|
|
||||||
print('Example input: 10.10.10.10:9999')
|
|
||||||
print()
|
|
||||||
ip_port = str(input('What is the IP and ssh port of the remote server? '))
|
|
||||||
print()
|
|
||||||
usernamessh = str(input('What is the username of the remote server? '))
|
|
||||||
ip, sep, port = ip_port.partition(':')
|
|
||||||
with open("/var/lib/rpass/rpassuserssh", 'w') as f:
|
|
||||||
f.write(usernamessh + '\n')
|
|
||||||
with open("/var/lib/rpass/rpassrsyncup", 'w') as f:
|
|
||||||
f.write('rsync -v -H -r -l -t -p -e ' + '"ssh -i ~/.ssh/rpass -p ' + port + '" ' + '\n')
|
|
||||||
with open("/var/lib/rpass/rpassrsyncdown", 'w') as f:
|
|
||||||
f.write('rsync -v -H -r -l -t -p --delete -e ' + '"ssh -i ~/.ssh/rpass -p ' + port + '" ' + '\n')
|
|
||||||
with open("/var/lib/rpass/rpassip", 'w') as f:
|
|
||||||
f.write(ip + '\n')
|
|
||||||
print()
|
|
||||||
print('Default directory: ' + '/home/' + usernamessh + '/.rpass-store/')
|
|
||||||
print()
|
|
||||||
directoryssh = str(input('Is the remote server using the default password directory? (Y/n) '))
|
|
||||||
if directoryssh != 'n':
|
|
||||||
directoryssh = ('/home/' + usernamessh + '/.rpass-store/')
|
|
||||||
if directoryssh == 'n' or directoryssh == 'N':
|
|
||||||
print()
|
|
||||||
print('Format: /this/path/ends/with/a/slash/')
|
|
||||||
print()
|
|
||||||
directoryssh = str(input('What directory is the server using?: '))
|
|
||||||
with open("/var/lib/rpass/rpassdirssh", 'w') as f:
|
|
||||||
f.write(directoryssh + '\n')
|
|
||||||
|
|
||||||
# import userdata
|
|
||||||
|
|
||||||
with open("/var/lib/rpass/rpassgpg") as f:
|
|
||||||
gpgid = f.read().strip()
|
|
||||||
with open("/var/lib/rpass/rpassdir") as f:
|
|
||||||
directory = f.read().strip()
|
|
||||||
term('mkdir -p ' + directory)
|
|
||||||
with open("/var/lib/rpass/rpassdirssh") as f:
|
|
||||||
directoryssh = f.read().strip()
|
|
||||||
with open("/var/lib/rpass/rpassrsyncup") as f:
|
|
||||||
rsyncupp = f.read().strip()
|
|
||||||
with open("/var/lib/rpass/rpassrsyncdown") as f:
|
|
||||||
rsyncdownn = f.read().strip()
|
|
||||||
with open("/var/lib/rpass/rpassip") as f:
|
|
||||||
ip = f.read().strip()
|
|
||||||
with open("/var/lib/rpass/rpassuserssh") as f:
|
|
||||||
usernamessh = f.read().strip()
|
|
||||||
|
|
||||||
if argument == '':
|
|
||||||
print()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
readentry = str(input('Entry to read: '))
|
|
||||||
clear()
|
|
||||||
term('gpg -d ' + directory + "'" + readentry.replace('/', '', 1) + "'" + '.gpg')
|
|
||||||
print()
|
|
||||||
|
|
||||||
# read shortcut
|
|
||||||
|
|
||||||
if argument.startswith('/'):
|
|
||||||
if argument.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = argument.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg -d ' + directory + "'" + argument.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
|
|
||||||
# add
|
|
||||||
|
|
||||||
if argument == 'add':
|
|
||||||
print()
|
|
||||||
print('USAGE: rpass add [FLAG]')
|
|
||||||
print('Flags:')
|
|
||||||
print('add:')
|
|
||||||
print(' password/-p add a password entry')
|
|
||||||
print(' note/-n add a note entry')
|
|
||||||
print(' folder/-f add a new folder for entries')
|
|
||||||
print()
|
|
||||||
|
|
||||||
if argument == 'add note' or argument == 'add -n':
|
|
||||||
clear()
|
|
||||||
entryname = str(input('Name of note: '))
|
|
||||||
notes = str(input('Contents of note: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines('\n\n\n' + notes + '\n\n')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines('\n\n\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines('\n\n\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'add password' or argument == 'add -p':
|
|
||||||
clear()
|
|
||||||
entryname = str(input('Name of service: '))
|
|
||||||
username = str(input('Username: '))
|
|
||||||
password = str(input('Password: '))
|
|
||||||
url = str(input('URL: '))
|
|
||||||
notes = str(input('Additional notes: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + password + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'add folder' or argument == 'add -f':
|
|
||||||
newfolder = str(input('Name of new folder: '))
|
|
||||||
term('mkdir ' + "'" + directory + newfolder + "'")
|
|
||||||
|
|
||||||
# edit
|
|
||||||
|
|
||||||
if argument == 'edit':
|
|
||||||
print()
|
|
||||||
print('USAGE: rpass edit [FLAG]')
|
|
||||||
print('Flags:')
|
|
||||||
print('edit:')
|
|
||||||
print(' rename/relocate/-r rename or relocate an entry')
|
|
||||||
print(' username/-u change the username of an entry')
|
|
||||||
print(' password/-p change the password of an entry')
|
|
||||||
print(' note/-n change the note attached to an entry')
|
|
||||||
print(' url/-l change the url attached to an entry')
|
|
||||||
print()
|
|
||||||
|
|
||||||
if argument == 'edit rename' or argument == 'edit relocate' or argument == 'edit -r':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What file would you like to edit? '))
|
|
||||||
newname = str(input('New Name: '))
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
move(directory + folder + '/' + folderentry + '.gpg', directory + '/' + newname + '.gpg')
|
|
||||||
else:
|
|
||||||
move(directory + entryname.replace('/', '', 1) + '.gpg', directory + newname.replace('/', '', 1) + '.gpg')
|
|
||||||
else:
|
|
||||||
move(directory + entryname + '.gpg', directory + newname + '.gpg')
|
|
||||||
|
|
||||||
if argument == 'edit username' or argument == 'edit -u':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What file would you like to edit? '))
|
|
||||||
username = str(input('New Username: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
folder + '/' + folderentry + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
|
||||||
remove(directory + folder + '/' + folderentry + '.gpg')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 0, username + '\n')
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'edit password' or argument == 'edit -p':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What file would you like to edit? '))
|
|
||||||
password = str(input('New Password: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
folder + '/' + folderentry + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
|
||||||
remove(directory + folder + '/' + folderentry + '.gpg')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, password + '\n')
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'edit url' or argument == 'edit -l':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What file would you like to edit? '))
|
|
||||||
url = str(input('New URL: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
folder + '/' + folderentry + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
|
||||||
remove(directory + folder + '/' + folderentry + '.gpg')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 2, url + '\n')
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'edit note' or argument == 'edit -n':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What file would you like to edit? '))
|
|
||||||
notes = str(input('New Note: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
folder + '/' + folderentry + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
|
||||||
remove(directory + folder + '/' + folderentry + '.gpg')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 3, notes + '\n')
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
# gen
|
|
||||||
|
|
||||||
if argument == 'gen':
|
|
||||||
clear()
|
|
||||||
entryname = str(input('Name of service: '))
|
|
||||||
username = str(input('Username: '))
|
|
||||||
passlength = int(input('How many characters should be in the password? '))
|
|
||||||
passtype = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) '))
|
|
||||||
if passtype != 's':
|
|
||||||
passtype = string.ascii_letters + string.digits + string.punctuation
|
|
||||||
if passtype == 's':
|
|
||||||
passtype = string.ascii_letters + string.digits
|
|
||||||
passgen = ''.join(random.SystemRandom().choice(passtype) for _ in range(passlength))
|
|
||||||
url = str(input('URL: '))
|
|
||||||
notes = str(input('Additional notes: '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
with open('/dev/shm/' + shmfolder + '/' + shmentry, 'w') as f:
|
|
||||||
f.writelines(username + '\n' + passgen + '\n' + url + '\n' + notes + '\n\n')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
if argument == 'gen update' or argument == 'gen -u':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('Which password would you like to re-generate? '))
|
|
||||||
passlength = int(input('How many characters should be in the password? '))
|
|
||||||
passtype = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) '))
|
|
||||||
# generate random strings for /dev/shm
|
|
||||||
shmfolder = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
shmentry = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
term('mkdir -p /dev/shm/' + shmfolder)
|
|
||||||
# end string and folder generation
|
|
||||||
if passtype != 's':
|
|
||||||
passtype = string.ascii_letters + string.digits + string.punctuation
|
|
||||||
if passtype == 's':
|
|
||||||
passtype = string.ascii_letters + string.digits
|
|
||||||
passgen = ''.join(random.SystemRandom().choice(passtype) for _ in range(passlength))
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
folder, sep, folderentry = entryname.replace('/', '', 1).partition('/')
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
folder + '/' + folderentry + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
|
||||||
remove(directory + folder + '/' + folderentry.replace('/', '', 1) + '.gpg')
|
|
||||||
encryptfolder()
|
|
||||||
term('gpg -d ' + directory + folder + '/' + "'" + folderentry + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory +
|
|
||||||
entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname.replace('/', '', 1) + '.gpg' + "'")
|
|
||||||
else:
|
|
||||||
term('gpg --output /dev/shm/' + shmfolder + '/' + shmentry + ' ' + directory + entryname + '.gpg')
|
|
||||||
replace_line('/dev/shm/' + shmfolder + '/' + shmentry, 1, passgen + '\n')
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
encrypt()
|
|
||||||
term('gpg -d ' + directory + "'" + entryname + '.gpg' + "'")
|
|
||||||
|
|
||||||
# remove
|
|
||||||
|
|
||||||
if argument == 'remove' or argument == '-rm':
|
|
||||||
clear()
|
|
||||||
term('cd ~/.rpass-store; ls -1 *')
|
|
||||||
print()
|
|
||||||
entryname = str(input('What would you like to delete? '))
|
|
||||||
if entryname.startswith('/'):
|
|
||||||
if entryname.replace('/', '', 1).__contains__('/'):
|
|
||||||
remove(directory + entryname.replace('/', '', 1) + '.gpg')
|
|
||||||
else:
|
|
||||||
rmtree(directory + entryname.replace('/', '', 1))
|
|
||||||
else:
|
|
||||||
remove(directory + entryname + '.gpg')
|
|
||||||
|
|
||||||
# permissions - applied pre-sync to ensure permissions are correct before upload
|
|
||||||
|
|
||||||
term('find ' + directory + ' -type d -exec chmod -R 700 {} +')
|
|
||||||
term('find ' + directory + ' -type f -exec chmod -R 600 {} +')
|
|
||||||
|
|
||||||
# rsync - ran at end of program to ensure all files are properly synced
|
|
||||||
|
|
||||||
if argument.__contains__('add') or argument.__contains__('-rm') or argument.__contains__('remove') or argument. \
|
|
||||||
__contains__('edit') or argument.__contains__('gen') or argument == 'sync' or argument == '-s':
|
|
||||||
rsyncup()
|
|
||||||
rsyncdown()
|
|
||||||
print()
|
|
||||||
print('Please note that as of this time, entries can only be deleted if removed from the central server in a '
|
|
||||||
'client-server scenario. This will be adjusted soon.')
|
|
||||||
print()
|
|
||||||
@@ -1,165 +0,0 @@
|
|||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|
||||||
rpass-2021.09.08.pr4
|
|
||||||
|
|
||||||
The Housekeeping Update - Fourth public release of rpass
|
|
||||||
|
|
||||||
This release focuses primarily on polishing rpass and tying up loose ends before
|
|
||||||
making any major changes in the future.
|
|
||||||
|
|
||||||
New features:
|
|
||||||
|
|
||||||
**overhaul error message using exceptions
|
|
||||||
**add exceptions for unknown arguments
|
|
||||||
**make clean, colorful file list by exporting to document and removing extensions
|
|
||||||
**make a manpage
|
|
||||||
**multi-line notes?
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
|
|
||||||
**move project to github
|
|
||||||
**change gpg prompt to get rid of expiration date
|
|
||||||
**get rid of gpg decryption warnings
|
|
||||||
**optimize code (specifically for when there is no folder but there is a slash)
|
|
||||||
**add version info argument
|
|
||||||
**update rsync config wizard
|
|
||||||
**properly comment the code
|
|
||||||
**validate for Python 3.10
|
|
||||||
|
|
||||||
Planned for next update (The Secret Update):
|
|
||||||
|
|
||||||
- allow to function as alternative to gnome keyring (libsecret integration)
|
|
||||||
|
|
||||||
Planned, no timeline:
|
|
||||||
|
|
||||||
- create separate gui frontend targetting mobile devices (first linux phones, maybe android at a later date - official iOS client not likely)
|
|
||||||
^ the gui will also function on desktop linux
|
|
||||||
- make platform agnostic (add windows support and package for more Linux distributions)
|
|
||||||
- ability to pass entries as arguments for more functions
|
|
||||||
- auto-completion on tab (currently unsure of best way to make this work)
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|
||||||
rpass 2021.09.07.pr3.1
|
|
||||||
|
|
||||||
The Sync and Foundations Update - Hotfix
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
|
|
||||||
- gpg configuration now prompts for expiration, rather than defaulting to two years
|
|
||||||
- rsync is now configured to not delete anything from any remote device when uploading
|
|
||||||
^ this behavior may be modified in the future - this is a quick fix to prevent data loss
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|
||||||
rpass 2021.09.07.pr3
|
|
||||||
|
|
||||||
The Sync and Foundations Update - Third public release of rpass.
|
|
||||||
|
|
||||||
As of this version, rpass has its intended base set of features and is considered usable.
|
|
||||||
It will now primarily recieve bug fixes and polish updates to prepare it to go
|
|
||||||
cross-platform and to make it compatible with GUI frontends.
|
|
||||||
|
|
||||||
New features:
|
|
||||||
|
|
||||||
- rsync support!
|
|
||||||
- new entry format with URL field (for future use)
|
|
||||||
- the temporary directory (/dev/shm) for editing entries has been somewhat secured
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
|
|
||||||
- 'rpass edit relocate' is now properly bound
|
|
||||||
- dropped the use of 'echo'
|
|
||||||
- added 'rsync' and 'openssh' as dependencies
|
|
||||||
- fixed a bug with deleting entries from folders
|
|
||||||
- entry directory now has more secure permissions
|
|
||||||
^ these permissions are re-enforced every time rpass is used
|
|
||||||
- fixed some small typos and potential bugs, made some small optimizations
|
|
||||||
|
|
||||||
Planned for next update (The Housekeeping Update):
|
|
||||||
|
|
||||||
- move to github
|
|
||||||
- get rid of gpg decryption warnings
|
|
||||||
- proper error messages using 'except'
|
|
||||||
- add exceptions for unknown arguments
|
|
||||||
- cleanup file list by exporting to document and removing .gpg, adding color
|
|
||||||
- add a manpage
|
|
||||||
- allow notes to be multiple lines long (break lines after so many characters)
|
|
||||||
- validate for Python 3.10
|
|
||||||
- properly comment the code
|
|
||||||
|
|
||||||
Planned, no timeline:
|
|
||||||
|
|
||||||
- allow to function as alternative to gnome keyring (libsecret integration)
|
|
||||||
- create separate gui frontend targetting mobile devices (first linux phones, maybe android at a later date - official iOS client not likely)
|
|
||||||
^ the gui will also function on desktop linux
|
|
||||||
- make platform agnostic (add windows support and package for more Linux distributions)
|
|
||||||
- ability to pass entries as arguments for more functions
|
|
||||||
- auto-completion on tab (currently unsure of best way to make this work)
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|
||||||
rpass 2021.09.02.pr2
|
|
||||||
|
|
||||||
The Folder Update - Second public release of rpass.
|
|
||||||
|
|
||||||
New features:
|
|
||||||
|
|
||||||
- entry and folder titles can now have spaces and be as long as you want
|
|
||||||
- entires and folders can now be deleted with 'rpass remove' or 'rpass -rm'
|
|
||||||
- entries now properly save to folders via 'rpass add' and should no longer throw errors
|
|
||||||
- entries saved in folders are now readable
|
|
||||||
- existing entries can now be moved to, from, and between folders
|
|
||||||
- previews are now shown after creating or editing an entry
|
|
||||||
|
|
||||||
Changes:
|
|
||||||
|
|
||||||
- every pre-existing function of rpass has been updated to work with the new folder system
|
|
||||||
- dropped awk as a dependency
|
|
||||||
- removed 'argument' file in /var/lib/rpass
|
|
||||||
- reduced unneccessary characters in argument parsing to decrease compatibility issues
|
|
||||||
- ensured all user input is handled correctly as a string or an integer
|
|
||||||
- lots of miscellaneous optimizations
|
|
||||||
|
|
||||||
Expected for next update (The rsync Update):
|
|
||||||
|
|
||||||
- rsync (over ssh) support!
|
|
||||||
^ including any fixes, changes, or optimizations necessary to make that happen
|
|
||||||
- new file formatting with support for URLs
|
|
||||||
^all entries created in new format should be compatible with future versions of rpass
|
|
||||||
- secure /dev/shm with random text generator
|
|
||||||
|
|
||||||
Expected for the next (next) update (The Housekeeping Update)
|
|
||||||
|
|
||||||
- get rid of gpg decryption warnings
|
|
||||||
- proper error messages using 'except'
|
|
||||||
- add exceptions for unknown arguments
|
|
||||||
- cleanup file list by exporting to document and removing .gpg, adding color
|
|
||||||
|
|
||||||
Planned, no timeline:
|
|
||||||
|
|
||||||
- make platform agnostic (basically, add windows support)
|
|
||||||
- create separate gui frontend targetting mobile devices (first linux phones, android at a later date)
|
|
||||||
^ the gui will also function on desktop linux
|
|
||||||
- ability to pass entries as arguments for more functions
|
|
||||||
- auto-completion on tab
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|
||||||
rpass 2021.09.01.pr1.1
|
|
||||||
|
|
||||||
First public release of rpass.
|
|
||||||
|
|
||||||
Early build, missing critical features (e.g. sync support and the ability to have spaces in filenames).
|
|
||||||
|
|
||||||
What is currently functional:
|
|
||||||
|
|
||||||
- guided configuration wizard
|
|
||||||
- generate passwords
|
|
||||||
- add existing passwords
|
|
||||||
- make notes
|
|
||||||
- sort notes and passwords into folders
|
|
||||||
- gpg encryption
|
|
||||||
- edit password/note entries
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
rpass is a FOSS password manager that takes advantage of rsync
|
|
||||||
Copyright (C) 2021 Randall Winkhart idgr@tutanota.com
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
Reference in New Issue
Block a user