Questions tagged [keepass]

KeePass is a free open source password manager, which helps you to manage your passwords in a secure way.

Project site: http://keepass.info/

Main features:

  • Strong Security
  • Multiple User Keys
  • Portable and No Installation Required, Accessibility
  • Export To TXT, HTML, XML and CSV Files
  • Import From Many File Formats
  • Easy Database Transfer
  • Support of Password Groups
  • Time Fields and Entry Attachments
  • Auto-Type, Global Auto-Type Hot Key and Drag&Drop
  • Intuitive and Secure Clipboard Handling
  • Searching and Sorting
  • Multi-Language Support
  • Strong Random Password Generator
  • Plugin Architecture
60 questions
1
vote
1 answer

Accessing keepass databass returns KdbxError: Error BadSignature

I am using the kdbxweb library. My goal is to open a kdbx database file, and then retrieve a password from it. Following the example on the page, and also inspired by some things I saw in the keepass code, which uses this lib, I came up with this: …
Chai
  • 1,796
  • 2
  • 18
  • 31
1
vote
2 answers

CS1061 'IEnumerable<>' does not contain a definition for dump

I just want to get the password out of my software KeePass. After using the code from an old question here Link to the question, im getting this error message: S1061 'IEnumerable<
Beardy
  • 163
  • 1
  • 15
1
vote
1 answer

Shorten URL's in KeePass-DB

I do have a KeePass-Database which has up to 100 entries with url's in it. It has a bunch of entries where the url looks like this: https://banking.consorsfinanz.de/onlinebanking-cfg/loginFormAction.do Now I want to "shorten/cleanup" this URL's to…
Dani W.
  • 13
  • 2
1
vote
1 answer

Getting a file as a resource on classpath

I'm trying to read a keystore as a resource. Sample code below. The problem I'm running into is that inputStream remains null. import java.io.InputStream; import java.util.List; import org.linguafranca.pwdb.kdbx.KdbxCreds; import…
Lone Wanderer
  • 160
  • 4
  • 15
1
vote
0 answers

KeePass API to Access Currently Open Database from Code

I am currently using the available SDK in C# to access a KeePass database file. The problem is there is not much information on the API from what I can find and I want to be able to read the currently open database just like the plugin for Remote…
Adam
  • 4,590
  • 10
  • 51
  • 84
1
vote
1 answer

KeePass - Google drive direct vs GoogleSync Plugin

I am using KeePass v2 and I am a bit confused about synchronizing the kbdx file on google drive. There seems to be two ways and not sure what the advantages/disadvantages are between them. Using the KPGoogleSync plugin Store the kdbx on the…
user3072517
  • 513
  • 1
  • 7
  • 21
1
vote
3 answers

Ansible Keepass integration via python script

i am very new to ansible and would like to test a few things. I have a couple of Amazon EC2 instances and would like to install different software components on them. I don't want to have the (plaintext) credentials of the technical users inside of…
JuHarm89
  • 847
  • 3
  • 12
  • 26
1
vote
2 answers

Loop through several lines until a condition is reached

I have a command to retrieve info from a keepass database using the kpscript. This command may retrieve 1 line, multiple line on none, but, in the end, it always returns this output: OK: Operation completed successfully. What is the best way to…
Pedro Sales
  • 513
  • 2
  • 8
  • 24
1
vote
2 answers

How to get KeePass 2.X running on MAC OS X

I just installed the latest version of Mono and XQuartz. I downloaded Keepass-2.29 portable edition. And when I try to run it, I get the following exceptions : $ mono KeePass.exe System.TypeInitializationException: An exception was thrown by the…
user252816
  • 563
  • 4
  • 12
  • 21
1
vote
1 answer

cmd /C set variable

The short: I am trying to make a 1 line command script that sets and uses a variable. Right now I came up with: cmd /C "set var=127.0.0.1 & echo %var%" I would expect it to output 127.0.0.1, but instead it prints %var%. The long: I am using keepass…
Paul Rabahy
  • 79
  • 2
  • 8
1
vote
1 answer

Using keefox with multiple Firefox profiles?

I'm familiar to the use of multiple Firefox profile. However I got some issue getting Keefox to work as expected in this scenario. Description Each time I start one of the profile Keepass/KeePassRPC asks me to re-authorize the KeeFox plug-ins. Note…
Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178
0
votes
0 answers

Need Script for Deploying KeePass to my Users Share Drives

I'm looking for a script for copying the KeePass folder from a Network Share to my Staffs' individual Personal Network Share Drives. I also want a shortcut to keepass.exe sent to their (windows) desktops. Any help would be appreciated. I am not a…
0
votes
0 answers

My Keepass file .kdbx is impossible to open or repair because of corrupted header

I am tying to use Keepass in order to open a .kdbx file. Every time I try I have this message: "Failed to load the specified file ! The filie signature is invalid. Either the file isn't a KeePass database file at all or it is corrupted". I already…
0
votes
1 answer

Batch. How to define the first line of command output into a variable?

I have a batch script that goes through a list of devices and fetches password for each of them from keepass, using KPScript. %Output% is supposed to contain the password. KPScript command outputs: password OK: Operation completed successfully. The…
0
votes
1 answer

Flask app fails to load keepass file after a certain amount of time, when deployed as a service on centos7

I have a flask web app deployed on one of the internal servers of the organization where I work. I developed a number of simple automation tools that is used by the IT team, and I made them available through this app. I am having an issue that I…