Skip to content

Commit

Permalink
Merge pull request #7 from codewhitesec/develop
Browse files Browse the repository at this point in the history
v1.2.0 Release - tnx @qtc-de
  • Loading branch information
cwdel authored Nov 17, 2023
2 parents 78cab43 + 42ed499 commit f72b7b7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## v1.2.0 - Nov 17, 2023

### Changed

* qubes-keepass-dom0 now aborts if the vault qube is not running
* Minor bugfixes


## v1.1.0 - May 31, 2023

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Qube to copy credentials to other *AppVMs*:

```console
[user@dom0 ~]$ cat /etc/qubes-rpc/policy/custom.QubesKeepass
vault $anyvm allow notify=true
vault @anyvm allow notify=yes
```

According to your preferences, you could also choose `ask` instead of the `allow` action or remove the `notify=true` option,
Expand Down
3 changes: 2 additions & 1 deletion qubes-keepass-dom0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


VAULT='vault'
VERSION='qubes-keepass v1.2.0'


function get_id() {
Expand Down Expand Up @@ -63,7 +64,7 @@ function main() {
set -e
set -x

qvm-check "${VAULT}"
qvm-check --running -q "${VAULT}"

if [ $? -ne 0 ]; then
echo "[-] Your vault qube ${VAULT} is not running yet."
Expand Down
2 changes: 1 addition & 1 deletion qubes-keepass.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def load(service: Secret.Service) -> CredentialCollection:
return CredentialCollection(credentials)


parser = argparse.ArgumentParser(description='''qubes-keepass v1.1.0 - A rofi based KeePassXC frontend for Qubes''')
parser = argparse.ArgumentParser(description='''qubes-keepass v1.2.0 - A rofi based KeePassXC frontend for Qubes''')
parser.add_argument('qube', help='qube to copy the credential to')
parser.add_argument('--trust-level', type=int, help='numerical trust level of the qube')
parser.add_argument('--config', help='path to the configuration file')
Expand Down

0 comments on commit f72b7b7

Please sign in to comment.