mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-03 15:47:18 -04:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
018d0c511d | ||
|
|
55b94fc4cc | ||
|
|
3f9c4e2c8d | ||
|
|
166ac50f42 | ||
|
|
df1c6482a8 | ||
|
|
38c6ef3d1b | ||
|
|
7bea6093b8 | ||
|
|
f9ca6f8e94 | ||
|
|
75d8eb7b7d | ||
|
|
39316d04a2 | ||
|
|
3e9a4c0403 | ||
|
|
3bc07b48ef | ||
|
|
5234e8c048 | ||
|
|
b7c3535955 | ||
|
|
1f52c45c43 | ||
|
|
7723baa69e | ||
|
|
b680cc96d6 | ||
|
|
f750fe1e4d | ||
|
|
b96db3ad92 | ||
|
|
224fc1fc6d | ||
|
|
0bd2e45dba | ||
|
|
6410843911 | ||
|
|
3dda6d8428 | ||
|
|
4f31af5eff | ||
|
|
bfb830c5e5 | ||
|
|
790121e7ea | ||
|
|
4168b800f8 | ||
|
|
801d515697 | ||
|
|
379970d53b | ||
|
|
4abb3ed718 | ||
|
|
6690fd15c9 | ||
|
|
1582e73a98 | ||
|
|
dfe1703e62 | ||
|
|
7a76130b26 | ||
|
|
98dcbf57c6 | ||
|
|
a5946d558a | ||
|
|
30fb5ed041 | ||
|
|
fb1f5b92c3 | ||
|
|
61b2186b0a | ||
|
|
2113b93481 | ||
|
|
2030d90114 | ||
|
|
75071601e6 | ||
|
|
9a0a261d55 | ||
|
|
4ca2d89464 | ||
|
|
f90ec5c900 | ||
|
|
fa0a4fe0b8 | ||
|
|
c85a9d2ccd | ||
|
|
43351fd66f | ||
|
|
096bdb0773 | ||
|
|
330396c5f1 | ||
|
|
8576f63479 | ||
|
|
393f241538 | ||
|
|
c557d5bfee | ||
|
|
acca7d888c | ||
|
|
2f3b3c67ba | ||
|
|
88d2402e88 | ||
|
|
928aacc64a | ||
|
|
094bdcb418 | ||
|
|
419ff51e75 | ||
|
|
2111a0454e | ||
|
|
5d902f0324 | ||
|
|
505ffdb489 | ||
|
|
5cab1ad091 | ||
|
|
2e2404636b | ||
|
|
6cb5bd405f | ||
|
|
c93965c9a5 | ||
|
|
d685e07d32 | ||
|
|
192f58fef5 | ||
|
|
106f22f757 | ||
|
|
ae414dadda | ||
|
|
c9e99732a2 | ||
|
|
fc37368447 | ||
|
|
ca2bc98735 | ||
|
|
f44391612d | ||
|
|
8c0e9eb6df | ||
|
|
c03e818560 | ||
|
|
0b653000ef | ||
|
|
9f89dce42b | ||
|
|
e7b2e19039 | ||
|
|
80b6b4abd2 | ||
|
|
758e9f331c | ||
|
|
ba14c0e74b | ||
|
|
1991672618 | ||
|
|
9b600dabbf | ||
|
|
e42641079d | ||
|
|
7c6cbaec35 | ||
|
|
cb441933db | ||
|
|
dad1a34575 | ||
|
|
3a30812de5 | ||
|
|
e1930f9457 | ||
|
|
05df3dd903 | ||
|
|
5c1195f42d | ||
|
|
30aa3e2438 | ||
|
|
a8ea1eb444 | ||
|
|
8e053f25b8 | ||
|
|
a175a270e0 | ||
|
|
d116582144 | ||
|
|
f760b5420c | ||
|
|
6498a076f2 | ||
|
|
f4a0c52ca8 |
@@ -0,0 +1,72 @@
|
|||||||
|
# For most projects, this workflow file will not need changing; you simply need
|
||||||
|
# to commit it to your repository.
|
||||||
|
#
|
||||||
|
# You may wish to alter this file to override the set of languages analyzed,
|
||||||
|
# or to provide custom queries or build logic.
|
||||||
|
#
|
||||||
|
# ******** NOTE ********
|
||||||
|
# We have attempted to detect the languages in your repository. Please check
|
||||||
|
# the `language` matrix defined below to confirm you have the correct set of
|
||||||
|
# supported CodeQL languages.
|
||||||
|
#
|
||||||
|
name: "CodeQL"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [ "main" ]
|
||||||
|
schedule:
|
||||||
|
- cron: '34 22 * * 5'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
name: Analyze
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
actions: read
|
||||||
|
contents: read
|
||||||
|
security-events: write
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
language: [ 'python' ]
|
||||||
|
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||||||
|
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# Initializes the CodeQL tools for scanning.
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v2
|
||||||
|
with:
|
||||||
|
languages: ${{ matrix.language }}
|
||||||
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
|
# By default, queries listed here will override any specified in a config file.
|
||||||
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||||
|
|
||||||
|
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
||||||
|
# queries: security-extended,security-and-quality
|
||||||
|
|
||||||
|
|
||||||
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
|
- name: Autobuild
|
||||||
|
uses: github/codeql-action/autobuild@v2
|
||||||
|
|
||||||
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||||
|
|
||||||
|
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
||||||
|
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
||||||
|
|
||||||
|
# - run: |
|
||||||
|
# echo "Run, Build Application using script"
|
||||||
|
# ./location_of_script_within_repo/buildscript.sh
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v2
|
||||||
@@ -1,12 +1,16 @@
|
|||||||
# sshyp
|

|
||||||
A very simple self-hosted, synchronized password manager for UNIX systems (currently Haiku/Linux). Alternative to (and compatible with) pass/password-store.
|
|
||||||
|
|
||||||
Compatible with entries created by pass/password-store.
|
[](https://github.com/rwinkhart/sshyp/actions/workflows/codeql-analysis.yml)
|
||||||
|
|
||||||
The only password-store compatible CLI password manager available for Haiku.
|
sshyp is a very simple self-hosted, synchronized password manager for UNIX(-like) systems (currently Haiku/FreeBSD/Linux).
|
||||||
|
|
||||||
"sshyp" stands for "sshync passwords", or "ssh sync passwords".
|
sshyp is compatible with entries created by pass/password-store, as its original goal was to be like pass/password-store, but far more user-friendly to synchronize with a self-hosted server.
|
||||||
"sshync" is the custom syncing backend (based on sftp) used by "sshyp".
|
|
||||||
|
sshyp is (as of writing) the only password-store compatible CLI password manager available for Haiku.
|
||||||
|
|
||||||
|
sshyp makes use of a custom sftp wrapper, called sshync (ssh+sync), to reliably sync user entries with a local or remote server.
|
||||||
|
|
||||||
|
The name "sshyp" is a combination of its syncing library, "sshync", and "passwords".
|
||||||
|
|
||||||
# WARNING
|
# WARNING
|
||||||
It is your responsibility to assess the security and stability of "sshyp" before using it and ensure it meets your needs.
|
It is your responsibility to assess the security and stability of "sshyp" before using it and ensure it meets your needs.
|
||||||
@@ -21,32 +25,26 @@ What sshyp can do:
|
|||||||
- securely manage a collection of encrypted passwords and notes via CLI
|
- securely manage a collection of encrypted passwords and notes via CLI
|
||||||
- generate new, secure passwords to the user's choice in length and complexity
|
- generate new, secure passwords to the user's choice in length and complexity
|
||||||
- securely sync said passwords and notes seamlessly between devices
|
- securely sync said passwords and notes seamlessly between devices
|
||||||
|
- utilize [extensions](https://github.com/rwinkhart/sshyp-labs) to interact with your entries is additional ways (such as generating TOTP keys)
|
||||||
- everything above with entries created by pass/password-store!
|
- everything above with entries created by pass/password-store!
|
||||||
- everything above on Haiku, Linux, and Termux (an Android terminal emulator)!
|
- everything above on Haiku, FreeBSD, Linux, and Termux (an Android terminal emulator)!
|
||||||
|
|
||||||
What sshyp will likely do:
|
What sshyp will likely do:
|
||||||
|
|
||||||
- (planned v1.1.0) 2FA/MFA management (was previously not on the roadmap, but could be beneficial in reducing phone usage)
|
|
||||||
- (planned v1.2.0) everything it already does, but also in a GUI for Linux/Haiku
|
- (planned v1.2.0) everything it already does, but also in a GUI for Linux/Haiku
|
||||||
|
|
||||||
What sshyp definitely won't do:
|
What sshyp definitely won't do:
|
||||||
|
|
||||||
- Non-UNIX support, e.g. Windows (I'd be happy to link to third-party ports, if someone were to make them)
|
- Non-UNIX(-like) support, e.g. Windows (I'd be happy to link to third-party ports, if someone were to make them)
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
Arch Linux (all ISAs)
|
Please see the [installation guide](https://github.com/rwinkhart/sshyp/wiki/Installation) in the sshyp wiki for directions specific to your distribution/OS.
|
||||||
|
|
||||||
sshyp releases are available in the Arch User Repository as 'sshyp'.
|
Pre-built packages exist for Haiku, FreeBSD, Alpine Linux, Arch Linux, Debian/Ubuntu Linux, Fedora Linux, and Termux. These can be downloaded from the releases page.
|
||||||
|
|
||||||
Install with your preferred AUR helper or use:
|
Requests for additional distribution/OS support can be filed as issues.
|
||||||
|
|
||||||
```
|
Extensions are available in the [sshyp-labs](https://github.com/rwinkhart/sshyp-labs) repository.
|
||||||
git clone https://aur.archlinux.org/sshyp.git
|
|
||||||
cd sshyp
|
|
||||||
makepkg -si
|
|
||||||
```
|
|
||||||
|
|
||||||
Pre-built packages exist for Haiku, Arch Linux, Debian Linux, and Termux. These can be downloaded from the releases page.
|
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
Since sshyp is written entirely in Python, it doesn't need to be compiled. It does, however, need to be packaged for installation.
|
Since sshyp is written entirely in Python, it doesn't need to be compiled. It does, however, need to be packaged for installation.
|
||||||
@@ -59,11 +57,13 @@ cd sshyp
|
|||||||
./package.sh
|
./package.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
The packaging script has been tested on Arch Linux with dpkg as a dependency for Debian and Termux packaging.
|
The packaging script has been tested on Arch Linux with "dpkg" as a dependency for Debian/Ubuntu and Termux packaging and "freebsd-pkg" as a dependency for FreeBSD packaging.
|
||||||
|
|
||||||
|
Haiku and Fedora packaging must be done on their own respective distributions.
|
||||||
|
|
||||||
The AUR version and the packages attatched to the release tags were already packaged using this script.
|
The AUR version and the packages attatched to the release tags were already packaged using this script.
|
||||||
|
|
||||||
Currently, the script can create packages for Haiku, Arch Linux (PKGBUILD), Debian Linux, Termux, and generic. Packaging for other systems coming soon.
|
Currently, the script can create packages for Haiku, FreeBSD, Alpine Linux (APKBUILD), Arch Linux (PKGBUILD), Debian/Ubuntu Linux, Fedora Linux, Termux, and generic.
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
Upon initial installation (on both the server and client devices), be sure to run:
|
Upon initial installation (on both the server and client devices), be sure to run:
|
||||||
@@ -72,8 +72,7 @@ Upon initial installation (on both the server and client devices), be sure to ru
|
|||||||
sshyp tweak
|
sshyp tweak
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will allow you to configure the settings necessary for sshyp to function.
|
This command will allow you to configure the settings necessary for sshyp to function. To ensure configuration compatibility, it is a good idea to run 'sshyp tweak' after each major update.
|
||||||
To ensure configuration compatibility, it is a good idea to run 'sshyp tweak' after each major update.
|
|
||||||
|
|
||||||
Please note that decrypting and reading entries is disabled on server devices for security reasons. Only devices configured as clients can use the gpg key to decrypt entries.
|
Please note that decrypting and reading entries is disabled on server devices for security reasons. Only devices configured as clients can use the gpg key to decrypt entries.
|
||||||
|
|
||||||
@@ -92,10 +91,10 @@ man sshyp
|
|||||||
# Roadmap
|
# Roadmap
|
||||||
Short-term Goals:
|
Short-term Goals:
|
||||||
|
|
||||||
- 2FA/MFA management
|
- create minimal GUI app (Linux x86_64, Linux aarch64)
|
||||||
- create minimal GUI apps (Linux x86_64, Linux aarch64)
|
|
||||||
- various optimizations/bug fixes
|
- various optimizations/bug fixes
|
||||||
|
|
||||||
Long-term Goals:
|
Long-term Goals:
|
||||||
|
|
||||||
|
- a fun surprise
|
||||||
- seize the thrones, shear the humans
|
- seize the thrones, shear the humans
|
||||||
|
|||||||
+8
-7
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
# external modules
|
# external modules
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ from sys import exit as s_exit
|
|||||||
|
|
||||||
# utility functions
|
# utility functions
|
||||||
|
|
||||||
def get_titles_mods(_directory, _destination, _user_data):
|
def get_titles_mods(_directory, _destination, _user_data): # fetches and returns lists of titles and their mod times
|
||||||
_title_list, _mod_list = [], []
|
_title_list, _mod_list = [], []
|
||||||
Path(path.expanduser('~/.config/sshync')).mkdir(0o700, parents=True, exist_ok=True) # create config directory
|
Path(path.expanduser('~/.config/sshync')).mkdir(0o700, parents=True, exist_ok=True) # create config directory
|
||||||
# local fetching
|
# local fetching
|
||||||
@@ -37,7 +37,8 @@ def get_titles_mods(_directory, _destination, _user_data):
|
|||||||
return _title_list, _mod_list
|
return _title_list, _mod_list
|
||||||
|
|
||||||
|
|
||||||
def sort_titles_mods(_list_1, _list_2):
|
def sort_titles_mods(_list_1, _list_2): # creates and returns two lists (of titles and mod times) generated by sorting
|
||||||
|
# information from two different, provided lists
|
||||||
_title_list_2_sorted, _mod_list_2_sorted = [], []
|
_title_list_2_sorted, _mod_list_2_sorted = [], []
|
||||||
# title sorting
|
# title sorting
|
||||||
for _title in _list_1[0]:
|
for _title in _list_1[0]:
|
||||||
@@ -52,16 +53,16 @@ def sort_titles_mods(_list_1, _list_2):
|
|||||||
return _title_list_2_sorted, _mod_list_2_sorted
|
return _title_list_2_sorted, _mod_list_2_sorted
|
||||||
|
|
||||||
|
|
||||||
def make_profile(_profile_dir, _local_dir, _remote_dir, _identity, _ip, _port, _user):
|
def make_profile(_profile_dir, _local_dir, _remote_dir, _identity, _ip, _port, _user): # creates a sshync job profile
|
||||||
open(_profile_dir, 'w').write(_user + '\n' + _ip + '\n' + _port + '\n' + _local_dir + '\n' + _remote_dir + '\n' +
|
open(_profile_dir, 'w').write(_user + '\n' + _ip + '\n' + _port + '\n' + _local_dir + '\n' + _remote_dir + '\n' +
|
||||||
_identity + '\n')
|
_identity + '\n')
|
||||||
|
|
||||||
|
|
||||||
def get_profile(_profile_dir):
|
def get_profile(_profile_dir): # returns a list of data read from a sshync job profile
|
||||||
try:
|
try:
|
||||||
_profile_data = open(_profile_dir).readlines()
|
_profile_data = open(_profile_dir).readlines()
|
||||||
except (FileNotFoundError, IndexError):
|
except (FileNotFoundError, IndexError):
|
||||||
print('\nEither the profile does not exist, or it is corrupted.\n')
|
print('\n\u001b[38;5;9merror: the profile does not exist or is corrupted.\u001b[0m\n')
|
||||||
_profile_data = None
|
_profile_data = None
|
||||||
s_exit(1)
|
s_exit(1)
|
||||||
# extract data from profile
|
# extract data from profile
|
||||||
@@ -74,7 +75,7 @@ def get_profile(_profile_dir):
|
|||||||
return _user, _ip, _port, _local_dir, _remote_dir, _identity
|
return _user, _ip, _port, _local_dir, _remote_dir, _identity
|
||||||
|
|
||||||
|
|
||||||
def run_profile(_profile_dir):
|
def run_profile(_profile_dir): # runs a sshync job profile
|
||||||
_user_data = get_profile(_profile_dir)
|
_user_data = get_profile(_profile_dir)
|
||||||
_remote_titles_mods_saver = get_titles_mods(_user_data[4], 'r', _user_data) # saved to prevent re-walking directory
|
_remote_titles_mods_saver = get_titles_mods(_user_data[4], 'r', _user_data) # saved to prevent re-walking directory
|
||||||
_index_l = sort_titles_mods(_remote_titles_mods_saver, get_titles_mods(_user_data[3], 'l', _user_data))
|
_index_l = sort_titles_mods(_remote_titles_mods_saver, get_titles_mods(_user_data[3], 'l', _user_data))
|
||||||
|
|||||||
@@ -1,713 +0,0 @@
|
|||||||
#!/bin/python3
|
|
||||||
|
|
||||||
# external modules
|
|
||||||
|
|
||||||
from os import environ, listdir, path, remove, system, uname, walk
|
|
||||||
from pathlib import Path
|
|
||||||
import random
|
|
||||||
from shutil import get_terminal_size, move, rmtree
|
|
||||||
import sshync
|
|
||||||
import string
|
|
||||||
from subprocess import Popen
|
|
||||||
from sys import argv, exit as s_exit
|
|
||||||
from textwrap import fill
|
|
||||||
|
|
||||||
|
|
||||||
# utility functions
|
|
||||||
|
|
||||||
def entry_list_gen(): # generates and prints a list of all folders and entries
|
|
||||||
print('\n\u001b[38;5;0;48;5;15msshyp entries:\u001b[0m\n')
|
|
||||||
_entry_list, _color_alternator = [], 1
|
|
||||||
for _entry in sorted(listdir(path.expanduser('~/.password-pasture'))):
|
|
||||||
if Path(path.expanduser(f"~/.password-pasture/{_entry}")).is_file():
|
|
||||||
if _color_alternator == 1:
|
|
||||||
_entry_list.append(f"{_entry.replace('.gpg', '')}")
|
|
||||||
_color_alternator = 2
|
|
||||||
else:
|
|
||||||
_entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m")
|
|
||||||
_color_alternator = 1
|
|
||||||
_real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list))
|
|
||||||
if _real <= get_terminal_size()[0]:
|
|
||||||
_width = len(' '.join(_entry_list))
|
|
||||||
else:
|
|
||||||
_width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 25)
|
|
||||||
try:
|
|
||||||
print(fill(' '.join(_entry_list), width=_width) + '\n')
|
|
||||||
except ValueError:
|
|
||||||
pass
|
|
||||||
for _root, _directories, _files in walk(path.expanduser('~/.password-pasture')):
|
|
||||||
for _dir in sorted(_directories):
|
|
||||||
_inner_dir = f"{_root.replace(path.expanduser('~/.password-pasture'), '')}/{_dir}"
|
|
||||||
print(f"\n\u001b[38;5;15;48;5;238m{_inner_dir}/\u001b[0m")
|
|
||||||
_entry_list, _color_alternator = [], 1
|
|
||||||
for _s_root, _s_directories, _s_files in walk(path.expanduser(f"~/.password-pasture{_inner_dir}")):
|
|
||||||
for _entry in sorted(_s_files):
|
|
||||||
if _color_alternator == 1:
|
|
||||||
_entry_list.append(f"{_entry.replace('.gpg', '')}")
|
|
||||||
_color_alternator = 2
|
|
||||||
else:
|
|
||||||
_entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m")
|
|
||||||
_color_alternator = 1
|
|
||||||
_real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list))
|
|
||||||
if _real <= get_terminal_size()[0]:
|
|
||||||
_width = len(' '.join(_entry_list))
|
|
||||||
else:
|
|
||||||
_width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 25)
|
|
||||||
try:
|
|
||||||
print(fill(' '.join(_entry_list), width=_width) + '\n')
|
|
||||||
except ValueError:
|
|
||||||
print('\u001b[38;5;208m-empty directory!-\u001b[0m\n')
|
|
||||||
|
|
||||||
|
|
||||||
def entry_reader(_decrypted_entry):
|
|
||||||
_entry_lines, _notes_flag = open(_decrypted_entry, 'r').readlines(), 0
|
|
||||||
print()
|
|
||||||
for _num in range(len(_entry_lines)):
|
|
||||||
try:
|
|
||||||
if _num == 0 and _entry_lines[1] != '\n':
|
|
||||||
print(f"\u001b[38;5;0;48;5;15mUsername:\u001b[0m\n{_entry_lines[1]}")
|
|
||||||
elif _num == 1 and _entry_lines[0] != '\n':
|
|
||||||
print(f"\u001b[38;5;0;48;5;15mPassword:\u001b[0m\n{_entry_lines[0]}")
|
|
||||||
elif _num == 2 and _entry_lines[2] != '\n':
|
|
||||||
print(f"\u001b[38;5;0;48;5;15mURL:\u001b[0m\n{_entry_lines[_num]}")
|
|
||||||
elif _num >= 3 and _entry_lines[_num] != '\n' and _notes_flag != 1:
|
|
||||||
_notes_flag = 1
|
|
||||||
print('\u001b[38;5;0;48;5;15mNotes:\u001b[0m\n' + _entry_lines[_num].replace('\n', ''))
|
|
||||||
elif _num >= 3 and _notes_flag == 1:
|
|
||||||
print(_entry_lines[_num].replace('\n', ''))
|
|
||||||
if _notes_flag == 1:
|
|
||||||
try:
|
|
||||||
_line_test = _entry_lines[_num + 1]
|
|
||||||
except IndexError:
|
|
||||||
print()
|
|
||||||
except IndexError:
|
|
||||||
if _num == 0:
|
|
||||||
print(f"\u001b[38;5;0;48;5;15mPassword:\u001b[0m\n{_entry_lines[0]}")
|
|
||||||
|
|
||||||
|
|
||||||
def replace_line(file_name, line_num, text): # replaces text in a given line with different text
|
|
||||||
_lines = open(file_name, 'r').readlines()
|
|
||||||
_lines[line_num] = text
|
|
||||||
open(file_name, 'w').writelines(_lines)
|
|
||||||
|
|
||||||
|
|
||||||
def shm_gen(): # generates a random temporary folder for security and returns random names for the folder and temp file
|
|
||||||
_shm_folder_gen = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
_shm_entry_gen = ''.join(random.SystemRandom().choice(string.ascii_letters + string.digits)
|
|
||||||
for _ in range(random.randint(10, 30)))
|
|
||||||
Path(tmp_dir + _shm_folder_gen).mkdir(0o700)
|
|
||||||
return _shm_folder_gen, _shm_entry_gen
|
|
||||||
|
|
||||||
|
|
||||||
def pass_gen():
|
|
||||||
def _pass_gen_function(__complexity, __length):
|
|
||||||
if __complexity.lower() == 's':
|
|
||||||
__character_pool = string.ascii_letters + string.digits
|
|
||||||
else:
|
|
||||||
__character_pool = string.ascii_letters + string.digits + string.punctuation
|
|
||||||
__gen = ''.join(random.SystemRandom().choice(__character_pool) for _ in range(__length))
|
|
||||||
__min_special, __special = round(.2 * __length), 0
|
|
||||||
for __character in __gen:
|
|
||||||
if not __character.isalpha():
|
|
||||||
__special += 1
|
|
||||||
if __special < __min_special:
|
|
||||||
__gen = _pass_gen_function(__complexity, __length)
|
|
||||||
return __gen
|
|
||||||
_length = int(input('How many characters should be in the password? '))
|
|
||||||
if _length > 840:
|
|
||||||
_length = 840
|
|
||||||
print('\n\u001b[38;5;208mPassword length has been limited to the maximum of 840 characters.\u001b[0m\n')
|
|
||||||
_complexity = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) '))
|
|
||||||
_gen = _pass_gen_function(_complexity, _length)
|
|
||||||
return _gen
|
|
||||||
|
|
||||||
|
|
||||||
def encrypt(_shm_folder, _shm_entry, _location):
|
|
||||||
system(f"{gpg} -qr {str(gpg_id)} -e '{tmp_dir}{_shm_folder}/{_shm_entry}'")
|
|
||||||
move(f"{tmp_dir}{_shm_folder}/{_shm_entry}.gpg", f"{directory}{_location}.gpg")
|
|
||||||
rmtree(f"{tmp_dir}{_shm_folder}")
|
|
||||||
|
|
||||||
|
|
||||||
def edit_note(_shm_folder, _shm_entry):
|
|
||||||
lines = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}").readlines()
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(lines[0:3])
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'w').writelines(lines[3:])
|
|
||||||
system(f"nano {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
|
||||||
edit_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n").read()
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'a').write(edit_notes)
|
|
||||||
|
|
||||||
|
|
||||||
# argument-specific functions
|
|
||||||
|
|
||||||
|
|
||||||
def tweak(): # runs configuration wizard
|
|
||||||
# storage/config directory creation
|
|
||||||
Path(path.expanduser('~/.password-pasture')).mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
Path(path.expanduser('~/.config/sshyp/devices')).mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
if not Path(f"{path.expanduser('~/.config/sshyp/tmp')}").exists():
|
|
||||||
if uname()[0] == 'Haiku':
|
|
||||||
system(f"ln -s /tmp {path.expanduser('~/.config/sshyp/tmp')}")
|
|
||||||
elif Path("/data/data/com.termux").exists():
|
|
||||||
system(f"ln -s '/data/data/com.termux/files/usr/tmp' {path.expanduser('~/.config/sshyp/tmp')}")
|
|
||||||
else:
|
|
||||||
system(f"ln -s /dev/shm {path.expanduser('~/.config/sshyp/tmp')}")
|
|
||||||
# device type configuration
|
|
||||||
_device_type = input('\nIs this installation for a client or for a server? (C/s) ')
|
|
||||||
if _device_type.lower() == 's':
|
|
||||||
open(path.expanduser('~/.config/sshyp/sshyp-device'), 'w').write(_device_type)
|
|
||||||
Path(path.expanduser('~/.config/sshyp/deleted')).mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
print('\nMake sure the ssh service is running and properly configured.\n\nConfiguration complete!\n')
|
|
||||||
s_exit(0)
|
|
||||||
else:
|
|
||||||
# device type configuration
|
|
||||||
_device_type = 'c' # ensure device type flag is properly set
|
|
||||||
open(path.expanduser('~/.config/sshyp/sshyp-device'), 'w').write(_device_type)
|
|
||||||
|
|
||||||
# gpg configuration
|
|
||||||
_gpg_id = input('\nsshyp requires the use of a unique gpg key. Do you already have one that you are '
|
|
||||||
'willing to use? (y/N)')
|
|
||||||
if _gpg_id.lower() != 'y':
|
|
||||||
print('\nA unique gpg key has been generated for you.')
|
|
||||||
system(f"{gpg} --full-generate-key")
|
|
||||||
_gpg_id = str(input('\nPlease input the ID of your gpg key: '))
|
|
||||||
open(path.expanduser('~/.config/sshyp/sshyp-gpg'), 'w').write(_gpg_id + '\n')
|
|
||||||
|
|
||||||
# lock file generation
|
|
||||||
open(path.expanduser('~/.config/sshyp/lock'), 'w')
|
|
||||||
system(f"{gpg} -qr {str(_gpg_id)} -e {path.expanduser('~/.config/sshyp/lock')}")
|
|
||||||
remove(f"{path.expanduser('~/.config/sshyp')}/lock")
|
|
||||||
|
|
||||||
# ssh key configuration
|
|
||||||
_ssh_gen = (input('\nMake sure the ssh service on the remote server is running and properly configured.'
|
|
||||||
'\n\nSync support requires a unique ssh key. Would you like to have this automatically '
|
|
||||||
'generated? (Y/n) '))
|
|
||||||
if _ssh_gen.lower() != 'n':
|
|
||||||
if uname()[0] == 'Haiku':
|
|
||||||
Path(f"{path.expanduser('~')}/.ssh").mkdir(0o700, exist_ok=True)
|
|
||||||
system('ssh-keygen -t ed25519 -f ~/.ssh/sshyp')
|
|
||||||
else:
|
|
||||||
print(f"\nEnsure that the key file you are using is located at {path.expanduser('~/.ssh/sshyp')}")
|
|
||||||
|
|
||||||
# ssh ip+port configuration
|
|
||||||
print('\nExample input: 10.10.10.10:9999\n')
|
|
||||||
_ip_port = str(input('What is the IP and ssh port of the remote server? '))
|
|
||||||
_ip, _sep, _port = _ip_port.partition(':')
|
|
||||||
|
|
||||||
# ssh user configuration
|
|
||||||
_username_ssh = str(input('\nWhat is the username of the remote server? '))
|
|
||||||
print(f"\nEntry directory: /home/{_username_ssh}/.password-pasture/")
|
|
||||||
|
|
||||||
# sshync profile generation
|
|
||||||
sshync.make_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'),
|
|
||||||
path.expanduser('~/.password-pasture/'), f"/home/{_username_ssh}/.password-pasture/",
|
|
||||||
path.expanduser('~/.ssh/sshyp'), _ip, _port, _username_ssh)
|
|
||||||
|
|
||||||
# device name configuration
|
|
||||||
for _name in listdir(path.expanduser('~/.config/sshyp/devices')): # remove existing device name
|
|
||||||
remove(f"{path.expanduser('~/.config/sshyp/devices/')}{_name}")
|
|
||||||
print('\nIMPORTANT: This name MUST be unique amongst your client devices. '
|
|
||||||
'\nThis is used to keep track of which devices have up-to-date databases.\n')
|
|
||||||
_client_device_name = str(input('What would you like to name this device? '))
|
|
||||||
open(f"{path.expanduser('~/.config/sshyp/devices/')}{_client_device_name}", 'w')
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {_port} {_username_ssh}@{_ip} "
|
|
||||||
f"\"touch '/home/{_username_ssh}/.config/sshyp/devices/{_client_device_name}'\"")
|
|
||||||
|
|
||||||
print('\nConfiguration complete!\n')
|
|
||||||
|
|
||||||
|
|
||||||
def print_info(): # prints help text based on argument
|
|
||||||
if argument == 'help' or argument == '--help' or argument == '-h':
|
|
||||||
print('\n\u001b[38;5;0;48;5;15msshyp Copyright (C) 2021-2022 Randall Winkhart\u001b[0m\n')
|
|
||||||
print("This is free software, and you are welcome to redistribute it under certain conditions;\nthis program "
|
|
||||||
"comes with ABSOLUTELY NO WARRANTY;\ntype `sshyp license' for details.")
|
|
||||||
print('\n\u001b[38;5;15;48;5;238mUSAGE: sshyp [OPTION [FLAG] [<entry name>]] | [/<entry name>]\u001b[0m\n')
|
|
||||||
print('\u001b[38;5;0;48;5;15mOptions:\u001b[0m')
|
|
||||||
print('help/--help/-h bring up this menu')
|
|
||||||
print('version/-v display sshyp version info')
|
|
||||||
print('tweak configure sshyp')
|
|
||||||
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('shear/-rm delete an existing entry')
|
|
||||||
print('sync/-s manually sync the entry directory via sshync\n')
|
|
||||||
print('\u001b[38;5;0;48;5;15mFlags:\u001b[0m')
|
|
||||||
print('\u001b[38;5;15;48;5;238madd:\u001b[0m')
|
|
||||||
print(' password/-p add a password entry')
|
|
||||||
print(' note/-n add a note entry')
|
|
||||||
print(' folder/-f add a new folder for entries')
|
|
||||||
print('\u001b[38;5;15;48;5;238medit:\u001b[0m')
|
|
||||||
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('\u001b[38;5;15;48;5;238mcopy:\u001b[0m')
|
|
||||||
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('\u001b[38;5;15;48;5;238mgen:\u001b[0m')
|
|
||||||
print(' update/-u generate a password for an existing entry\n')
|
|
||||||
print("\u001b[38;5;0;48;5;15mTip:\u001b[0m You can quickly read an entry with 'sshyp /<entry name>'!")
|
|
||||||
elif argument == 'version' or argument == '-v':
|
|
||||||
print('\n\u001b[38;5;0;48;5;15m////////////////////////////////////////////////////////\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m '
|
|
||||||
'\u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15msshyp Copyright (C) 2021-2022 '
|
|
||||||
'Randall Winkhart\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m '
|
|
||||||
'\u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15mVersion 1.0.0'
|
|
||||||
'\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15mThe Polished Trotters '
|
|
||||||
'Update\u001b[38;5;15;48;5;238m \u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m/\u001b[38;5;15;48;5;238m '
|
|
||||||
'\u001b[38;5;0;48;5;15m/\u001b[0m')
|
|
||||||
print('\u001b[38;5;0;48;5;15m////////////////////////////////////////////////////////\u001b[0m\n')
|
|
||||||
elif argument == 'license':
|
|
||||||
print('\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU '
|
|
||||||
'General\nPublic License as published by the Free Software Foundation, either version 3 of the License,'
|
|
||||||
'\nor (at your option) any later version.\n\nThis program is distributed in the hope that it will be '
|
|
||||||
'useful, but WITHOUT ANY WARRANTY;\nwithout even the implied warranty of MERCHANTABILITY or FITNESS FOR A'
|
|
||||||
' PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.'
|
|
||||||
'\n\nhttps://opensource.org/licenses/GPL-3.0\n')
|
|
||||||
elif argument == 'add':
|
|
||||||
print('\n\u001b[38;5;15;48;5;238mUSAGE: sshyp add {FLAG {<entry name>}}\u001b[0m\n')
|
|
||||||
print('\u001b[38;5;0;48;5;15mFlags:\u001b[0m')
|
|
||||||
print('\u001b[38;5;15;48;5;238madd:\u001b[0m')
|
|
||||||
print(' password/-p add a password entry')
|
|
||||||
print(' note/-n add a note entry')
|
|
||||||
print(' folder/-f add a new folder for entries\n')
|
|
||||||
elif argument == 'edit':
|
|
||||||
print('\n\u001b[38;5;15;48;5;238mUSAGE: sshyp edit {FLAG {<entry name>}}\u001b[0m\n')
|
|
||||||
print('\u001b[38;5;0;48;5;15mFlags:\u001b[0m')
|
|
||||||
print('\u001b[38;5;15;48;5;238medit:\u001b[0m')
|
|
||||||
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')
|
|
||||||
elif argument == 'copy':
|
|
||||||
print('\n\u001b[38;5;15;48;5;238mUSAGE: sshyp copy {FLAG {<entry name>}}\u001b[0m\n')
|
|
||||||
print('\u001b[38;5;0;48;5;15mFlags:\u001b[0m')
|
|
||||||
print('\u001b[38;5;15;48;5;238mcopy:\u001b[0m')
|
|
||||||
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')
|
|
||||||
|
|
||||||
|
|
||||||
def no_arg(): # displays a list of entries and gives an option to select one for viewing
|
|
||||||
print("\nFor a list of usable commands, run 'sshyp help'.")
|
|
||||||
entry_list_gen()
|
|
||||||
_read_entry = str(input('Entry to read: '))
|
|
||||||
if not Path(f"{directory}{_read_entry}.gpg").exists():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({_read_entry}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}{_shm_folder}/{_shm_entry} '{directory}{_read_entry}.gpg'")
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
rmtree(f"{tmp_dir}{_shm_folder}")
|
|
||||||
|
|
||||||
|
|
||||||
def read_shortcut(): # shortcut to quickly read an entry
|
|
||||||
if not Path(f"{directory}{argument.replace('/', '', 1)}.gpg").exists():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({argument.replace('/', '', 1)}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}{_shm_folder}/{_shm_entry} '{directory}{argument.replace('/', '', 1)}.gpg'")
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
rmtree(f"{tmp_dir}{_shm_folder}")
|
|
||||||
|
|
||||||
|
|
||||||
def sync(): # calls sshync to sync changes to the user's server
|
|
||||||
print('\nSyncing entries with the server device...\n')
|
|
||||||
# check for deletions
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
|
||||||
f"'import sshypRemote; sshypRemote.deletion_check(\"'\"{client_device_name}\"'\")'\"")
|
|
||||||
system(f"scp -pqs -P {port} -i '{path.expanduser('~/.ssh/sshyp')}' {username_ssh}@{ip}:'/home/{username_ssh}"
|
|
||||||
f"/.config/sshyp/deletion_database' {path.expanduser('~/.config/sshyp/')}")
|
|
||||||
try:
|
|
||||||
_deletion_database = open(path.expanduser('~/.config/sshyp/deletion_database')).readlines()
|
|
||||||
except (FileNotFoundError, IndexError):
|
|
||||||
print('\n\u001b[38;5;1mError: the deletion database does not exist or is corrupted.\u001b[0m\n')
|
|
||||||
_deletion_database = None
|
|
||||||
s_exit(1)
|
|
||||||
for _file in _deletion_database:
|
|
||||||
if _file[:-1].endswith('/'):
|
|
||||||
try:
|
|
||||||
if silent_sync != 1:
|
|
||||||
print(f"\u001b[38;5;208m{_file[:-1]}\u001b[0m has been sheared, removing...")
|
|
||||||
rmtree(f"{path.expanduser('~/.password-pasture/')}{_file[:-1]}")
|
|
||||||
except FileNotFoundError:
|
|
||||||
if silent_sync != 1:
|
|
||||||
print('Folder does not exist locally.')
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
if silent_sync != 1:
|
|
||||||
print(f"\u001b[38;5;208m{_file[:-1]}\u001b[0m has been sheared, removing...")
|
|
||||||
remove(f"{path.expanduser('~/.password-pasture/')}{_file[:-1]}.gpg")
|
|
||||||
except (FileNotFoundError, IsADirectoryError):
|
|
||||||
if silent_sync != 1:
|
|
||||||
print('File does not exist locally.')
|
|
||||||
# check for new folders
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
|
||||||
f"'import sshypRemote; sshypRemote.folder_check()'\"")
|
|
||||||
system(f"scp -pqs -P {port} -i '{path.expanduser('~/.ssh/sshyp')}' {username_ssh}@{ip}:'/home/{username_ssh}"
|
|
||||||
f"/.config/sshyp/folder_database' {path.expanduser('~/.config/sshyp/')}")
|
|
||||||
try:
|
|
||||||
_folder_database = open(path.expanduser('~/.config/sshyp/folder_database')).readlines()
|
|
||||||
except (FileNotFoundError, IndexError):
|
|
||||||
print('\n\u001b[38;5;1mError: the folder database does not exist or is corrupted.\u001b[0m\n')
|
|
||||||
_folder_database = None
|
|
||||||
s_exit(1)
|
|
||||||
for _folder in _folder_database:
|
|
||||||
if Path(f"{path.expanduser('~')}{_folder[:-1]}").is_dir():
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
print(f"\u001b[38;5;2m{_folder.replace('/.password-pasture/', '')[:-1]}/\u001b[0m does not exist locally, "
|
|
||||||
f"creating...")
|
|
||||||
Path(f"{path.expanduser('~')}{_folder[:-1]}").mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
# set permissions before uploading
|
|
||||||
system('find ' + directory + ' -type d -exec chmod -R 700 {} +')
|
|
||||||
system('find ' + directory + ' -type f -exec chmod -R 600 {} +')
|
|
||||||
sshync.run_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'))
|
|
||||||
|
|
||||||
|
|
||||||
def add_entry(): # adds a new entry
|
|
||||||
_shm_folder, _shm_entry = None, None # sets base-line values to avoid errors
|
|
||||||
if argument == 'add note' or argument == 'add -n' or argument == 'add password' or argument == 'add -p':
|
|
||||||
_entry_name = str(input('\nName of entry: '))
|
|
||||||
else:
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:2]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
if _entry_name.startswith('/'):
|
|
||||||
_entry_name = _entry_name.replace('/', '', 1)
|
|
||||||
if argument.startswith('add note') or argument.startswith('add -n'):
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"nano {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
|
||||||
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines('\n\n\n' + _notes)
|
|
||||||
elif argument.startswith('add password') or argument.startswith('add -p'):
|
|
||||||
_username = str(input('Username: '))
|
|
||||||
_password = str(input('Password: '))
|
|
||||||
_url = str(input('URL: '))
|
|
||||||
_add_note = input('Add a note to this entry? (y/N) ')
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
if _add_note.lower() == 'y':
|
|
||||||
system(f"nano {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
|
||||||
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
|
||||||
else:
|
|
||||||
_notes = ''
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(_password + '\n' + _username + '\n' + _url +
|
|
||||||
'\n' + _notes)
|
|
||||||
print('\nEntry preview:')
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
encrypt(_shm_folder, _shm_entry, _entry_name)
|
|
||||||
|
|
||||||
|
|
||||||
def add_folder(): # creates a new folder
|
|
||||||
if argument == 'add folder' or argument == 'add -f':
|
|
||||||
_folder_name = str(input('Name of new folder: '))
|
|
||||||
else:
|
|
||||||
_folder_name = argument.split(' ')
|
|
||||||
del _folder_name[:2]
|
|
||||||
_folder_name = ' '.join(_folder_name)
|
|
||||||
if _folder_name.startswith('/'):
|
|
||||||
_folder_name = _folder_name.replace('/', '', 1)
|
|
||||||
Path(directory + _folder_name).mkdir(0o700)
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"mkdir -p '{directory_ssh}"
|
|
||||||
f"{_folder_name}'\"")
|
|
||||||
|
|
||||||
|
|
||||||
def rename(): # renames an entry or folder
|
|
||||||
if argument == 'edit rename' or argument == 'edit relocate' or argument == 'edit -r':
|
|
||||||
entry_list_gen()
|
|
||||||
_entry_name = str(input('What would you like to rename/relocate? '))
|
|
||||||
else:
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:2]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
if not Path(f"{directory}{_entry_name}.gpg").exists():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({_entry_name}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
_new_name = str(input('New Name: '))
|
|
||||||
if _entry_name.startswith('/'):
|
|
||||||
_entry_name = _entry_name.replace('/', '', 1)
|
|
||||||
if _entry_name.endswith('/'):
|
|
||||||
move(f"{directory}{_entry_name}", f"{directory}{_new_name}")
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"mkdir -p '{directory_ssh}"
|
|
||||||
f"{_new_name}'\"")
|
|
||||||
else:
|
|
||||||
move(f"{directory}{_entry_name}.gpg", f"{directory}{_new_name}.gpg")
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
|
||||||
f"'import sshypRemote; sshypRemote.delete(\"'\"{_entry_name}\"'\")'\"")
|
|
||||||
|
|
||||||
|
|
||||||
def edit(): # edits the contents of an entry
|
|
||||||
_shm_folder, _shm_entry = None, None # sets base-line values to avoid errors
|
|
||||||
if argument == 'edit username' or argument == 'edit -u' or argument == 'edit password' or argument == 'edit -p' or \
|
|
||||||
argument == 'edit url' or argument == 'edit -l' or argument == 'edit note' or argument == 'edit -n':
|
|
||||||
entry_list_gen()
|
|
||||||
_entry_name = str(input('What file would you like to edit? '))
|
|
||||||
else:
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:2]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
if _entry_name.startswith('/'):
|
|
||||||
_entry_name = _entry_name.replace('/', '', 1)
|
|
||||||
if not Path(f"{directory}{_entry_name}.gpg").is_file():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({_entry_name}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}{_shm_folder}/{_shm_entry} '{directory}{_entry_name}.gpg'")
|
|
||||||
|
|
||||||
# compatibility check for GNU pass entries (ensuring they have at least four lines)
|
|
||||||
_lines = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines()
|
|
||||||
if len(_lines) < 3:
|
|
||||||
while len(_lines) < 3:
|
|
||||||
_lines.append('\n')
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(_lines)
|
|
||||||
|
|
||||||
if argument.startswith('edit username') or argument.startswith('edit -u'):
|
|
||||||
_detail = str(input('New Username: '))
|
|
||||||
replace_line(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 1, _detail + '\n')
|
|
||||||
elif argument.startswith('edit password') or argument.startswith('edit -p'):
|
|
||||||
_detail = str(input('New Password: '))
|
|
||||||
replace_line(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 0, _detail + '\n')
|
|
||||||
elif argument.startswith('edit url') or argument.startswith('edit -l'):
|
|
||||||
_detail = str(input('New URL: '))
|
|
||||||
replace_line(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 2, _detail + '\n')
|
|
||||||
elif argument.startswith('edit note') or argument.startswith('edit -n'):
|
|
||||||
edit_note(_shm_folder, _shm_entry)
|
|
||||||
remove(f"{directory}{_entry_name}.gpg")
|
|
||||||
print('\nEntry preview:')
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
encrypt(_shm_folder, _shm_entry, _entry_name)
|
|
||||||
|
|
||||||
|
|
||||||
def gen(): # generates a password for a new or an existing entry
|
|
||||||
_username, _url, _notes = None, None, None # sets base-line values to avoid errors
|
|
||||||
if argument == 'gen update' or argument == 'gen -u' or argument == 'gen':
|
|
||||||
if argument == 'gen update' or argument == 'gen -u':
|
|
||||||
entry_list_gen()
|
|
||||||
else:
|
|
||||||
print()
|
|
||||||
_entry_name = str(input('Name of service: '))
|
|
||||||
elif argument.startswith('gen update') or argument.startswith('gen -u'):
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:2]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
else:
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:1]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
if _entry_name.startswith('/'):
|
|
||||||
_entry_name = _entry_name.replace('/', '', 1)
|
|
||||||
if argument.startswith('gen update') or argument.startswith('gen -u'):
|
|
||||||
if not Path(f"{directory}{_entry_name}.gpg").is_file():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({_entry_name}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
else:
|
|
||||||
_username = str(input('Username: '))
|
|
||||||
_password = pass_gen()
|
|
||||||
if not argument.startswith('gen update') and not argument.startswith('gen -u'):
|
|
||||||
_url = str(input('URL: '))
|
|
||||||
_add_note = input('Add a note to this entry? (y/N) ')
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
if _add_note.lower() == 'y':
|
|
||||||
system(f"nano {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
|
||||||
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
|
||||||
else:
|
|
||||||
_notes = ''
|
|
||||||
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(_password + '\n' + _username + '\n' + _url + '\n'
|
|
||||||
+ _notes)
|
|
||||||
print('\nEntry preview:')
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
encrypt(_shm_folder, _shm_entry, _entry_name)
|
|
||||||
else:
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}{_shm_folder}/{_shm_entry} '{directory}{_entry_name}.gpg'")
|
|
||||||
replace_line(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 0, _password + '\n')
|
|
||||||
remove(f"{directory}{_entry_name}.gpg")
|
|
||||||
print('\nEntry preview:')
|
|
||||||
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
|
||||||
encrypt(_shm_folder, _shm_entry, _entry_name)
|
|
||||||
|
|
||||||
|
|
||||||
def copy_data(): # copies a specified field of an entry to the clipboard
|
|
||||||
if argument == 'copy username' or argument == 'copy -u' or argument == 'copy password' or argument == 'copy -p' \
|
|
||||||
or argument == 'copy url' or argument == 'copy -l' or argument == 'copy note' or argument == 'copy -n':
|
|
||||||
entry_list_gen()
|
|
||||||
_read_entry = str(input('Entry to copy: '))
|
|
||||||
else:
|
|
||||||
_read_entry = argument.split(' ')
|
|
||||||
del _read_entry[:2]
|
|
||||||
_read_entry = ' '.join(_read_entry)
|
|
||||||
if not Path(f"{directory}{_read_entry}.gpg").is_file():
|
|
||||||
print(f"\n\u001b[38;5;1mError: entry ({_read_entry}) does not exist\u001b[0m\n")
|
|
||||||
s_exit(1)
|
|
||||||
_shm_folder, _shm_entry = shm_gen()
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}{_shm_folder}/{_shm_entry} '{directory}{_read_entry}.gpg'")
|
|
||||||
_copy_line = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines()
|
|
||||||
if uname()[0] == 'Haiku': # Haiku clipboard detection
|
|
||||||
if argument.startswith('copy username') or argument.startswith('copy -u'):
|
|
||||||
system('clipboard -c ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy password') or argument.startswith('copy -p'):
|
|
||||||
system('clipboard -c ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy url') or argument.startswith('copy -l'):
|
|
||||||
system('clipboard -c ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy note') or argument.startswith('copy -n'):
|
|
||||||
system('clipboard -c ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
Popen('sleep 30; clipboard -r', shell=True)
|
|
||||||
elif Path("/data/data/com.termux").exists(): # Termux (Android) clipboard detection
|
|
||||||
if argument.startswith('copy username') or argument.startswith('copy -u'):
|
|
||||||
system('termux-clipboard-set ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy password') or argument.startswith('copy -p'):
|
|
||||||
system('termux-clipboard-set ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy url') or argument.startswith('copy -l'):
|
|
||||||
system('termux-clipboard-set ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy note') or argument.startswith('copy -n'):
|
|
||||||
system('termux-clipboard-set ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
Popen("sleep 30; termux-clipboard-set ''", shell=True)
|
|
||||||
elif environ.get('WAYLAND_DISPLAY') == 'wayland-0': # Wayland clipboard detection
|
|
||||||
if argument.startswith('copy username') or argument.startswith('copy -u'):
|
|
||||||
system('wl-copy ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy password') or argument.startswith('copy -p'):
|
|
||||||
system('wl-copy ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy url') or argument.startswith('copy -l'):
|
|
||||||
system('wl-copy ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
elif argument.startswith('copy note') or argument.startswith('copy -n'):
|
|
||||||
system('wl-copy ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
|
||||||
Popen('sleep 30; wl-copy -c', shell=True)
|
|
||||||
else: # X11 clipboard detection
|
|
||||||
if argument.startswith('copy username') or argument.startswith('copy -u'):
|
|
||||||
system('echo -n ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
|
||||||
elif argument.startswith('copy password') or argument.startswith('copy -p'):
|
|
||||||
system('echo -n ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
|
||||||
elif argument.startswith('copy url') or argument.startswith('copy -l'):
|
|
||||||
system('echo -n ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
|
||||||
elif argument.startswith('copy note') or argument.startswith('copy -n'):
|
|
||||||
system('echo -n ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
|
||||||
Popen("sleep 30; echo -n '' | xclip -sel c", shell=True)
|
|
||||||
rmtree(f"{tmp_dir}{_shm_folder}")
|
|
||||||
|
|
||||||
|
|
||||||
def remove_data(): # deletes an entry from the server and flags it for local deletion on sync
|
|
||||||
if argument == 'shear' or argument == '-rm':
|
|
||||||
entry_list_gen()
|
|
||||||
_entry_name = str(input('What would you like to delete? '))
|
|
||||||
else:
|
|
||||||
_entry_name = argument.split(' ')
|
|
||||||
del _entry_name[:1]
|
|
||||||
_entry_name = ' '.join(_entry_name)
|
|
||||||
if _entry_name.startswith('/'):
|
|
||||||
_entry_name = _entry_name.replace('/', '', 1)
|
|
||||||
try:
|
|
||||||
system(f"{gpg} -qd --output {tmp_dir}sshyp.lock {path.expanduser('~/.config/sshyp/lock.gpg')}")
|
|
||||||
_unlock = open(f"{tmp_dir}sshyp.lock", 'r').readlines()
|
|
||||||
remove(f"{tmp_dir}sshyp.lock")
|
|
||||||
except FileNotFoundError:
|
|
||||||
print('\nAccess denied.\n')
|
|
||||||
s_exit(1)
|
|
||||||
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
|
||||||
f"'import sshypRemote; sshypRemote.delete(\"'\"{_entry_name}\"'\")'\"")
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
try:
|
|
||||||
silent_sync = 0
|
|
||||||
# retrieve typed argument
|
|
||||||
argument_list, argument = argv, ''
|
|
||||||
del argument_list[0]
|
|
||||||
for _argument in argument_list:
|
|
||||||
argument += _argument + ' '
|
|
||||||
argument = argument[:-1]
|
|
||||||
if uname()[0] == 'Haiku': # set proper gpg command for OS
|
|
||||||
gpg = 'gpg --pinentry-mode loopback'
|
|
||||||
else:
|
|
||||||
gpg = 'gpg'
|
|
||||||
|
|
||||||
# import saved userdata
|
|
||||||
if argument != 'tweak':
|
|
||||||
device_type = ''
|
|
||||||
tmp_dir = path.expanduser('~/.config/sshyp/tmp/')
|
|
||||||
try:
|
|
||||||
device_type = open(path.expanduser('~/.config/sshyp/sshyp-device')).read().strip()
|
|
||||||
if device_type == 'c':
|
|
||||||
gpg_id = open(path.expanduser('~/.config/sshyp/sshyp-gpg')).read().strip()
|
|
||||||
ssh_info = sshync.get_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'))
|
|
||||||
username_ssh = ssh_info[0].replace('\n', '')
|
|
||||||
ip = ssh_info[1].replace('\n', '')
|
|
||||||
port = ssh_info[2].replace('\n', '')
|
|
||||||
directory = str(ssh_info[3].replace('\n', ''))
|
|
||||||
directory_ssh = '/home/' + username_ssh + '/.password-pasture/'
|
|
||||||
client_device_name = listdir(path.expanduser('~/.config/sshyp/devices'))[0]
|
|
||||||
except FileNotFoundError:
|
|
||||||
if device_type.lower() != 's':
|
|
||||||
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
|
||||||
print("Not all necessary configuration files are present. Please run 'sshyp tweak'!")
|
|
||||||
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
|
||||||
s_exit(1)
|
|
||||||
else:
|
|
||||||
tweak()
|
|
||||||
s_exit(0)
|
|
||||||
|
|
||||||
# run function based on argument
|
|
||||||
error = 0 # create an error flag to determine if syncing should occur at end
|
|
||||||
if argument.startswith('/'):
|
|
||||||
read_shortcut()
|
|
||||||
elif argument == '':
|
|
||||||
no_arg()
|
|
||||||
elif argument == 'help' or argument == '--help' or argument == '-h' or argument == 'license' or argument \
|
|
||||||
== 'version' or argument == '-v' or argument == 'add' or argument == 'edit' or argument == 'copy':
|
|
||||||
print_info()
|
|
||||||
elif argument.startswith('add note') or argument.startswith('add -n') or argument.startswith('add password') \
|
|
||||||
or argument.startswith('add -p'):
|
|
||||||
add_entry()
|
|
||||||
elif argument.startswith('add folder') or argument.startswith('add -f'):
|
|
||||||
add_folder()
|
|
||||||
elif argument.startswith('edit rename') or argument.startswith('edit relocate') or argument.startswith(
|
|
||||||
'edit -r'):
|
|
||||||
silent_sync = 1
|
|
||||||
rename()
|
|
||||||
elif argument.startswith('edit username') or argument.startswith('edit -u') or argument.startswith(
|
|
||||||
'edit password') \
|
|
||||||
or argument.startswith('edit -p') or argument.startswith('edit url') or argument.startswith(
|
|
||||||
'edit -l') or \
|
|
||||||
argument.startswith('edit note') or argument.startswith('edit -n'):
|
|
||||||
edit()
|
|
||||||
elif argument.startswith('gen'):
|
|
||||||
gen()
|
|
||||||
elif argument.startswith('copy username') or argument.startswith('copy -u') or argument.startswith(
|
|
||||||
'copy password') \
|
|
||||||
or argument.startswith('copy -p') or argument.startswith('copy url') or argument.startswith('copy -l') \
|
|
||||||
or argument.startswith('copy note') or argument.startswith('copy -n'):
|
|
||||||
copy_data()
|
|
||||||
elif argument.startswith('shear') or argument.startswith('-rm'):
|
|
||||||
remove_data()
|
|
||||||
elif argument == 'sync' or argument == '-s':
|
|
||||||
sync()
|
|
||||||
else:
|
|
||||||
error = 1 # set error flag to 1 to stop syncing
|
|
||||||
print("\nArgument error! Please run 'sshyp help' for a list of usable commands.\n")
|
|
||||||
s_exit(1)
|
|
||||||
|
|
||||||
# sync at end of program if any changes were made
|
|
||||||
if argument != '' and argument != 'help' and argument != '--help' and argument != '-h' and argument != \
|
|
||||||
'license' and argument != 'add' and argument != 'sync' and argument != 'edit' and not argument\
|
|
||||||
.startswith('copy username') and not argument.startswith('copy -u') and not argument\
|
|
||||||
.startswith('copy password') and not argument.startswith('copy -p') and not argument\
|
|
||||||
.startswith('copy url') and not argument.startswith('copy -l') and not argument.startswith('copy note')\
|
|
||||||
and not argument.startswith('copy -n') and argument != 'copy' and argument != 'version' and argument \
|
|
||||||
!= '-v' and error == 0 and argument.startswith('/') is False:
|
|
||||||
sync()
|
|
||||||
|
|
||||||
s_exit(0)
|
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
print('\n')
|
|
||||||
s_exit(0)
|
|
||||||
Executable
+765
@@ -0,0 +1,765 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# external modules
|
||||||
|
|
||||||
|
from os import environ, listdir, path, remove, system, uname, walk
|
||||||
|
from pathlib import Path
|
||||||
|
from random import randint, SystemRandom
|
||||||
|
from shutil import get_terminal_size, move, rmtree
|
||||||
|
import sshync
|
||||||
|
import string
|
||||||
|
from subprocess import CalledProcessError, Popen, PIPE, run
|
||||||
|
from sys import argv, exit as s_exit
|
||||||
|
from textwrap import fill
|
||||||
|
|
||||||
|
|
||||||
|
# BELOW - utility functions
|
||||||
|
|
||||||
|
def entry_list_gen(_directory=path.expanduser('~/.local/share/sshyp/')): # generates and prints full entry list
|
||||||
|
print('\n\u001b[38;5;0;48;5;15msshyp entries:\u001b[0m\n')
|
||||||
|
_entry_list, _color_alternator = [], 1
|
||||||
|
for _entry in sorted(listdir(_directory)):
|
||||||
|
if Path(f"{_directory}{_entry}").is_file():
|
||||||
|
if _color_alternator == 1:
|
||||||
|
_entry_list.append(f"{_entry.replace('.gpg', '')}")
|
||||||
|
_color_alternator = 2
|
||||||
|
else:
|
||||||
|
_entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m")
|
||||||
|
_color_alternator = 1
|
||||||
|
_real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list))
|
||||||
|
if _real <= get_terminal_size()[0]:
|
||||||
|
_width = len(' '.join(_entry_list))
|
||||||
|
else:
|
||||||
|
_width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 25)
|
||||||
|
try:
|
||||||
|
print(fill(' '.join(_entry_list), width=_width) + '\n')
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
for _root, _directories, _files in walk(_directory):
|
||||||
|
for _dir in sorted(_directories):
|
||||||
|
_inner_dir = f"{_root.replace(_directory, '')}/{_dir}"
|
||||||
|
print(f"\u001b[38;5;15;48;5;238m{_inner_dir}/\u001b[0m")
|
||||||
|
_entry_list, _color_alternator = [], 1
|
||||||
|
for _s_root, _s_directories, _s_files in walk(f"{_directory[:-1]}{_inner_dir}"):
|
||||||
|
for _entry in sorted(_s_files):
|
||||||
|
if _color_alternator == 1:
|
||||||
|
_entry_list.append(f"{_entry.replace('.gpg', '')}")
|
||||||
|
_color_alternator = 2
|
||||||
|
else:
|
||||||
|
_entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m")
|
||||||
|
_color_alternator = 1
|
||||||
|
_real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list))
|
||||||
|
if _real <= get_terminal_size()[0]:
|
||||||
|
_width = len(' '.join(_entry_list))
|
||||||
|
else:
|
||||||
|
_width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 25)
|
||||||
|
try:
|
||||||
|
print(fill(' '.join(_entry_list), width=_width) + '\n')
|
||||||
|
except ValueError:
|
||||||
|
print('\u001b[38;5;9m-empty directory-\u001b[0m\n')
|
||||||
|
|
||||||
|
|
||||||
|
def entry_reader(_decrypted_entry): # displays the contents of an entry in a readable format
|
||||||
|
_entry_lines, _notes_flag = open(_decrypted_entry, 'r').readlines(), 0
|
||||||
|
print()
|
||||||
|
for _num in range(len(_entry_lines)):
|
||||||
|
try:
|
||||||
|
if _num == 0 and _entry_lines[1] != '\n':
|
||||||
|
print(f"\u001b[38;5;15;48;5;238musername:\u001b[0m\n{_entry_lines[1].strip()}\n")
|
||||||
|
elif _num == 1 and _entry_lines[0] != '\n':
|
||||||
|
print(f"\u001b[38;5;15;48;5;238mpassword:\u001b[0m\n{_entry_lines[0].strip()}\n")
|
||||||
|
elif _num == 2 and _entry_lines[2] != '\n':
|
||||||
|
print(f"\u001b[38;5;15;48;5;238murl:\u001b[0m\n{_entry_lines[_num].strip()}\n")
|
||||||
|
elif _num >= 3 and _entry_lines[_num] != '\n' and _notes_flag != 1:
|
||||||
|
_notes_flag = 1
|
||||||
|
print(f"\u001b[38;5;15;48;5;238mnotes:\u001b[0m\n{_entry_lines[_num].strip()}")
|
||||||
|
elif _num >= 3 and _notes_flag == 1:
|
||||||
|
print(_entry_lines[_num].replace('\n', ''))
|
||||||
|
if _notes_flag == 1:
|
||||||
|
try:
|
||||||
|
_line_test = _entry_lines[_num + 1]
|
||||||
|
except IndexError:
|
||||||
|
print()
|
||||||
|
except IndexError:
|
||||||
|
if _num == 0:
|
||||||
|
print(f"\u001b[38;5;15;48;5;238mpassword:\u001b[0m\n{_entry_lines[0]}\n")
|
||||||
|
|
||||||
|
|
||||||
|
def entry_name_fetch(_entry_name_location): # fetches and returns entry name from user input or from provided argument
|
||||||
|
if type(_entry_name_location) == str:
|
||||||
|
entry_list_gen()
|
||||||
|
_entry_name = str(input(_entry_name_location))
|
||||||
|
else:
|
||||||
|
_entry_name_split = argument.split(' ')
|
||||||
|
del _entry_name_split[:_entry_name_location]
|
||||||
|
_entry_name = ' '.join(_entry_name_split)
|
||||||
|
if _entry_name.startswith('/'):
|
||||||
|
return _entry_name.replace('/', '', 1)
|
||||||
|
else:
|
||||||
|
return _entry_name
|
||||||
|
|
||||||
|
|
||||||
|
def shm_gen(_tmp_dir=path.expanduser('~/.config/sshyp/tmp/')): # creates a temporary directory for entry editing
|
||||||
|
_shm_folder_gen = ''.join(SystemRandom().choice(string.ascii_letters + string.digits)
|
||||||
|
for _ in range(randint(10, 30)))
|
||||||
|
_shm_entry_gen = ''.join(SystemRandom().choice(string.ascii_letters + string.digits)
|
||||||
|
for _ in range(randint(10, 30)))
|
||||||
|
Path(_tmp_dir + _shm_folder_gen).mkdir(0o700)
|
||||||
|
return _shm_folder_gen, _shm_entry_gen
|
||||||
|
|
||||||
|
|
||||||
|
def pass_gen(): # generates and returns a random password based on user-specified options
|
||||||
|
def _pass_gen_function(__complexity, __length):
|
||||||
|
if __complexity.lower() == 's':
|
||||||
|
__character_pool = string.ascii_letters + string.digits
|
||||||
|
else:
|
||||||
|
__character_pool = string.ascii_letters + string.digits + string.punctuation
|
||||||
|
__gen = ''.join(SystemRandom().choice(__character_pool) for _ in range(__length))
|
||||||
|
__min_special, __special = round(.2 * __length), 0
|
||||||
|
for __character in __gen:
|
||||||
|
if not __character.isalpha():
|
||||||
|
__special += 1
|
||||||
|
if __special < __min_special:
|
||||||
|
__gen = _pass_gen_function(__complexity, __length)
|
||||||
|
return __gen
|
||||||
|
try:
|
||||||
|
_length = int(input('password length: '))
|
||||||
|
except ValueError:
|
||||||
|
print(f"\n\u001b[38;5;9merror: a non-integer value was input for password length\u001b[0m\n")
|
||||||
|
_gen = pass_gen()
|
||||||
|
return _gen
|
||||||
|
if _length > 840:
|
||||||
|
_length = 840
|
||||||
|
print('\n\u001b[38;5;9mpassword length has been limited to the maximum of 840 characters\u001b[0m\n')
|
||||||
|
_complexity = str(input('password complexity - simple (for compatibility) or complex (for security)? (s/C) '))
|
||||||
|
_gen = _pass_gen_function(_complexity, _length)
|
||||||
|
return _gen
|
||||||
|
|
||||||
|
|
||||||
|
def encrypt(_entry_dir, _shm_folder, _shm_entry, _gpg_com, _gpg_id, _tmp_dir=path.expanduser('~/.config/sshyp/tmp/')):
|
||||||
|
# encrypts an entry and cleans up the temporary files
|
||||||
|
system(f"{_gpg_com} -qr {str(_gpg_id)} -e '{_tmp_dir}{_shm_folder}/{_shm_entry}'")
|
||||||
|
move(f"{_tmp_dir}{_shm_folder}/{_shm_entry}.gpg", f"{_entry_dir}.gpg")
|
||||||
|
rmtree(f"{_tmp_dir}{_shm_folder}")
|
||||||
|
|
||||||
|
|
||||||
|
def decrypt(_entry_dir, _shm_folder, _shm_entry, _gpg_command, _tmp_dir=path.expanduser('~/.config/sshyp/tmp/')):
|
||||||
|
# decrypts an entry to a temporary directory
|
||||||
|
if _shm_folder == 0 and _shm_entry == 0:
|
||||||
|
_command = f"{_gpg_command} -qd --output /dev/null {path.expanduser('~/.config/sshyp/lock.gpg')}"
|
||||||
|
else:
|
||||||
|
_command = f"{_gpg_command} -qd --output {_tmp_dir}{_shm_folder}/{_shm_entry} {_entry_dir}.gpg"
|
||||||
|
try:
|
||||||
|
run(_command, shell=True, stderr=PIPE, check=True, close_fds=True)
|
||||||
|
except CalledProcessError:
|
||||||
|
print(f"\n\u001b[38;5;9merror: could not decrypt - ensure the correct gpg key is present\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def optimized_edit(_lines, _edit_data, _edit_line): # ensures an edited entry is optimized for best compatibility
|
||||||
|
while len(_lines) < _edit_line + 1:
|
||||||
|
_lines += ['\n']
|
||||||
|
if _edit_data is not None:
|
||||||
|
_lines[_edit_line] = _edit_data.strip('\n').rstrip() + '\n'
|
||||||
|
for _num in range(len(_lines)):
|
||||||
|
if not _lines[_num].endswith('\n'):
|
||||||
|
_lines[_num] += '\n'
|
||||||
|
for _num in reversed(range(len(_lines))):
|
||||||
|
if _lines[_num] == '\n':
|
||||||
|
_lines = _lines[:-1]
|
||||||
|
elif _lines[_num].endswith('\n'):
|
||||||
|
_lines[_num] = _lines[_num].rstrip()
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
break
|
||||||
|
return _lines
|
||||||
|
|
||||||
|
|
||||||
|
def edit_note(_shm_folder, _shm_entry, _lines): # edits the note attached to an entry
|
||||||
|
_reg_lines = _lines[0:3]
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'w').writelines(_lines[3:])
|
||||||
|
system(f"{editor} {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
||||||
|
_new_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n").readlines()
|
||||||
|
while len(_reg_lines) < 3:
|
||||||
|
_reg_lines += ['\n']
|
||||||
|
_noted_lines = _reg_lines + _new_notes
|
||||||
|
return _noted_lines
|
||||||
|
|
||||||
|
|
||||||
|
def copy_name_check(_port, _username_ssh, _ip, _client_device_name):
|
||||||
|
# attempts to connect to the user's server via ssh to register the device for syncing
|
||||||
|
_command = f"ssh -o ConnectTimeout=3 -i '{path.expanduser('~/.ssh/sshyp')}' -p {_port} {_username_ssh}@{_ip} " \
|
||||||
|
f"\"touch '/home/{_username_ssh}/.config/sshyp/devices/{_client_device_name}'\""
|
||||||
|
try:
|
||||||
|
run(_command, shell=True, stderr=PIPE, check=True, close_fds=True)
|
||||||
|
except CalledProcessError:
|
||||||
|
print('\n\u001b[38;5;9mwarning: ssh connection could not be made - ensure the public key (~/.ssh/sshyp.pub) is '
|
||||||
|
'registered on the remote server and that the entered ip, port, and username are correct\n\nsyncing '
|
||||||
|
'functionality will be disabled until this is addressed\u001b[0m\n')
|
||||||
|
open(path.expanduser('~/.config/sshyp/ssh-error'), 'w').write('1')
|
||||||
|
return 1
|
||||||
|
open(path.expanduser('~/.config/sshyp/ssh-error'), 'w').write('0')
|
||||||
|
return 0
|
||||||
|
|
||||||
|
# BELOW - argument-specific functions
|
||||||
|
|
||||||
|
|
||||||
|
def tweak(): # runs configuration wizard
|
||||||
|
_divider = f"\n{'=' * (get_terminal_size()[0] - int((.5 * get_terminal_size()[0])))}\n\n"
|
||||||
|
# storage/config directory creation
|
||||||
|
Path(path.expanduser('~/.local/share/sshyp')).mkdir(0o700, parents=True, exist_ok=True)
|
||||||
|
Path(path.expanduser('~/.config/sshyp/devices')).mkdir(0o700, parents=True, exist_ok=True)
|
||||||
|
if not Path(f"{path.expanduser('~/.config/sshyp/tmp')}").exists():
|
||||||
|
if uname()[0] == 'Haiku' or uname()[0] == 'FreeBSD':
|
||||||
|
system(f"ln -s /tmp {path.expanduser('~/.config/sshyp/tmp')}")
|
||||||
|
elif Path("/data/data/com.termux").exists():
|
||||||
|
system(f"ln -s '/data/data/com.termux/files/usr/tmp' {path.expanduser('~/.config/sshyp/tmp')}")
|
||||||
|
else:
|
||||||
|
system(f"ln -s /dev/shm {path.expanduser('~/.config/sshyp/tmp')}")
|
||||||
|
# device type configuration
|
||||||
|
_device_type = input('\nclient or server installation? (C/s) ')
|
||||||
|
if _device_type.lower() == 's':
|
||||||
|
open(path.expanduser('~/.config/sshyp/sshyp-device'), 'w').write(_device_type)
|
||||||
|
Path(path.expanduser('~/.config/sshyp/deleted')).mkdir(0o700, parents=True, exist_ok=True)
|
||||||
|
print(f"\n\u001b[4;1mmake sure the ssh service is running and properly configured\u001b[0m\n"
|
||||||
|
f"{_divider}configuration complete\n")
|
||||||
|
s_exit(0)
|
||||||
|
else:
|
||||||
|
# device type configuration
|
||||||
|
_device_type = 'c' # ensure device type flag is properly set
|
||||||
|
open(path.expanduser('~/.config/sshyp/sshyp-device'), 'w').write(_device_type)
|
||||||
|
|
||||||
|
# gpg configuration
|
||||||
|
_gpg_id = input(f"{_divider}sshyp requires the use of a unique gpg key - use an (e)xisting key or (g)enerate "
|
||||||
|
f"a new one? (E/g) ")
|
||||||
|
if _gpg_id.lower() != 'g':
|
||||||
|
system(f"{gpg} -k")
|
||||||
|
_gpg_id = str(input('gpg key id: '))
|
||||||
|
else:
|
||||||
|
print('\na unique gpg key is being generated for you...')
|
||||||
|
if not Path(path.expanduser('~/.config/sshyp/gpg-gen')).is_file():
|
||||||
|
open(path.expanduser('~/.config/sshyp/gpg-gen'), 'w').writelines([
|
||||||
|
'Key-Type: 1\n', 'Key-Length: 4096\n', 'Key-Usage: sign encrypt\n', 'Name-Real: sshyp\n',
|
||||||
|
'Name-Comment: gpg-sshyp\n', 'Name-Email: https://github.com/rwinkhart/sshyp\n', 'Expire-Date: 0'])
|
||||||
|
if uname()[0] == 'Haiku':
|
||||||
|
run(gpg + ' --batch --generate-key --passphrase ' + "'" +
|
||||||
|
input('\ngpg passphrase: ') + "'" + " '" +
|
||||||
|
path.expanduser('~/.config/sshyp/gpg-gen') + "'", shell=True)
|
||||||
|
else:
|
||||||
|
run(f"{gpg} --batch --generate-key '{path.expanduser('~/.config/sshyp/gpg-gen')}'", shell=True)
|
||||||
|
remove(path.expanduser('~/.config/sshyp/gpg-gen'))
|
||||||
|
_gpg_id = run(f"{gpg} -k", shell=True, stdout=PIPE, text=True).stdout.split('\n')[-4].strip()
|
||||||
|
|
||||||
|
# lock file generation
|
||||||
|
if Path(path.expanduser('~/.config/sshyp/lock.gpg')).is_file():
|
||||||
|
remove(path.expanduser('~/.config/sshyp/lock.gpg'))
|
||||||
|
open(path.expanduser('~/.config/sshyp/lock'), 'w')
|
||||||
|
system(f"{gpg} -qr {str(_gpg_id)} -e {path.expanduser('~/.config/sshyp/lock')}")
|
||||||
|
remove(path.expanduser('~/.config/sshyp/lock'))
|
||||||
|
|
||||||
|
# ssh key configuration
|
||||||
|
_ssh_gen = (input(f"{_divider}make sure the ssh service on the remote server is running and properly "
|
||||||
|
f"configured\n\nsync support requires a unique ssh key - would you like to have this "
|
||||||
|
f"automatically generated? (Y/n) "))
|
||||||
|
if _ssh_gen.lower() != 'n':
|
||||||
|
if uname()[0] == 'Haiku':
|
||||||
|
Path(f"{path.expanduser('~')}/.ssh").mkdir(0o700, exist_ok=True)
|
||||||
|
system('ssh-keygen -t ed25519 -f ~/.ssh/sshyp')
|
||||||
|
else:
|
||||||
|
print(f"\n\u001b[4;1mensure that the key file you are using is located at "
|
||||||
|
f"{path.expanduser('~/.ssh/sshyp')}\u001b[0m")
|
||||||
|
|
||||||
|
# ssh ip+port configuration
|
||||||
|
_ip_port = str(input(f"{_divider}example input: 10.10.10.10:9999\n\nip and ssh port of the remote server: "))
|
||||||
|
_ip, _sep, _port = _ip_port.partition(':')
|
||||||
|
|
||||||
|
# ssh user configuration
|
||||||
|
_username_ssh = str(input('\nusername of the remote server: '))
|
||||||
|
|
||||||
|
# sshyp-only data storage
|
||||||
|
open(path.expanduser('~/.config/sshyp/sshyp-data'), 'w')\
|
||||||
|
.write(_gpg_id + '\n' + input(f"{_divider}example input: vim\n\npreferred text editor: "))
|
||||||
|
|
||||||
|
# sshync profile generation
|
||||||
|
sshync.make_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'),
|
||||||
|
path.expanduser('~/.local/share/sshyp/'), f"/home/{_username_ssh}/.local/share/sshyp/",
|
||||||
|
path.expanduser('~/.ssh/sshyp'), _ip, _port, _username_ssh)
|
||||||
|
|
||||||
|
# device name configuration
|
||||||
|
for _name in listdir(path.expanduser('~/.config/sshyp/devices')): # remove existing device name
|
||||||
|
remove(f"{path.expanduser('~/.config/sshyp/devices/')}{_name}")
|
||||||
|
print(f"{_divider}\u001b[4;1mimportant:\u001b[0m this name \u001b[4;1mmust\u001b[0m be unique amongst your "
|
||||||
|
f"client devices\n\nthis is used to keep track of which devices have up-to-date databases\n")
|
||||||
|
_client_device_name = str(input('device name: '))
|
||||||
|
open(f"{path.expanduser('~/.config/sshyp/devices/')}{_client_device_name}", 'w')
|
||||||
|
copy_name_check(_port, _username_ssh, _ip, _client_device_name)
|
||||||
|
|
||||||
|
print(f"{_divider}configuration complete\n")
|
||||||
|
|
||||||
|
|
||||||
|
def print_info(): # prints help text based on argument
|
||||||
|
if argument_list[1] == 'help' or argument_list[1] == '--help' or argument_list[1] == '-h':
|
||||||
|
print('\n\u001b[1msshyp copyright (c) 2021-2022 randall winkhart\u001b[0m\n')
|
||||||
|
print("this is free software, and you are welcome to redistribute it under certain conditions;\nthis program "
|
||||||
|
"comes with absolutely no warranty;\ntype `sshyp license' for details")
|
||||||
|
print('\n\u001b[1musage:\u001b[0m sshyp [option [flag] [<entry name>]] | [/<entry name>]\n')
|
||||||
|
print('\u001b[1moptions:\u001b[0m')
|
||||||
|
print('help/--help/-h bring up this menu')
|
||||||
|
print('version/-v display sshyp version info')
|
||||||
|
print('tweak configure sshyp')
|
||||||
|
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('shear/-rm delete an existing entry')
|
||||||
|
print('sync/-s manually sync the entry directory via sshync\n')
|
||||||
|
print('\u001b[1mflags:\u001b[0m')
|
||||||
|
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("\u001b[1mtip:\u001b[0m you can quickly read an entry with 'sshyp /<entry name>'")
|
||||||
|
elif argument_list[1] == 'version' or argument_list[1] == '-v':
|
||||||
|
print('\nsshyp is a simple, self-hosted, sftp-synchronized password manager\nfor unix(-like) systems (haiku/'
|
||||||
|
'freebsd/linux/termux)\n\nsshyp is a viable alternative to (and compatible with) pass/password-store\n')
|
||||||
|
print(" .. \u001b[38;5;9m♥♥ ♥♥\u001b[0m ..\n .''.''/()\\ \u001b[38;5;13m"
|
||||||
|
"♥♥♥♥♥♥♥\u001b[0m /()\\''.''.\n * : \u001b[38;5;9m♥♥♥♥♥\u001b[0m : *"
|
||||||
|
"\n `..'..' \u001b[38;5;13m♥♥♥\u001b[0m `..'..'\n // \\\\ "
|
||||||
|
"\u001b[38;5;9m♥\u001b[0m // \\\\")
|
||||||
|
print('\u001b[38;5;7;48;5;8m<><><><><><><><><><><><><><><><><><><><><><><><><><><><>\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m '
|
||||||
|
'\u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m \u001b[38;5;15;48;5;8msshyp copyright (c) 2021-2022 '
|
||||||
|
'randall winkhart\u001b[38;5;15;48;5;15m \u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m '
|
||||||
|
'\u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m \u001b[38;5;15;48;5;8mversion 1.1.2'
|
||||||
|
'\u001b[38;5;15;48;5;15m \u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m \u001b[38;5;15;48;5;8mthe sheecrets '
|
||||||
|
'update\u001b[38;5;15;48;5;15m \u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m/\u001b[38;5;15;48;5;15m '
|
||||||
|
'\u001b[38;5;7;48;5;8m/\u001b[0m')
|
||||||
|
print('\u001b[38;5;7;48;5;8m<><><><><><><><><><><><><><><><><><><><><><><><><><><><>\u001b[0m\n')
|
||||||
|
print('see https://github.com/rwinkhart/sshyp for more information\n')
|
||||||
|
elif argument_list[1] == 'license':
|
||||||
|
print('\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU '
|
||||||
|
'General\nPublic License as published by the Free Software Foundation, either version 3 of the License,'
|
||||||
|
'\nor (at your option) any later version.\n\nThis program is distributed in the hope that it will be '
|
||||||
|
'useful, but WITHOUT ANY WARRANTY;\nwithout even the implied warranty of MERCHANTABILITY or FITNESS FOR A'
|
||||||
|
' PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.'
|
||||||
|
'\n\nhttps://opensource.org/licenses/GPL-3.0\n')
|
||||||
|
elif argument_list[1] == 'add':
|
||||||
|
print('\n\u001b[1musage:\u001b[0m sshyp add [flag [<entry name>]]\u001b[0m\n')
|
||||||
|
print('\u001b[1mflags:\u001b[0m')
|
||||||
|
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')
|
||||||
|
elif argument_list[1] == 'edit':
|
||||||
|
print('\n\u001b[1musage:\u001b[0m sshyp edit [flag [<entry name>]]\u001b[0m\n')
|
||||||
|
print('\u001b[1mflags:\u001b[0m')
|
||||||
|
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')
|
||||||
|
elif argument_list[1] == 'copy':
|
||||||
|
print('\n\u001b[1musage:\u001b[0m sshyp copy [flag [<entry name>]]\u001b[0m\n')
|
||||||
|
print('\u001b[1mflags:\u001b[0m')
|
||||||
|
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')
|
||||||
|
|
||||||
|
|
||||||
|
def no_arg(): # displays a list of entries and gives an option to select one for viewing
|
||||||
|
print("\nfor a list of usable commands, run 'sshyp help'")
|
||||||
|
_entry_name = entry_name_fetch('entry to read: ')
|
||||||
|
if not Path(f"{directory}{_entry_name}.gpg").exists():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
decrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg)
|
||||||
|
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
||||||
|
rmtree(f"{tmp_dir}{_shm_folder}")
|
||||||
|
|
||||||
|
|
||||||
|
def read_shortcut(): # shortcut to quickly read an entry
|
||||||
|
if not Path(f"{directory}{argument.replace('/', '', 1)}.gpg").exists():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({argument.replace('/', '', 1)}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
decrypt(directory + argument.replace('/', '', 1), _shm_folder, _shm_entry, gpg)
|
||||||
|
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
||||||
|
rmtree(f"{tmp_dir}{_shm_folder}")
|
||||||
|
|
||||||
|
|
||||||
|
def sync(): # calls sshync to sync changes to the user's server
|
||||||
|
print('\nsyncing entries with the server device...\n')
|
||||||
|
# check for deletions
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
||||||
|
f"'import sshypRemote; sshypRemote.deletion_check(\"'\"{client_device_name}\"'\")'\"")
|
||||||
|
system(f"scp -pqs -P {port} -i '{path.expanduser('~/.ssh/sshyp')}' {username_ssh}@{ip}:'/home/{username_ssh}"
|
||||||
|
f"/.config/sshyp/deletion_database' {path.expanduser('~/.config/sshyp/')}")
|
||||||
|
try:
|
||||||
|
_deletion_database = open(path.expanduser('~/.config/sshyp/deletion_database')).readlines()
|
||||||
|
except (FileNotFoundError, IndexError):
|
||||||
|
print('\n\u001b[38;5;9merror: the deletion database does not exist or is corrupted\u001b[0m\n')
|
||||||
|
_deletion_database = None
|
||||||
|
s_exit(1)
|
||||||
|
for _file in _deletion_database:
|
||||||
|
try:
|
||||||
|
if silent_sync != 1:
|
||||||
|
print(f"\u001b[38;5;208m{_file[:-1]}\u001b[0m has been sheared, removing...")
|
||||||
|
if _file[:-1].endswith('/'):
|
||||||
|
rmtree(f"{directory}{_file[:-1]}")
|
||||||
|
else:
|
||||||
|
remove(f"{directory}{_file[:-1]}.gpg")
|
||||||
|
except FileNotFoundError:
|
||||||
|
if silent_sync != 1:
|
||||||
|
print('location does not exist locally')
|
||||||
|
# check for new folders
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
||||||
|
f"'import sshypRemote; sshypRemote.folder_check()'\"")
|
||||||
|
system(f"scp -pqs -P {port} -i '{path.expanduser('~/.ssh/sshyp')}' {username_ssh}@{ip}:'/home/{username_ssh}"
|
||||||
|
f"/.config/sshyp/folder_database' {path.expanduser('~/.config/sshyp/')}")
|
||||||
|
try:
|
||||||
|
_folder_database = open(path.expanduser('~/.config/sshyp/folder_database')).readlines()
|
||||||
|
except (FileNotFoundError, IndexError):
|
||||||
|
print('\n\u001b[38;5;9merror: the folder database does not exist or is corrupted\u001b[0m\n')
|
||||||
|
_folder_database = None
|
||||||
|
s_exit(1)
|
||||||
|
for _folder in _folder_database:
|
||||||
|
if Path(f"{path.expanduser('~')}{_folder[:-1]}").is_dir():
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
print(f"\u001b[38;5;2m{_folder.replace('/.local/share/sshyp/', '')[:-1]}/\u001b[0m does not exist locally, "
|
||||||
|
f"creating...")
|
||||||
|
Path(f"{path.expanduser('~')}{_folder[:-1]}").mkdir(0o700, parents=True, exist_ok=True)
|
||||||
|
# set permissions before uploading
|
||||||
|
system('find ' + directory + ' -type d -exec chmod -R 700 {} +')
|
||||||
|
system('find ' + directory + ' -type f -exec chmod -R 600 {} +')
|
||||||
|
sshync.run_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'))
|
||||||
|
|
||||||
|
|
||||||
|
def add_entry(): # adds a new entry
|
||||||
|
_shm_folder, _shm_entry = None, None # sets base-line values to avoid errors
|
||||||
|
if len(argument_list) < 4:
|
||||||
|
_entry_name = entry_name_fetch('name of new entry: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
if Path(f"{directory}{_entry_name}.gpg").is_file():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) already exists\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
if argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
system(f"{editor} {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
||||||
|
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(optimized_edit(['', '', '', _notes], None, -1))
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
_username = str(input('username: '))
|
||||||
|
_password = str(input('password: '))
|
||||||
|
_url = str(input('url: '))
|
||||||
|
_add_note = input('add a note to this entry? (y/N) ')
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
if _add_note.lower() == 'y':
|
||||||
|
system(f"{editor} {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
||||||
|
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
||||||
|
else:
|
||||||
|
_notes = ''
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w')\
|
||||||
|
.writelines(optimized_edit([_password, _username, _url, _notes], None, -1))
|
||||||
|
print('\n\u001b[1mentry preview:\u001b[0m')
|
||||||
|
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
||||||
|
encrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg, gpg_id)
|
||||||
|
|
||||||
|
|
||||||
|
def add_folder(): # creates a new folder
|
||||||
|
if len(argument_list) < 4:
|
||||||
|
_entry_name = entry_name_fetch('name of new folder: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
Path(directory + _entry_name).mkdir(0o700)
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"mkdir -p '{directory_ssh}"
|
||||||
|
f"{_entry_name}'\"")
|
||||||
|
|
||||||
|
|
||||||
|
def rename(): # renames an entry or folder
|
||||||
|
if argument == 'edit rename' or argument == 'edit relocate' or argument == 'edit -r':
|
||||||
|
_entry_name = entry_name_fetch('entry/folder to rename/relocate: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
if not Path(f"{directory}{_entry_name}.gpg").is_file() and not Path(f"{directory}{_entry_name}").is_dir():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_new_name = entry_name_fetch('new name: ')
|
||||||
|
if Path(f"{directory}{_new_name}.gpg").is_file() or Path(f"{directory}{_new_name}").is_dir():
|
||||||
|
print(f"\n\u001b[38;5;9merror: ({_new_name}) already exists\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
if _entry_name.endswith('/'):
|
||||||
|
move(f"{directory}{_entry_name}", f"{directory}{_new_name}")
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"mkdir -p '{directory_ssh}"
|
||||||
|
f"{_new_name}'\"")
|
||||||
|
else:
|
||||||
|
move(f"{directory}{_entry_name}.gpg", f"{directory}{_new_name}.gpg")
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
||||||
|
f"'import sshypRemote; sshypRemote.delete(\"'\"{_entry_name}\"'\")'\"")
|
||||||
|
|
||||||
|
|
||||||
|
def edit(): # edits the contents of an entry
|
||||||
|
_shm_folder, _shm_entry, _detail, _edit_line = None, None, None, None # sets values to avoid PEP8 warnings
|
||||||
|
if len(argument_list) < 4:
|
||||||
|
_entry_name = entry_name_fetch('entry to edit: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
if not Path(f"{directory}{_entry_name}.gpg").is_file():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
decrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg)
|
||||||
|
if argument_list[2] == 'username' or argument_list[2] == '-u':
|
||||||
|
_detail, _edit_line = str(input('username: ')), 1
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
_detail, _edit_line = str(input('password: ')), 0
|
||||||
|
elif argument_list[2] == 'url' or argument_list[2] == '-l':
|
||||||
|
_detail, _edit_line = str(input('url: ')), 2
|
||||||
|
if argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
_edit_line = 2
|
||||||
|
_new_lines = optimized_edit(edit_note(_shm_folder, _shm_entry,
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines()), None, -1)
|
||||||
|
else:
|
||||||
|
_new_lines = optimized_edit(open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines(), _detail, _edit_line)
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(_new_lines)
|
||||||
|
remove(f"{directory}{_entry_name}.gpg")
|
||||||
|
print('\n\u001b[1mentry preview:\u001b[0m')
|
||||||
|
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
||||||
|
encrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg, gpg_id)
|
||||||
|
|
||||||
|
|
||||||
|
def gen(): # generates a password for a new or an existing entry
|
||||||
|
_username, _url, _notes = None, None, None # sets base-line values to avoid errors
|
||||||
|
if argument == 'gen update' or argument == 'gen -u' or argument == 'gen':
|
||||||
|
_entry_name = entry_name_fetch('name of entry: ')
|
||||||
|
elif argument_list[2] == 'update' or argument_list[2] == '-u':
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
if not Path(f"{directory}{_entry_name}.gpg").is_file():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(1)
|
||||||
|
if len(argument_list) == 2 or (not argument_list[2] == 'update' and not argument_list[2] == '-u'):
|
||||||
|
if Path(f"{directory}{_entry_name}.gpg").is_file():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) already exists\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_username = str(input('username: '))
|
||||||
|
_password = pass_gen()
|
||||||
|
_url = str(input('url: '))
|
||||||
|
_add_note = input('add a note to this entry? (y/N) ')
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
if _add_note.lower() == 'y':
|
||||||
|
system(f"{editor} {tmp_dir}{_shm_folder}/{_shm_entry}-n")
|
||||||
|
_notes = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}-n", 'r').read()
|
||||||
|
else:
|
||||||
|
_notes = ''
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w')\
|
||||||
|
.writelines(optimized_edit([_password, _username, _url, _notes], None, -1))
|
||||||
|
else:
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
decrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg)
|
||||||
|
_new_lines = optimized_edit(open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines(), pass_gen(), 0)
|
||||||
|
open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'w').writelines(_new_lines)
|
||||||
|
remove(f"{directory}{_entry_name}.gpg")
|
||||||
|
print('\n\u001b[1mentry preview:\u001b[0m')
|
||||||
|
entry_reader(f"{tmp_dir}{_shm_folder}/{_shm_entry}")
|
||||||
|
encrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg, gpg_id)
|
||||||
|
|
||||||
|
|
||||||
|
def copy_data(): # copies a specified field of an entry to the clipboard
|
||||||
|
if len(argument_list) < 4:
|
||||||
|
_entry_name = entry_name_fetch('entry to copy: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(2)
|
||||||
|
if not Path(f"{directory}{_entry_name}.gpg").is_file():
|
||||||
|
print(f"\n\u001b[38;5;9merror: entry ({_entry_name}) does not exist\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
_shm_folder, _shm_entry = shm_gen()
|
||||||
|
decrypt(directory + _entry_name, _shm_folder, _shm_entry, gpg)
|
||||||
|
_copy_line = open(f"{tmp_dir}{_shm_folder}/{_shm_entry}", 'r').readlines()
|
||||||
|
if uname()[0] == 'Haiku': # Haiku clipboard detection
|
||||||
|
if argument_list[2] == 'username' or argument_list[2] == '-u':
|
||||||
|
system('clipboard -c ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
system('clipboard -c ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'url' or argument_list[2] == '-l':
|
||||||
|
system('clipboard -c ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
system('clipboard -c ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
Popen('sleep 30; clipboard -r', shell=True, close_fds=True)
|
||||||
|
elif Path("/data/data/com.termux").exists(): # Termux (Android) clipboard detection
|
||||||
|
if argument_list[2] == 'username' or argument_list[2] == '-u':
|
||||||
|
system('termux-clipboard-set ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
system('termux-clipboard-set ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'url' or argument_list[2] == '-l':
|
||||||
|
system('termux-clipboard-set ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
system('termux-clipboard-set ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
Popen("sleep 30; termux-clipboard-set ''", shell=True, close_fds=True)
|
||||||
|
elif environ.get('WAYLAND_DISPLAY') == 'wayland-0': # Wayland clipboard detection
|
||||||
|
if argument_list[2] == 'username' or argument_list[2] == '-u':
|
||||||
|
system('wl-copy ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
system('wl-copy ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'url' or argument_list[2] == '-l':
|
||||||
|
system('wl-copy ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
elif argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
system('wl-copy ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'")
|
||||||
|
Popen('sleep 30; wl-copy -c', shell=True, close_fds=True)
|
||||||
|
else: # X11 clipboard detection
|
||||||
|
if argument_list[2] == 'username' or argument_list[2] == '-u':
|
||||||
|
system('echo -n ' + "'" + _copy_line[1].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
||||||
|
elif argument_list[2] == 'password' or argument_list[2] == '-p':
|
||||||
|
system('echo -n ' + "'" + _copy_line[0].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
||||||
|
elif argument_list[2] == 'url' or argument_list[2] == '-l':
|
||||||
|
system('echo -n ' + "'" + _copy_line[2].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
||||||
|
elif argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
system('echo -n ' + "'" + _copy_line[3].replace('\n', '').replace("'", "'\\''") + "'" + ' | xclip -sel c')
|
||||||
|
Popen("sleep 30; echo -n '' | xclip -sel c", shell=True, close_fds=True)
|
||||||
|
rmtree(f"{tmp_dir}{_shm_folder}")
|
||||||
|
|
||||||
|
|
||||||
|
def remove_data(): # deletes an entry from the server and flags it for local deletion on sync
|
||||||
|
if argument == 'shear' or argument == '-rm':
|
||||||
|
_entry_name = entry_name_fetch('entry/folder to shear: ')
|
||||||
|
else:
|
||||||
|
_entry_name = entry_name_fetch(1)
|
||||||
|
decrypt(path.expanduser('~/.config/sshyp/lock.gpg'), 0, 0, gpg)
|
||||||
|
system(f"ssh -i '{path.expanduser('~/.ssh/sshyp')}' -p {port} {username_ssh}@{ip} \"cd /bin; python -c "
|
||||||
|
f"'import sshypRemote; sshypRemote.delete(\"'\"{_entry_name}\"'\")'\"")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
try:
|
||||||
|
silent_sync, ssh_error = 0, 0
|
||||||
|
# retrieve typed argument
|
||||||
|
argument_list = argv
|
||||||
|
argument = ' '.join(argument_list[1:])
|
||||||
|
if uname()[0] == 'Haiku': # set proper gpg command for OS
|
||||||
|
gpg = 'gpg --pinentry-mode loopback'
|
||||||
|
else:
|
||||||
|
gpg = 'gpg'
|
||||||
|
|
||||||
|
# import saved userdata
|
||||||
|
if argument != 'tweak':
|
||||||
|
device_type = ''
|
||||||
|
tmp_dir = path.expanduser('~/.config/sshyp/tmp/')
|
||||||
|
try:
|
||||||
|
device_type = open(path.expanduser('~/.config/sshyp/sshyp-device')).read().strip()
|
||||||
|
if device_type == 'c':
|
||||||
|
ssh_info = sshync.get_profile(path.expanduser('~/.config/sshyp/sshyp.sshync'))
|
||||||
|
username_ssh = ssh_info[0].replace('\n', '')
|
||||||
|
ip = ssh_info[1].replace('\n', '')
|
||||||
|
port = ssh_info[2].replace('\n', '')
|
||||||
|
directory = str(ssh_info[3].replace('\n', ''))
|
||||||
|
directory_ssh = str(ssh_info[4].replace('\n', ''))
|
||||||
|
client_device_name = listdir(path.expanduser('~/.config/sshyp/devices'))[0]
|
||||||
|
sshyp_data = open(path.expanduser('~/.config/sshyp/sshyp-data')).readlines()
|
||||||
|
gpg_id = sshyp_data[0].replace('\n', '')
|
||||||
|
editor = sshyp_data[1].replace('\n', '')
|
||||||
|
ssh_error = int(open(path.expanduser('~/.config/sshyp/ssh-error')).read().strip())
|
||||||
|
if ssh_error != 0:
|
||||||
|
ssh_error = copy_name_check(port, username_ssh, ip, client_device_name)
|
||||||
|
else:
|
||||||
|
print('running as server, option disabled')
|
||||||
|
s_exit(0)
|
||||||
|
except (FileNotFoundError, IndexError):
|
||||||
|
if device_type.lower() != 's':
|
||||||
|
print('\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
|
||||||
|
print("not all necessary configuration files are present - please run 'sshyp tweak'")
|
||||||
|
print('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n')
|
||||||
|
s_exit(1)
|
||||||
|
else:
|
||||||
|
tweak()
|
||||||
|
s_exit(0)
|
||||||
|
|
||||||
|
# run function based on arguments
|
||||||
|
if argument.startswith('/'):
|
||||||
|
read_shortcut()
|
||||||
|
elif argument == '':
|
||||||
|
no_arg()
|
||||||
|
elif argument == 'help' or argument == '--help' or argument == '-h' or argument == 'license' or argument \
|
||||||
|
== 'version' or argument == '-v':
|
||||||
|
print_info()
|
||||||
|
elif argument_list[1] == 'add':
|
||||||
|
if len(argument_list) == 2:
|
||||||
|
print_info()
|
||||||
|
elif argument_list[2] == 'note' or argument_list[2] == '-n' or argument_list[2] == 'password' or \
|
||||||
|
argument_list[2] == '-p':
|
||||||
|
add_entry()
|
||||||
|
elif argument_list[2] == 'folder' or argument_list[2] == '-f':
|
||||||
|
add_folder()
|
||||||
|
else:
|
||||||
|
print_info()
|
||||||
|
s_exit(0)
|
||||||
|
elif argument_list[1] == 'edit':
|
||||||
|
if len(argument_list) == 2:
|
||||||
|
print_info()
|
||||||
|
elif argument_list[2] == 'rename' or argument_list[2] == 'relocate' or argument_list[2] == '-r':
|
||||||
|
silent_sync = 1
|
||||||
|
rename()
|
||||||
|
elif argument_list[2] == 'username' or argument_list[2] == '-u' or argument_list[2] == 'password' or \
|
||||||
|
argument_list[2] == '-p' or argument_list[2] == 'url' or argument_list[2] == '-l' or \
|
||||||
|
argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
edit()
|
||||||
|
else:
|
||||||
|
print_info()
|
||||||
|
s_exit(0)
|
||||||
|
elif argument_list[1] == 'gen':
|
||||||
|
gen()
|
||||||
|
elif argument_list[1] == 'copy':
|
||||||
|
if len(argument_list) == 2:
|
||||||
|
print_info()
|
||||||
|
elif argument_list[2] == 'username' or argument_list[2] == '-u' or argument_list[2] == 'password' or \
|
||||||
|
argument_list[2] == '-p' or argument_list[2] == 'url' or argument_list[2] == '-l' or \
|
||||||
|
argument_list[2] == 'note' or argument_list[2] == '-n':
|
||||||
|
try:
|
||||||
|
copy_data()
|
||||||
|
except IndexError:
|
||||||
|
print(f"\n\u001b[38;5;9merror: field does not exist in entry\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
else:
|
||||||
|
print_info()
|
||||||
|
elif argument_list[1] == 'shear' or argument_list[1] == '-rm':
|
||||||
|
remove_data()
|
||||||
|
elif argument_list[1] != 'sync' and argument_list[1] != '-s':
|
||||||
|
print(f"\n\u001b[38;5;9merror: invalid argument - run 'sshyp help' to list usable commands\u001b[0m\n")
|
||||||
|
s_exit(1)
|
||||||
|
|
||||||
|
# sync if any changes were made
|
||||||
|
if len(argument_list) > 1 and ssh_error == 0 and \
|
||||||
|
((argument_list[1] == 'sync' or argument_list[1] == '-s' or argument_list[1] == 'gen' or
|
||||||
|
argument_list[1] == 'shear' or argument_list[1] == '-rm') or ((argument_list[1] == 'add'
|
||||||
|
or argument_list[1] == 'edit')
|
||||||
|
and len(argument_list) > 2)):
|
||||||
|
sync()
|
||||||
|
|
||||||
|
s_exit(0)
|
||||||
|
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('\n')
|
||||||
|
s_exit(0)
|
||||||
+12
-15
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
# external modules
|
# external modules
|
||||||
|
|
||||||
@@ -9,22 +9,19 @@ from shutil import rmtree
|
|||||||
|
|
||||||
# utility functions
|
# utility functions
|
||||||
|
|
||||||
def delete(_file_path):
|
def delete(_file_path): # deletes an entry or folder, should be run remotely via ssh
|
||||||
if _file_path.endswith('/'):
|
try:
|
||||||
try:
|
if _file_path.endswith('/'):
|
||||||
rmtree(f"{expanduser('~/.password-pasture/')}{_file_path}")
|
rmtree(f"{expanduser('~/.local/share/sshyp/')}{_file_path}")
|
||||||
except FileNotFoundError:
|
else:
|
||||||
print('Folder does not exist remotely.')
|
remove(f"{expanduser('~/.local/share/sshyp/')}{_file_path}.gpg")
|
||||||
else:
|
except FileNotFoundError:
|
||||||
try:
|
print('location does not exist remotely')
|
||||||
remove(f"{expanduser('~/.password-pasture/')}{_file_path}.gpg")
|
|
||||||
except FileNotFoundError:
|
|
||||||
print('File does not exist remotely.')
|
|
||||||
for _device_name in listdir(expanduser('~/.config/sshyp/devices')):
|
for _device_name in listdir(expanduser('~/.config/sshyp/devices')):
|
||||||
open(f"{expanduser('~/.config/sshyp/deleted/')}{_file_path.replace('/', '@')}^&*{_device_name}", 'w')
|
open(f"{expanduser('~/.config/sshyp/deleted/')}{_file_path.replace('/', '@')}^&*{_device_name}", 'w')
|
||||||
|
|
||||||
|
|
||||||
def deletion_check(_client_device_name):
|
def deletion_check(_client_device_name): # creates a list of entries and folders to be deleted from a local machine
|
||||||
open(expanduser('~/.config/sshyp/deletion_database'), 'w').write('')
|
open(expanduser('~/.config/sshyp/deletion_database'), 'w').write('')
|
||||||
for _file in listdir(expanduser('~/.config/sshyp/deleted')):
|
for _file in listdir(expanduser('~/.config/sshyp/deleted')):
|
||||||
_file_path = _file.replace('@', '/').split('^&*')[0]
|
_file_path = _file.replace('@', '/').split('^&*')[0]
|
||||||
@@ -37,9 +34,9 @@ def deletion_check(_client_device_name):
|
|||||||
open(expanduser('~/.config/sshyp/deletion_database'), 'a').write(_file_path + '\n')
|
open(expanduser('~/.config/sshyp/deletion_database'), 'a').write(_file_path + '\n')
|
||||||
|
|
||||||
|
|
||||||
def folder_check():
|
def folder_check(): # creates a list of folders to be compared with those of a local machine
|
||||||
open(expanduser('~/.config/sshyp/folder_database'), 'w').write('')
|
open(expanduser('~/.config/sshyp/folder_database'), 'w').write('')
|
||||||
for _root, _directories, _files in walk(expanduser('~/.password-pasture')):
|
for _root, _directories, _files in walk(expanduser('~/.local/share/sshyp')):
|
||||||
for _dir in _directories:
|
for _dir in _directories:
|
||||||
open(expanduser('~/.config/sshyp/folder_database'), 'a')\
|
open(expanduser('~/.config/sshyp/folder_database'), 'a')\
|
||||||
.write(f"{_root.replace(expanduser('~'), '')}/{_dir}\n")
|
.write(f"{_root.replace(expanduser('~'), '')}/{_dir}\n")
|
||||||
|
|||||||
+269
-135
@@ -1,3 +1,139 @@
|
|||||||
|
sshyp v1.1.2
|
||||||
|
|
||||||
|
the sheecrets update - patch two
|
||||||
|
|
||||||
|
this is a general polish/bugfix release
|
||||||
|
|
||||||
|
user-facing features:
|
||||||
|
|
||||||
|
- packaging support for Alpine Linux/postmarketOS
|
||||||
|
- the rename() function is no longer unnecessarily verbose
|
||||||
|
- handled exception for when the user attempts to copy an entry field that does not exist
|
||||||
|
|
||||||
|
fixes/optimizations:
|
||||||
|
|
||||||
|
- replaced shebang with "#!/usr/bin/env python3" for improved compatibility with various systems
|
||||||
|
^ does not affect Haiku packaging
|
||||||
|
- fixed the generic package not actually being compressed
|
||||||
|
- reduced lines of code used for cross-device entry deletion
|
||||||
|
|
||||||
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
|
sshyp v1.1.1
|
||||||
|
|
||||||
|
the sheecrets update - patch one
|
||||||
|
|
||||||
|
this is a polish/bug fix release that makes tweaks to the entry format (without breaking compatibility)
|
||||||
|
|
||||||
|
compatibility-breaking changes:
|
||||||
|
|
||||||
|
- none; the entry format tweaks are backward compatible with sshyp v1.0.0+
|
||||||
|
^ the new format is slightly more efficient in terms of storage space
|
||||||
|
^ if you would like to upgrade to it, run this script (after updating to v1.1.1):
|
||||||
|
https://raw.githubusercontent.com/rwinkhart/sshyp-labs/main/extra/conversion-scripts/sshyp-refresh-1.1.1%2B.py
|
||||||
|
|
||||||
|
user-facing features:
|
||||||
|
|
||||||
|
- entries (when editing or adding) are now run through the new optimized_edit() function to strip trailing new lines
|
||||||
|
and ensure the format of the entries is fully compatible with all of sshyp's functions
|
||||||
|
|
||||||
|
fixes:
|
||||||
|
|
||||||
|
- when adding a note to an entry, there is no longer a chance the first note line will be added as a url
|
||||||
|
if the entry is using an older format/pass format
|
||||||
|
- the gpg auto-generation file temporarily created by sshyp no longer includes extra spaces
|
||||||
|
^ seems to serve no functional purpose - fixed for the sake of polish
|
||||||
|
|
||||||
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
|
sshyp v1.1.0
|
||||||
|
|
||||||
|
the sheecrets update
|
||||||
|
|
||||||
|
the main focus of this release was adding extension support (particularly for sshyp-mfa)
|
||||||
|
and cleaning up the configuration experience
|
||||||
|
|
||||||
|
compatibility-breaking changes:
|
||||||
|
|
||||||
|
- the entry directory has been moved from ~/.password-pasture to ~/.local/share/sshyp
|
||||||
|
as a means of complying with the XDG base directory spec
|
||||||
|
^ this requires the user to move their entry directory to the new location manually
|
||||||
|
^ if this is not done, sshyp will not be able to find entries made prior to v1.1.0
|
||||||
|
- due to a new configuration option (preferred text editor), 'sshyp tweak' must be run after updating
|
||||||
|
|
||||||
|
user-facing features:
|
||||||
|
|
||||||
|
- extension support
|
||||||
|
^ some of sshyp's critical functions can now be imported into other programs to extend
|
||||||
|
upon sshyp's functionality
|
||||||
|
^ the first usecase of this is sshyp-mfa, which can be found at https://github.com/rwinkhart/sshyp-labs
|
||||||
|
- a new configuration experience
|
||||||
|
^ the 'sshyp tweak' menu has been made much more readable, and now the automatically generated
|
||||||
|
gpg key has its id automatically input, making the process easier for the user
|
||||||
|
- customizable text editor
|
||||||
|
^ the text editor used for editing notes can now be set to any editor preferred by the user
|
||||||
|
^ this means that nano was dropped as a dependency
|
||||||
|
|
||||||
|
fixes:
|
||||||
|
|
||||||
|
- to avoid exceptions on server devices, all arguments (apart from 'tweak') have been disabled on servers
|
||||||
|
- fixed entry readout not printing blank lines between fields under certain conditions
|
||||||
|
- various optimizations
|
||||||
|
|
||||||
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
|
sshyp v1.0.1
|
||||||
|
|
||||||
|
The Polished Trotters Update - Patch 1
|
||||||
|
|
||||||
|
This is a hotfix for the Haiku decryption bug.
|
||||||
|
|
||||||
|
Changes:
|
||||||
|
|
||||||
|
- subprocess.Popen has been replaced with subprocess.run where applicable
|
||||||
|
- stdout is no longer captured with any subprocess.Popen or subprocess.run usages
|
||||||
|
^ this fixes decryption on Haiku
|
||||||
|
|
||||||
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
|
sshyp v1.0.0
|
||||||
|
|
||||||
|
The Polished Trotters Update
|
||||||
|
|
||||||
|
This release brings 'sshyp' in line with the original goals of the project.
|
||||||
|
As such, it is being crowned "v1.0.0", and is considered a stable base for future expansions.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
- sshyp has been modified to run on Haiku, an open-source re-implementation of BeOS
|
||||||
|
^ new package formats have been added for Haiku, FreeBSD, and Fedora Linux
|
||||||
|
- the entry format has been changed to support entries created in pass/password-store
|
||||||
|
^ this change requires existing entry libraries to be converted - see the sshyp v1.0.0 release page on GitHub for a conversion script
|
||||||
|
- majorly overhauled visual experience for sshyp
|
||||||
|
^ this includes a new entry list, a new entry readout, colored output, ascii art, and more!
|
||||||
|
- entries can now optionally be passed as arguments, directly
|
||||||
|
^ as opposed to the user being prompted for an entry name after running a command
|
||||||
|
|
||||||
|
Changes:
|
||||||
|
|
||||||
|
- corrected outdated licensing and copyright information
|
||||||
|
- 'if __name__=="__main__":' convention is now used
|
||||||
|
- help screens have been overhauled
|
||||||
|
- improved password generator to guarantee more secure results
|
||||||
|
- fixed errors when trying to sync with a multi-word entry on the server
|
||||||
|
- sshync now uses 'scp' (via the sftp protocol), rather than 'sftp'
|
||||||
|
- rename function now properly allows for renaming folders
|
||||||
|
- renaming an entry/folder will now properly delete the old entry/folder from the server
|
||||||
|
- entry previews at the time of entry creation/editing no longer require entering the gpg password more times than necessary
|
||||||
|
- entries will no longer be overwritten if attempting to create a new entry that uses an already existing name
|
||||||
|
- the clipboard now automatically clears after 30 seconds
|
||||||
|
- sshyp server no longer needs to create copies of its libraries in ~/
|
||||||
|
- added more and improved existing exceptions
|
||||||
|
- the lock file is now decrypted to /dev/null
|
||||||
|
- ...and lots of minor (under the hood) changes!
|
||||||
|
|
||||||
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
sshyp 2022.02.16.fr4.7
|
sshyp 2022.02.16.fr4.7
|
||||||
|
|
||||||
The High-Tech Shears Update - Patch 7
|
The High-Tech Shears Update - Patch 7
|
||||||
@@ -17,28 +153,28 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -59,29 +195,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -102,29 +238,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -149,29 +285,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -192,29 +328,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -236,29 +372,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -280,29 +416,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -331,29 +467,29 @@ Changes:
|
|||||||
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
Planned for next major update (fr5, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr6, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -374,30 +510,30 @@ Changes:
|
|||||||
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** allow for multi-client deletion... somehow (in sshync)
|
- allow for multi-client deletion... somehow (in sshync)
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -418,39 +554,39 @@ Changes:
|
|||||||
|
|
||||||
Additions planned for minor releases:
|
Additions planned for minor releases:
|
||||||
|
|
||||||
** updated the manpage with more information regarding how sshyp works and how to set it up
|
- updated the manpage with more information regarding how sshyp works and how to set it up
|
||||||
** ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
- ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
||||||
** reduced total lines of code with small optimizations
|
- reduced total lines of code with small optimizations
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** allow for multi-client deletion... somehow (in sshync)
|
- allow for multi-client deletion... somehow (in sshync)
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -468,39 +604,39 @@ Changes:
|
|||||||
|
|
||||||
Additions planned for minor releases:
|
Additions planned for minor releases:
|
||||||
|
|
||||||
** updated the manpage with more information regarding how sshyp works and how to set it up
|
- updated the manpage with more information regarding how sshyp works and how to set it up
|
||||||
** ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
- ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
||||||
** reduced total lines of code with small optimizations
|
- reduced total lines of code with small optimizations
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** allow for multi-client deletion... somehow (in sshync)
|
- allow for multi-client deletion... somehow (in sshync)
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -519,39 +655,39 @@ Changes:
|
|||||||
|
|
||||||
Additions planned for minor releases:
|
Additions planned for minor releases:
|
||||||
|
|
||||||
** updated the manpage with more information regarding how sshyp works and how to set it up
|
- updated the manpage with more information regarding how sshyp works and how to set it up
|
||||||
** ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
- ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
||||||
** reduced total lines of code with small optimizations
|
- reduced total lines of code with small optimizations
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** allow for multi-client deletion... somehow (in sshync)
|
- allow for multi-client deletion... somehow (in sshync)
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -574,39 +710,39 @@ Changes:
|
|||||||
|
|
||||||
Additions planned for minor releases:
|
Additions planned for minor releases:
|
||||||
|
|
||||||
** updated the manpage with more information regarding how sshyp works and how to set it up
|
- updated the manpage with more information regarding how sshyp works and how to set it up
|
||||||
** ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
- ensured that it is now impossible for ghosts of entires to remain in /dev/shm
|
||||||
** reduced total lines of code with small optimizations
|
- reduced total lines of code with small optimizations
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
Planned for next major update (fr4, The sshyp Doing a Split Update):
|
||||||
|
|
||||||
sshyp:
|
sshyp:
|
||||||
** sshyp has recieved a major visual overhaul
|
- sshyp has recieved a major visual overhaul
|
||||||
^ this includes the new file list and thematic text art
|
^ this includes the new file list and thematic text art
|
||||||
|
|
||||||
sshync:
|
sshync:
|
||||||
** sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
- sshync has been split into a separate package and now has standalone functionality as a backup/syncing utility
|
||||||
^ more details will be available in the sshync repo, once it is created
|
^ more details will be available in the sshync repo, once it is created
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
Planned for next, next major update (fr5, The Farmer Shearing the sshyp Update):
|
||||||
|
|
||||||
** allow for multi-client deletion... somehow (in sshync)
|
- allow for multi-client deletion... somehow (in sshync)
|
||||||
** when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
- when syncing, a check is made to see if any folders are not on all devices - if the check comes back true, it is corrected (in sshyp)
|
||||||
** imporove password generator to guarantee more secure results
|
- imporove password generator to guarantee more secure results
|
||||||
** enforce permissions on the server-side
|
- enforce permissions on the server-side
|
||||||
** allow for copying entire notes (not just first line)
|
- allow for copying entire notes (not just first line)
|
||||||
** ability to pass entries as arguments for more functions
|
- ability to pass entries as arguments for more functions
|
||||||
|
|
||||||
&&
|
&&
|
||||||
|
|
||||||
Backlog:
|
Backlog:
|
||||||
|
|
||||||
** create separate gui frontend targetting mobile and desktop Linux
|
- create separate gui frontend targetting mobile and desktop Linux
|
||||||
** auto-completion on tab (currently unsure of best way to make this work)
|
- auto-completion on tab (currently unsure of best way to make this work)
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
@@ -1121,5 +1257,3 @@ What is currently functional:
|
|||||||
- sort notes and passwords into folders
|
- sort notes and passwords into folders
|
||||||
- gpg encryption
|
- gpg encryption
|
||||||
- edit password/note entries
|
- edit password/note entries
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
|
||||||
|
|||||||
Regular → Executable
+10
-10
@@ -1,6 +1,6 @@
|
|||||||
.TH sshyp 1 "22 May 2022" "v1.0.0" "sshyp man page"
|
.TH sshyp 1 "27 August 2022" "v1.1.2" "sshyp man page"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
sshyp \- A very simple self-hosted, synchronized password manager for UNIX systems. Alternative to (and compatible with) pass/password-store.
|
sshyp \- A very simple self-hosted, synchronized password manager for UNIX(-like) systems. Alternative to (and compatible with) pass/password-store.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
sshyp [OPTION] [[FLAG]] [/<entry name>]
|
sshyp [OPTION] [[FLAG]] [/<entry name>]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
@@ -12,25 +12,25 @@ Setting up sshyp for the first time or altering its configuration (also recommen
|
|||||||
Viewing the entry database:
|
Viewing the entry database:
|
||||||
sshyp
|
sshyp
|
||||||
|
|
||||||
Reading an existing entry saved as ~/.password-pasture/development/github.gpg:
|
Reading an existing entry saved as ~/.local/share/sshyp/development/github.gpg:
|
||||||
sshyp /development/github
|
sshyp /development/github
|
||||||
|
|
||||||
Copying the password of an existing entry saved as ~/.password-pasture/financial/bank.gpg:
|
Copying the password of an existing entry saved as ~/.local/share/sshyp/financial/bank.gpg:
|
||||||
sshyp copy -p /financial/bank
|
sshyp copy -p /financial/bank
|
||||||
|
|
||||||
Editing the username of an existing entry saved as ~/.password-pasture/game.gpg:
|
Editing the username of an existing entry saved as ~/.local/share/sshyp/game.gpg:
|
||||||
sshyp edit -u game
|
sshyp edit -u game
|
||||||
|
|
||||||
Making a new entry saved as ~/.password-pasture/school/university.gpg using the built-in password generator:
|
Making a new entry saved as ~/.local/share/sshyp/school/university.gpg using the built-in password generator:
|
||||||
sshyp gen /school/university
|
sshyp gen /school/university
|
||||||
|
|
||||||
Creating a note-only entry saved as ~/.password-pasture/notes/testNote.gpg:
|
Creating a note-only entry saved as ~/.local/share/sshyp/notes/testNote.gpg:
|
||||||
sshyp add -n /notes/testNote
|
sshyp add -n /notes/testNote
|
||||||
|
|
||||||
Manually syncing entries with the server:
|
Manually syncing entries with the server:
|
||||||
sshyp sync
|
sshyp sync
|
||||||
|
|
||||||
Removing an existing folder saved as ~/.password-pasture/social:
|
Removing an existing folder saved as ~/.local/share/sshyp/social:
|
||||||
sshyp shear social/
|
sshyp shear social/
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
@@ -73,7 +73,7 @@ sshyp operates on a client-server model, and thus requires you to have access to
|
|||||||
The sshyp package includes modes for operating on both client and server devices, so only one package is necessary.
|
The sshyp package includes modes for operating on both client and server devices, so only one package is necessary.
|
||||||
|
|
||||||
Server setup:
|
Server setup:
|
||||||
Configure an openssh server (if sshyp was installed from the Debian package, the ssh server was not installed as a dependency and needs to be installed manually)
|
Configure an OpenSSH server (if sshyp was installed from the Debian package, the ssh server was not installed as a dependency and needs to be installed manually)
|
||||||
Allow remote access to the SSH server w/public key authentication (disabling password-only authentication recommended)
|
Allow remote access to the SSH server w/public key authentication (disabling password-only authentication recommended)
|
||||||
Install sshyp
|
Install sshyp
|
||||||
Run "sshyp tweak" and set the device type as server
|
Run "sshyp tweak" and set the device type as server
|
||||||
@@ -82,7 +82,7 @@ Server setup:
|
|||||||
Client setup:
|
Client setup:
|
||||||
Install sshyp
|
Install sshyp
|
||||||
Run "sshyp tweak" and follow the prompts
|
Run "sshyp tweak" and follow the prompts
|
||||||
Copy the generated public SSH key to the server using preferred method (manually adding to authorized_keys, ssh-copy-id, etc.)
|
Copy the generated public SSH key (located at ~/.ssh/sshyp.pub) to the server using preferred method (manually adding to authorized_keys, ssh-copy-id, etc.)
|
||||||
If you already have entries on the server, sync them using "sshyp sync"
|
If you already have entries on the server, sync them using "sshyp sync"
|
||||||
Done!
|
Done!
|
||||||
|
|
||||||
|
|||||||
@@ -1,48 +0,0 @@
|
|||||||
#!/bin/python3
|
|
||||||
|
|
||||||
from os import path, remove, system, walk
|
|
||||||
from pathlib import Path
|
|
||||||
from shutil import move, rmtree
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
gpg_id = input('\nWhat is the ID of the GPG key you would like to use for re-encryption?\n\nID: ')
|
|
||||||
pasture = path.expanduser('~/.password-pasture')
|
|
||||||
if Path(f"{pasture}.new").exists():
|
|
||||||
rmtree(f"{pasture}.new")
|
|
||||||
if Path(f"{pasture}.old").exists():
|
|
||||||
rmtree(f"{pasture}.old")
|
|
||||||
if path.isdir(pasture):
|
|
||||||
for dirPath, dirNames, filenames in walk(pasture):
|
|
||||||
for filename in sorted(filenames):
|
|
||||||
Path(dirPath.replace(pasture, pasture + '.new')).mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
system(f"gpg -d '{dirPath}/{filename}' "
|
|
||||||
f"> '{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}'")
|
|
||||||
_old_contents, _new_contents = \
|
|
||||||
open(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}", 'r').readlines(), ''
|
|
||||||
for _num in range(len(_old_contents)):
|
|
||||||
if _num == 0:
|
|
||||||
try:
|
|
||||||
_new_contents += _old_contents[1]
|
|
||||||
except IndexError:
|
|
||||||
_new_contents += '\n'
|
|
||||||
elif _num == 1:
|
|
||||||
_new_contents += _old_contents[0]
|
|
||||||
elif _num == 3:
|
|
||||||
if _old_contents[_num] == ' ' or _old_contents[_num] == '\n':
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
_new_contents += _old_contents[_num]
|
|
||||||
else:
|
|
||||||
_new_contents += _old_contents[_num]
|
|
||||||
for _num in reversed(range(len(_new_contents))):
|
|
||||||
if _new_contents[_num] == '\n' or _new_contents[_num] == '':
|
|
||||||
_new_contents = _new_contents[:-1]
|
|
||||||
else:
|
|
||||||
break
|
|
||||||
open(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}", 'w').writelines(_new_contents)
|
|
||||||
system(f"gpg -qr {str(gpg_id)} -e '{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}'")
|
|
||||||
remove(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}")
|
|
||||||
else:
|
|
||||||
print(f"\nError: no entry folder ({pasture}) found\n")
|
|
||||||
move(pasture, f"{pasture}.old")
|
|
||||||
move(f"{pasture}.new", pasture)
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
#!/bin/python3
|
|
||||||
|
|
||||||
from os import path, remove, system, walk
|
|
||||||
from pathlib import Path
|
|
||||||
from shutil import move, rmtree
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
gpg_id = input('\nWhat is the ID of the GPG key you would like to use for re-encryption?\n\nID: ')
|
|
||||||
pasture = path.expanduser('~/.password-pasture')
|
|
||||||
if Path(f"{pasture}.new").exists():
|
|
||||||
rmtree(f"{pasture}.new")
|
|
||||||
if Path(f"{pasture}.old").exists():
|
|
||||||
rmtree(f"{pasture}.old")
|
|
||||||
if path.isdir(pasture):
|
|
||||||
for dirPath, dirNames, filenames in walk(pasture):
|
|
||||||
for filename in sorted(filenames):
|
|
||||||
Path(dirPath.replace(pasture, pasture + '.new')).mkdir(0o700, parents=True, exist_ok=True)
|
|
||||||
system(f"gpg -d '{dirPath}/{filename}' "
|
|
||||||
f"> '{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}'")
|
|
||||||
_old_contents, _new_contents = \
|
|
||||||
open(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}", 'r').readlines(), ''
|
|
||||||
for _num in range(len(_old_contents)):
|
|
||||||
if _num == 3:
|
|
||||||
if _old_contents[_num] == ' ' or _old_contents[_num] == '\n':
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
_new_contents += _old_contents[_num]
|
|
||||||
else:
|
|
||||||
_new_contents += _old_contents[_num]
|
|
||||||
for _num in reversed(range(len(_new_contents))):
|
|
||||||
if _new_contents[_num] == '\n' or _new_contents[_num] == '':
|
|
||||||
_new_contents = _new_contents[:-1]
|
|
||||||
else:
|
|
||||||
break
|
|
||||||
open(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}", 'w').writelines(_new_contents)
|
|
||||||
system(f"gpg -qr {str(gpg_id)} -e '{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}'")
|
|
||||||
remove(f"{dirPath.replace(pasture, pasture + '.new')}/{filename[:-4]}")
|
|
||||||
else:
|
|
||||||
print(f"\nError: no entry folder ({pasture}) found\n")
|
|
||||||
move(pasture, f"{pasture}.old")
|
|
||||||
move(f"{pasture}.new", pasture)
|
|
||||||
+140
-46
@@ -1,14 +1,15 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# This script packages sshyp (from source) for various UNIX environments.
|
# This script packages sshyp (from source) for various UNIX(-like) environments.
|
||||||
|
# Dependencies (Arch Linux): dpkg (packaging for Debian/Termux), freebsd-pkg (packaging for FreeBSD)
|
||||||
|
# Dependencies (Fedora) (can only package for self): rpmdevtools
|
||||||
|
# Dependencies (Alpine): xz (not part of a basic installation, needed for generic package creation and unpacking for abuild), alpine-sdk (required to build the .apk file from the generated APKBUILD), bash
|
||||||
# NOTE It is recommended to instead use the latest officially packaged and tagged release.
|
# NOTE It is recommended to instead use the latest officially packaged and tagged release.
|
||||||
# NOTE If using Arch, it is recommended to install from the AUR or from the PKGBUILD attatched to the latest official release.
|
|
||||||
|
|
||||||
echo -e '\nOptions (please enter the number only):'
|
echo -e '\nOptions (please enter the number only):'
|
||||||
echo -e '\nDistribution Packages:\n\n1. Haiku\n2. Debian\n3. Termux\n4. Generic (used for PKGBUILD/APKBUILD)'
|
echo -e '\nPackage Formats:\n\n1. Haiku\n2. Debian&Ubuntu Linux\n3. Fedora Linux\n4. FreeBSD\n5. Termux\n6. Generic (used for PKGBUILD/APKBUILD)'
|
||||||
echo -e '\nBuild Scripts:\n\n5. Alpine Linux (APKBUILD)\n6. Arch Linux (PKGBUILD, also builds local generic package)'
|
echo -e '\nBuild Scripts:\n\n7. Arch Linux (PKGBUILD)\n8. Alpine Linux (APKBUILD)'
|
||||||
echo -e '\nOther:\n\n7. All (generates all distribution packages (excluding Haiku, as this must be done on Haiku) and build scripts)\n'
|
echo -e '\nOther:\n\n9. All (generates all distribution packages (excluding Haiku, Fedora, and Alpine, as these must be packaged on their respective distributions) and build scripts)\n'
|
||||||
read -n 1 -r -p "Distribution: " distro
|
read -n 1 -r -p "Distribution: " distro
|
||||||
|
|
||||||
echo -e '\n\nThe value entered in this field will only affect the version reported to the package manager. The latest source is used regardless.\n'
|
echo -e '\n\nThe value entered in this field will only affect the version reported to the package manager. The latest source is used regardless.\n'
|
||||||
@@ -17,24 +18,15 @@ read -r -p "Version number: " version
|
|||||||
echo -e '\nThe value entered in this field will only affect the revision number for build scripts.\n'
|
echo -e '\nThe value entered in this field will only affect the revision number for build scripts.\n'
|
||||||
read -r -p "Revision number: " revision
|
read -r -p "Revision number: " revision
|
||||||
|
|
||||||
if [ "$distro" == "5" ] || [ "$distro" == "6" ] || [ "$distro" == "7" ]; then
|
if [ "$distro" == "7" ] || [ "$distro" == "8" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nOptions (please enter the number only):'
|
source='https://github.com/rwinkhart/sshyp/releases/download/v$pkgver/sshyp-$pkgver.tar.xz'
|
||||||
echo -e '\n1. GitHub Release Tag\n2. Local\n'
|
|
||||||
read -r -p "Source (for build scripts): " source
|
|
||||||
|
|
||||||
if [ "$source" == "1" ]; then
|
|
||||||
source='https://github.com/rwinkhart/sshyp/releases/download/v$pkgver/sshyp-$pkgver.tar.xz'
|
|
||||||
else
|
|
||||||
source=local://sshyp-"$version".tar.xz
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p packages
|
mkdir -p packages
|
||||||
|
|
||||||
if [ "$distro" == "1" ]; then
|
if [ "$distro" == "1" ]; then
|
||||||
echo -e '\nPackaging for Haiku...\n'
|
echo -e '\nPackaging for Haiku...\n'
|
||||||
mkdir -p packages/haikutemp/documentation/man/man1
|
mkdir -p packages/haikutemp/documentation/{man/man1,packages/sshyp}
|
||||||
mkdir -p packages/haikutemp/documentation/packages/sshyp
|
|
||||||
echo "name sshyp
|
echo "name sshyp
|
||||||
version "$version"-"$revision"
|
version "$version"-"$revision"
|
||||||
architecture any
|
architecture any
|
||||||
@@ -56,13 +48,16 @@ requires {
|
|||||||
gnupg
|
gnupg
|
||||||
openssh
|
openssh
|
||||||
python3
|
python3
|
||||||
nano
|
|
||||||
}
|
}
|
||||||
urls {
|
urls {
|
||||||
\"https://github.com/rwinkhart/sshyp\"
|
\"https://github.com/rwinkhart/sshyp\"
|
||||||
}
|
}
|
||||||
" > packages/haikutemp/.PackageInfo
|
" > packages/haikutemp/.PackageInfo
|
||||||
cp -r bin packages/haikutemp/
|
cp -r bin packages/haikutemp/
|
||||||
|
sed -i '1 s/.*/#!\/bin\/env\ python3/' packages/haikutemp/bin/sshync.py
|
||||||
|
sed -i '1 s/.*/#!\/bin\/env\ python3/' packages/haikutemp/bin/sshyp.py
|
||||||
|
sed -i '1 s/.*/#!\/bin\/env\ python3/' packages/haikutemp/bin/sshypRemote.py
|
||||||
|
ln -s /bin/sshyp.py packages/haikutemp/bin/sshyp
|
||||||
cp -r share/doc/sshyp/ packages/haikutemp/documentation/packages/
|
cp -r share/doc/sshyp/ packages/haikutemp/documentation/packages/
|
||||||
cp -r share/licenses/sshyp/ packages/haikutemp/documentation/packages/
|
cp -r share/licenses/sshyp/ packages/haikutemp/documentation/packages/
|
||||||
cp extra/manpage packages/haikutemp/documentation/man/man1/sshyp.1
|
cp extra/manpage packages/haikutemp/documentation/man/man1/sshyp.1
|
||||||
@@ -76,21 +71,21 @@ urls {
|
|||||||
echo -e "\nHaiku packaging complete.\n"
|
echo -e "\nHaiku packaging complete.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$distro" == "2" ] || [ "$distro" == "7" ]; then
|
if [ "$distro" == "2" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nPackaging for Debian...\n'
|
echo -e '\nPackaging for Debian...\n'
|
||||||
mkdir -p packages/debiantemp/sshyp_"$version"-"$revision"_all/{DEBIAN,usr}
|
mkdir -p packages/debiantemp/sshyp_"$version"-"$revision"_all/{DEBIAN,usr/share/man/man1}
|
||||||
mkdir -p packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/share/man/man1
|
|
||||||
echo "Package: sshyp
|
echo "Package: sshyp
|
||||||
Version: $version
|
Version: $version
|
||||||
Section: utils
|
Section: utils
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
||||||
Description: A light-weight, self-hosted, synchronized password manager
|
Description: A light-weight, self-hosted, synchronized password manager
|
||||||
Depends: python3, gnupg, openssh-client, nano, xclip, wl-clipboard
|
Depends: python3, gnupg, openssh-client, xclip, wl-clipboard
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Installed-Size: 35
|
Installed-Size: 185
|
||||||
" > packages/debiantemp/sshyp_"$version"-"$revision"_all/DEBIAN/control
|
" > packages/debiantemp/sshyp_"$version"-"$revision"_all/DEBIAN/control
|
||||||
cp -r bin packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/
|
cp -r bin packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/
|
||||||
|
ln -s /usr/bin/sshyp.py packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/bin/sshyp
|
||||||
cp -r share packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/
|
cp -r share packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/
|
||||||
cp extra/manpage packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/share/man/man1/sshyp.1
|
cp extra/manpage packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/share/man/man1/sshyp.1
|
||||||
gzip packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/share/man/man1/sshyp.1
|
gzip packages/debiantemp/sshyp_"$version"-"$revision"_all/usr/share/man/man1/sshyp.1
|
||||||
@@ -100,21 +95,21 @@ Installed-Size: 35
|
|||||||
echo -e "\nDebian packaging complete.\n"
|
echo -e "\nDebian packaging complete.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$distro" == "3" ] || [ "$distro" == "7" ]; then
|
if [ "$distro" == "5" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nPackaging for Termux...\n'
|
echo -e '\nPackaging for Termux...\n'
|
||||||
mkdir -p packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/{data,DEBIAN}
|
mkdir -p packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/{data/data/com.termux/files/usr/share/man/man1,DEBIAN}
|
||||||
mkdir -p packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/share/man/man1
|
|
||||||
echo "Package: sshyp
|
echo "Package: sshyp
|
||||||
Version: $version
|
Version: $version
|
||||||
Section: utils
|
Section: utils
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
||||||
Description: A light-weight, self-hosted, synchronized password manager
|
Description: A light-weight, self-hosted, synchronized password manager
|
||||||
Depends: python, gnupg, openssh, nano, termux-api, termux-am
|
Depends: python, gnupg, openssh, termux-api, termux-am
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Installed-Size: 35
|
Installed-Size: 185
|
||||||
" > packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/DEBIAN/control
|
" > packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/DEBIAN/control
|
||||||
cp -r bin packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/
|
cp -r bin packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/
|
||||||
|
ln -s /data/data/com.termux/files/usr/bin/sshyp.py packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/bin/sshyp
|
||||||
cp -r share packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/
|
cp -r share packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/
|
||||||
cp extra/manpage packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/share/man/man1/sshyp.1
|
cp extra/manpage packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/share/man/man1/sshyp.1
|
||||||
gzip packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/share/man/man1/sshyp.1
|
gzip packages/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/share/man/man1/sshyp.1
|
||||||
@@ -124,25 +119,105 @@ Installed-Size: 35
|
|||||||
echo -e "\nTermux packaging complete.\n"
|
echo -e "\nTermux packaging complete.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$distro" == "4" ] || [ "$distro" == "6" ] || [ "$distro" == "7" ]; then
|
if [ "$distro" == "3" ] || [ "$distro" == "4" ] || [ "$distro" == "6" ] || [ "$distro" == "7" ] || [ "$distro" == "8" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nPackaging as generic...\n'
|
echo -e '\nPackaging as generic...\n'
|
||||||
mkdir -p packages/archtemp/usr
|
mkdir -p packages/generictemp/usr/share/man/man1
|
||||||
cp -r bin packages/archtemp/usr/
|
cp -r bin packages/generictemp/usr/
|
||||||
cp -r share packages/archtemp/usr/
|
ln -s /usr/bin/sshyp.py packages/generictemp/usr/bin/sshyp
|
||||||
mkdir -p packages/archtemp/usr/share/man/man1
|
cp -r share packages/generictemp/usr/
|
||||||
cp extra/manpage packages/archtemp/usr/share/man/man1/sshyp.1
|
cp extra/manpage packages/generictemp/usr/share/man/man1/sshyp.1
|
||||||
gzip packages/archtemp/usr/share/man/man1/sshyp.1
|
gzip packages/generictemp/usr/share/man/man1/sshyp.1
|
||||||
tar -C packages/archtemp -cvf packages/sshyp-"$version".tar.xz usr/
|
tar -C packages/generictemp -cvJf packages/sshyp-"$version".tar.xz usr/
|
||||||
rm -rf packages/archtemp
|
rm -rf packages/generictemp
|
||||||
sha512="$(sha512sum packages/sshyp-"$version".tar.xz | awk '{print $1;}')"
|
sha512="$(sha512sum packages/sshyp-"$version".tar.xz | awk '{print $1;}')"
|
||||||
echo -e "\nsha512 sum:\n$sha512"
|
echo -e "\nsha512 sum:\n$sha512"
|
||||||
echo -e "\nGeneric packaging complete.\n"
|
echo -e "\nGeneric packaging complete.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$distro" == "6" ] || [ "$distro" == "7" ]; then
|
if [ "$distro" == "3" ]; then
|
||||||
|
echo -e '\nPackaging for Fedora...\n'
|
||||||
|
rm -rf ~/rpmbuild
|
||||||
|
rpmdev-setuptree
|
||||||
|
cp packages/sshyp-"$version".tar.xz ~/rpmbuild/SOURCES
|
||||||
|
echo "Name: sshyp
|
||||||
|
Version: "$version"
|
||||||
|
Release: "$revision"
|
||||||
|
Summary: A light-weight, self-hosted, synchronized password manager
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
License: GPLv3
|
||||||
|
URL: https://github.com/rwinkhart/sshyp
|
||||||
|
Source0: sshyp-"$version".tar.xz
|
||||||
|
|
||||||
|
Requires: python gnupg openssh wl-clipboard
|
||||||
|
|
||||||
|
%description
|
||||||
|
sshyp is a password-store compatible CLI password manager available for UNIX(-like) systems - its primary goal is to make syncing passwords and notes across devices as easy as possible via CLI.
|
||||||
|
|
||||||
|
%install
|
||||||
|
tar xf %{_sourcedir}/sshyp-"$version".tar.xz -C %{_sourcedir}
|
||||||
|
cp -r %{_sourcedir}/usr %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
/usr/bin/sshyp
|
||||||
|
/usr/bin/sshyp.py
|
||||||
|
/usr/bin/sshync.py
|
||||||
|
/usr/bin/sshypRemote.py
|
||||||
|
%license /usr/share/licenses/sshyp/license
|
||||||
|
%doc /usr/share/doc/sshyp/changelog
|
||||||
|
%doc /usr/share/man/man1/sshyp.1.gz
|
||||||
|
" > ~/rpmbuild/SPECS/sshyp.spec
|
||||||
|
rpmbuild -bb ~/rpmbuild/SPECS/sshyp.spec
|
||||||
|
mv ~/rpmbuild/RPMS/noarch/* packages/
|
||||||
|
rm -rf ~/rpmbuild
|
||||||
|
echo -e "\nFedora packaging complete.\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$distro" == "4" ] || [ "$distro" == "9" ]; then
|
||||||
|
echo -e '\nPackaging for FreeBSD...\n'
|
||||||
|
mkdir -p packages/FreeBSDtemp/bin
|
||||||
|
tar xf packages/sshyp-"$version".tar.xz -C packages/FreeBSDtemp
|
||||||
|
echo "name: sshyp
|
||||||
|
version: \""$version"\"
|
||||||
|
abi = \"FreeBSD:13:*\";
|
||||||
|
arch = \"freebsd:13:*\";
|
||||||
|
origin: security/sshyp
|
||||||
|
comment: \"a password manager\"
|
||||||
|
desc: \"a light-weight, self-hosted, synchronized password manager\"
|
||||||
|
maintainer: <idgr at tutanota dot com>
|
||||||
|
www: https://github.com/rwinkhart/sshyp
|
||||||
|
prefix: /
|
||||||
|
\"deps\" : {
|
||||||
|
\"python\" : {
|
||||||
|
\"origin\" : \"lang/python\"
|
||||||
|
},
|
||||||
|
\"gnupg\" : {
|
||||||
|
\"origin\" : \"security/gnupg\"
|
||||||
|
},
|
||||||
|
\"xclip\" : {
|
||||||
|
\"origin\" : \"x11/xclip\"
|
||||||
|
},
|
||||||
|
\"wl-clipboard\" : {
|
||||||
|
\"origin\" : \"x11/wl-clipboard\"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
" > packages/FreeBSDtemp/+MANIFEST
|
||||||
|
echo "/usr/bin/sshync.py
|
||||||
|
/usr/bin/sshyp
|
||||||
|
/usr/bin/sshyp.py
|
||||||
|
/usr/bin/sshypRemote.py
|
||||||
|
/usr/share/doc/sshyp/changelog
|
||||||
|
/usr/share/licenses/sshyp/license
|
||||||
|
/usr/share/man/man1/sshyp.1.gz
|
||||||
|
" > packages/FreeBSDtemp/plist
|
||||||
|
pkg create -m packages/FreeBSDtemp/ -r packages/FreeBSDtemp/ -p packages/FreeBSDtemp/plist -o packages/
|
||||||
|
rm -rf packages/FreeBSDtemp
|
||||||
|
echo -e "\nFreeBSD packaging complete.\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$distro" == "7" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nGenerating PKGBUILD...'
|
echo -e '\nGenerating PKGBUILD...'
|
||||||
echo "# Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
echo "# Maintainer: Randall Winkhart <idgr at tutanota dot com>
|
||||||
|
|
||||||
pkgname=sshyp
|
pkgname=sshyp
|
||||||
pkgver="$version"
|
pkgver="$version"
|
||||||
pkgrel="$revision"
|
pkgrel="$revision"
|
||||||
@@ -150,20 +225,39 @@ pkgdesc='A light-weight, self-hosted, synchronized password manager'
|
|||||||
url='https://github.com/rwinkhart/sshyp'
|
url='https://github.com/rwinkhart/sshyp'
|
||||||
arch=('any')
|
arch=('any')
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=(python gnupg openssh nano xclip wl-clipboard)
|
depends=(python gnupg openssh xclip wl-clipboard)
|
||||||
|
|
||||||
source=(\""$source"\")
|
source=(\""$source"\")
|
||||||
sha512sums=('"$sha512"')
|
sha512sums=('"$sha512"')
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
||||||
tar xf sshyp-"\"\$pkgver\"".tar.xz -C "\"\${pkgdir}\""
|
tar xf sshyp-"\"\$pkgver\"".tar.xz -C "\"\${pkgdir}\""
|
||||||
|
|
||||||
}
|
}
|
||||||
" > packages/PKGBUILD
|
" > packages/PKGBUILD
|
||||||
echo -e "\nPKGBUILD generated.\n"
|
echo -e "\nPKGBUILD generated.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$distro" == "4" ]; then
|
if [ "$distro" == "8" ] || [ "$distro" == "9" ]; then
|
||||||
echo -e '\nThis packaging format is not yet supported, but will be in the near future!\n'
|
echo -e '\nGenerating APKBUILD...'
|
||||||
|
echo "# Maintainer: Randall Winkhart <idgr@tutanota.com>
|
||||||
|
pkgname=sshyp
|
||||||
|
pkgver="$version"
|
||||||
|
pkgrel="$((revision-1))"
|
||||||
|
pkgdesc='A light-weight, self-hosted, synchronized password manager'
|
||||||
|
options=!check
|
||||||
|
url='https://github.com/rwinkhart/sshyp'
|
||||||
|
arch='noarch'
|
||||||
|
license='GPL-3.0-or-later'
|
||||||
|
depends='python3 gnupg openssh xclip wl-clipboard'
|
||||||
|
source=\""$source"\"
|
||||||
|
|
||||||
|
package() {
|
||||||
|
mkdir -p "\"\$pkgdir\""
|
||||||
|
cp -r "\"\$srcdir/usr/"\" "\"\$pkgdir\""
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums=\"
|
||||||
|
"$sha512' 'sshyp-\"\$pkgver\".tar.xz"
|
||||||
|
\"
|
||||||
|
" > packages/APKBUILD
|
||||||
|
echo -e "\nAPKBUILD generated.\n"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Regular → Executable
+12
-31
@@ -1,42 +1,23 @@
|
|||||||
sshyp v1.0.0
|
sshyp v1.1.2
|
||||||
|
|
||||||
The Polished Trotters Update
|
the sheecrets update - patch two
|
||||||
|
|
||||||
This release brings 'sshyp' in line with the original goals of the project.
|
this is a general polish/bugfix release
|
||||||
As such, it is being crowned "v1.0.0", and is considered a stable base for future expansions.
|
|
||||||
|
|
||||||
Features:
|
user-facing features:
|
||||||
|
|
||||||
- sshyp has been modified to run on Haiku, an open-source re-implementation of BeOS
|
- packaging support for Alpine Linux/postmarketOS
|
||||||
- the entry format has been changed to support entries created in pass/password-store
|
- the rename() function is no longer unnecessarily verbose
|
||||||
^ this change requires existing entry libraries to be converted - see the sshyp v1.0.0 release page on GitHub for a conversion script
|
- handled exception for when the user attempts to copy an entry field that does not exist
|
||||||
- majorly overhauled visual experience for sshyp
|
|
||||||
^ this includes a new entry list, a new entry readout, coloured output, and more!
|
|
||||||
- entries can now optionally be passed as arguments, directly
|
|
||||||
^ as opposed to the user being prompted for an entry name after running a command
|
|
||||||
|
|
||||||
Changes:
|
fixes/optimizations:
|
||||||
|
|
||||||
- corrected outdated liscensing and copyright information
|
- replaced shebang with "#!/usr/bin/env python3" for improved compatibility with various systems
|
||||||
- 'if __name__=="__main__":' convention is now used
|
^ does not affect Haiku packaging
|
||||||
- help screens have been overhauled
|
- fixed the generic package not actually being compressed
|
||||||
- improved password generator to guarantee more secure results
|
- reduced lines of code used for cross-device entry deletion
|
||||||
- fixed errors when trying to sync with a multi-word entry on the server
|
|
||||||
- sshync now uses 'scp' (via the sftp protocal), rather than 'sftp'
|
|
||||||
- rename function now properly allows for renaming folders
|
|
||||||
- renaming an entry/folder will now properly delete the old entry/folder from the server
|
|
||||||
- entry previews at the time of entry creation/editing no longer require entering the gpg password more times than necessary
|
|
||||||
- the clipboard now automatically clears after 30 seconds
|
|
||||||
- sshyp server no longer needs to create copies of its libraries in ~/
|
|
||||||
- ...and lots of minor (under the hood) changes!
|
|
||||||
|
|
||||||
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
|
||||||
|
|
||||||
The full history of changes to "sshyp" can be found on the following page:
|
The full history of changes to "sshyp" can be found on the following page:
|
||||||
https://raw.githubusercontent.com/rwinkhart/sshyp/main/extra/changelog-total
|
https://raw.githubusercontent.com/rwinkhart/sshyp/main/extra/changelog-total
|
||||||
|
|
||||||
Legend:
|
|
||||||
|
|
||||||
** = feature/change not yet finished/implemented
|
|
||||||
- = feature/change implemented and pushed upstream
|
|
||||||
^ = note regarding the above feature/change
|
|
||||||
|
|||||||
Reference in New Issue
Block a user