https://github.com/pryrt/www-keepasshttp
Interface with KeePass PasswordSafe through the KeePassHttp plugin
https://github.com/pryrt/www-keepasshttp
Last synced: 12 months ago
JSON representation
Interface with KeePass PasswordSafe through the KeePassHttp plugin
- Host: GitHub
- URL: https://github.com/pryrt/www-keepasshttp
- Owner: pryrt
- License: other
- Created: 2021-11-07T20:24:36.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-30T19:24:48.000Z (over 4 years ago)
- Last Synced: 2025-01-16T21:51:51.263Z (over 1 year ago)
- Language: Perl
- Size: 209 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
README
# NAME
WWW::KeePassHttp - Interface with KeePass PasswordSafe through the KeePassHttp plugin
# SYNOPSIS
use WWW::KeePassHttp;
my $kph = WWW::KeePassHttp->new(Key => $key);
$kph->associate() unless $kph->test_associate();
my @entries = @${ $kph->get_logins($search_string) };
print $entry[0]->url;
print $entry[0]->login;
print $entry[0]->password;
# DESCRIPTION
Interface with KeePass PasswordSafe through the KeePassHttp plugin. Allows reading entries based on URL or TITLE, and creating a new entry as well.
## REQUIREMENTS
You need to have KeePass (or compatible) on your system, with the KeePassHttp plugin installed.
# AUTHOR
Peter C. Jones ``
Please report any bugs or feature requests
thru the repository's interface at [https://github.com/pryrt/WWW-KeePassHttp/issues](https://github.com/pryrt/WWW-KeePassHttp/issues).
# COPYRIGHT
Copyright (C) 2021 Peter C. Jones
# LICENSE
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See [http://dev.perl.org/licenses/](http://dev.perl.org/licenses/) for more information.
