Keepass 2 01 alpha
Author: E | 2025-04-24
Releases around keepass/KeePass 2.x 2.02/KeePass-2.02-Alpha-Setup.exe on SourceForge. Maybe you can find something interesting in this list. keepass/ KeePass 2.x on SourceForge Releases around keepass/KeePass 2.x 2.01/KeePass-2.01-Alpha-Setup.exe on SourceForge. Maybe you can find something interesting in this list. keepass/ KeePass 2.x on SourceForge
Releases around keepass/KeePass 2.x 2.02/KeePass-2.02-Alpha
KeepassdbIMPORTANTThis library is alpha-quality/stability. Tread carefully!keepassdb is a python module to provide an API to read and write KeePass 1.x / KeePassXdatabase files.This project began as a desire to merge together several python keepass projects that providedstrengths in different areas (but none of which worked fully as a standalone solution).Specifically this project owes its roots to:kppy by Karsten-Kai König kkoenig@posteo.de,python-keepass by Brett Viren brett.viren@gmail.com, andkptool by Wakayama Shirou shirou.faw@gmail.comThis project currently supports Python 2.x and 3.x (using 2to3).This software is licensed under the GPLv3 (or later), in accordance with the upstream libraries andthe KeePass project itself.Homepage: Documentation: 2.6+. (This does work with Python 3.x using 2to3.)Setuptools/DistributePyCryptoLimitationsSupports only KeePass V1 databases.Currently supports only AES encryption.Does not fully support the tree state MetaInfo entries that may be added by other programs.Does not work (yet) on Python 3.xInstallationVia easy_install/distribute:Or more traditionally:Basic UsageReadingfrom keepassdb import Databasedb = Database('./test.kdb', password='test')# Display a flat list of all groups and the entries in each group.for group in db.groups: print group.title for entry in group.entries: print "\t-%s" % entry.titleWriting# A locking database will create the .lock file that other KeePass programs expect.from keepassdb import LockingDatabasewith LockingDatabase('./new.kdb', new=True) as db: group = db.create_group(title='A new group') entry = group.create_entry(title='Entry1', username='root', password='test') # etc. db.save(password='test') Releases around keepass/KeePass 2.x 2.02/KeePass-2.02-Alpha-Setup.exe on SourceForge. Maybe you can find something interesting in this list. keepass/ KeePass 2.x on SourceForge Releases around keepass/KeePass 2.x 2.01/KeePass-2.01-Alpha-Setup.exe on SourceForge. Maybe you can find something interesting in this list. keepass/ KeePass 2.x on SourceForge Niblits Posts: 2 Joined: Mon Dec 03, 2007 3:58 am KeePass v1.10 virus warning #2 Post by Niblits » Sun Jan 13, 2008 2:54 pm Avast AntiVirus sends out alarm on saving the .exe file of v1.10:"Win32: Trogan-genvirus worm080113-0, 01/13/2008"I've been using KeePass for several versions now with no problems. Anybody have any ideas on this? The zipped portable version is clear. [/img] Midas Posts: 6999 Joined: Mon Dec 07, 2009 7:09 am Location: Sol3 Re: Keepass Portable 1.06 #3 Post by Midas » Fri Oct 03, 2014 4:30 am Old topic update: after being around for years and proving itself one of the more useful elements on anyone's portable toolset, KeePass ( still doesn't have an official forum topic. Well, that ends now -- and in the absence of the original submission post, this one will have to do... wrote:KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish).NOTE: although it might also be portable, KeePass v2.x branch is DotNET dependent and is not currently being tracked here at TPFC.Download latest KeePass release (currently v1.28; portable is packaged in a ZIP file) from 1.x/.Related forum topics (see also viewtopic.php?t=20612): viewtopic.php?t=21702viewtopic.php?t=21413viewtopic.php?t=20279viewtopic.php?t=4871viewtopic.php?t=4468viewtopic.php?t=3933viewtopic.php?t=3711viewtopic.php?t=3133viewtopic.php?t=2278viewtopic.php?t=1479 Last edited by Midas on Fri Feb 23, 2018 4:32 am, edited 2 times in total. JohnTHaller Posts: 727 Joined: Wed Feb 10, 2010 4:44 pm Location: New York, NY Contact: Re: Keepass Portable 1.06 #4 Post by JohnTHaller » Fri Oct 03, 2014 2:46 pm As TPFC now lists .NET apps (if I recall correctly), might I suggest you track it as KeePass Professional. That's what the publisher calls it. We're adding it to PA.c as a separate app as well for users who want it. Midas Posts: 6999 Joined: Mon Dec 07, 2009 7:09 am Location: Sol3 Re: Keepass Portable #5 Post by Midas » Thu Oct 30, 2014 3:30 am For whom it may concern, here's the script I use to auto-backup (locally and to Dropbox) KeePass' database after each run:Code: Select all@ECHO OFF:: This script must be placed in the same dir as KeePass.exe:: and invoked on KeePass' exit. Additionally, sub-dirs named:: 'backups' and 'xtra' must be present, with '7za.exe',:: 'scp.exe', 'vssserv.dll', and 'vssxp.dll' inside 'xtra'.:: '7za.exe' is the command line version of 7Zip:: Other files are part of Runtime's ShadowCopy:: Set today's date stringSET present=%date:-=%:: Check for existenceComments
KeepassdbIMPORTANTThis library is alpha-quality/stability. Tread carefully!keepassdb is a python module to provide an API to read and write KeePass 1.x / KeePassXdatabase files.This project began as a desire to merge together several python keepass projects that providedstrengths in different areas (but none of which worked fully as a standalone solution).Specifically this project owes its roots to:kppy by Karsten-Kai König kkoenig@posteo.de,python-keepass by Brett Viren brett.viren@gmail.com, andkptool by Wakayama Shirou shirou.faw@gmail.comThis project currently supports Python 2.x and 3.x (using 2to3).This software is licensed under the GPLv3 (or later), in accordance with the upstream libraries andthe KeePass project itself.Homepage: Documentation: 2.6+. (This does work with Python 3.x using 2to3.)Setuptools/DistributePyCryptoLimitationsSupports only KeePass V1 databases.Currently supports only AES encryption.Does not fully support the tree state MetaInfo entries that may be added by other programs.Does not work (yet) on Python 3.xInstallationVia easy_install/distribute:Or more traditionally:Basic UsageReadingfrom keepassdb import Databasedb = Database('./test.kdb', password='test')# Display a flat list of all groups and the entries in each group.for group in db.groups: print group.title for entry in group.entries: print "\t-%s" % entry.titleWriting# A locking database will create the .lock file that other KeePass programs expect.from keepassdb import LockingDatabasewith LockingDatabase('./new.kdb', new=True) as db: group = db.create_group(title='A new group') entry = group.create_entry(title='Entry1', username='root', password='test') # etc. db.save(password='test')
2025-04-06Niblits Posts: 2 Joined: Mon Dec 03, 2007 3:58 am KeePass v1.10 virus warning #2 Post by Niblits » Sun Jan 13, 2008 2:54 pm Avast AntiVirus sends out alarm on saving the .exe file of v1.10:"Win32: Trogan-genvirus worm080113-0, 01/13/2008"I've been using KeePass for several versions now with no problems. Anybody have any ideas on this? The zipped portable version is clear. [/img] Midas Posts: 6999 Joined: Mon Dec 07, 2009 7:09 am Location: Sol3 Re: Keepass Portable 1.06 #3 Post by Midas » Fri Oct 03, 2014 4:30 am Old topic update: after being around for years and proving itself one of the more useful elements on anyone's portable toolset, KeePass ( still doesn't have an official forum topic. Well, that ends now -- and in the absence of the original submission post, this one will have to do... wrote:KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish).NOTE: although it might also be portable, KeePass v2.x branch is DotNET dependent and is not currently being tracked here at TPFC.Download latest KeePass release (currently v1.28; portable is packaged in a ZIP file) from 1.x/.Related forum topics (see also viewtopic.php?t=20612): viewtopic.php?t=21702viewtopic.php?t=21413viewtopic.php?t=20279viewtopic.php?t=4871viewtopic.php?t=4468viewtopic.php?t=3933viewtopic.php?t=3711viewtopic.php?t=3133viewtopic.php?t=2278viewtopic.php?t=1479 Last edited by Midas on Fri Feb 23, 2018 4:32 am, edited 2 times in total. JohnTHaller Posts: 727 Joined: Wed Feb 10, 2010 4:44 pm Location: New York, NY Contact: Re: Keepass Portable 1.06 #4 Post by JohnTHaller » Fri Oct 03, 2014 2:46 pm As TPFC now lists .NET apps (if I recall correctly), might I suggest you track it as KeePass Professional. That's what the publisher calls it. We're adding it to PA.c as a separate app as well for users who want it. Midas Posts: 6999 Joined: Mon Dec 07, 2009 7:09 am Location: Sol3 Re: Keepass Portable #5 Post by Midas » Thu Oct 30, 2014 3:30 am For whom it may concern, here's the script I use to auto-backup (locally and to Dropbox) KeePass' database after each run:Code: Select all@ECHO OFF:: This script must be placed in the same dir as KeePass.exe:: and invoked on KeePass' exit. Additionally, sub-dirs named:: 'backups' and 'xtra' must be present, with '7za.exe',:: 'scp.exe', 'vssserv.dll', and 'vssxp.dll' inside 'xtra'.:: '7za.exe' is the command line version of 7Zip:: Other files are part of Runtime's ShadowCopy:: Set today's date stringSET present=%date:-=%:: Check for existence
2025-03-27Télécharger Utilitaires Cryptage et sécurité Centralisez l'ensemble de vos mots de passe, numéros de série, logins, etc. Éditeur : Dominik Reichl Présentation de KeePass Password Safe par Telecharger.com KeePass permet de rassembler l’ensemble de vos numéros de série, logins, mots de passe et autres numéros de comptes dans une seule interface. Vous n’aurez plus qu’à retenir un seul mot de passe, celui de la base de données du logiciel ! Il est également possible de générer une clé à copier sur un support amovible afin d’empêcher la lecture de la base si le mot de passe est volé. Les informations contenues dans la base de données peuvent être classées dans différentes catégories pour un accès rapide au mot de passe que vous recherchez. KeePass propose principalement des améliorations d'interface utilisateur et d'intégration, ainsi que diverses autres nouvelles fonctionnalités et améliorations mineures. Des hachages et des signatures pour la vérification de l'intégrité sont disponibles, et les fichiers binaires du programme sont signés numériquement (Authenticode). De nouvelles traductions sont par ailleurs disponibles. Enfin, venez télécharger KeePass en toute gratuité et compatible avec l'ensemble des systèmes d'exploitation Windows. Caractéristiques Version 2.53 Dernière mise à jour 17/01/2023 Licence Gratuit Taille 3.08 Mo Systèmes d'exploitation Windows 7/8/10/11 Langues Français, Anglais Télécharger KeePass Password Safe Captures d'écran Partenaire Le navigateur 100% gratuit, rapide, avec VPN intégré Votre téléchargement est prêt ! Si le téléchargement ne démarre pas automatiquement, cliquez ici IA de navigateur Aria Discutez et créez avec l'IA gratuite d'Opera sur les téléphones portables et les ordinateurs de bureau. Respect de la vie privée VPN gratuit et Adblocker pour une sécurité renforcée Réseaux sociaux intégrés Accès instantané à Twitter, TikTok et Instagram dans Opera. 1 Ouvrez le fichier téléchargé 2 Lancez l'installation et suivez les instructions Les alternatives à KeePass Password Safe Les autres logiciels de Dominik Reichl
2025-04-01V2 files. Some versions of Term::ReadLine::Perl5 are incompatible "Term::ReadLine::Perl5" versions 1.39-1.42 are incompatible with the "Term::ShellUI" module, which is core to kpcli. There is information about this in kpcli SF bug #18 ( The "Term::ReadLine::Perl5" author submitted a "Term::ShellUI" patch to resolve the issue ( and he also released "Term::ReadLine::Perl5" version 1.43 which resolves it. No history tracking for KeePass 2 (*.kdbx) files Recording entries' history in KeePass 2 files is not implemented. History that exists in a file is not destroyed, but results of entry changes made in kpcli are not recorded into their history. Prior-to- change copies are stored into the "Recycle Bin." Note that File::KeePass does not encrypt passwords of history entries in RAM, like it does for current entries. This is a small security risk that can, in theory, allow privileged users to steal your passwords from RAM, from entry history. File::KeePass bug prior to version 2.03 Prior to version 2.03, File::KeePass had a bug related to some "unknown" data that KeePassX stores in group records. For File::KeePass source code revealed that what early versions of File::KeePass classifies as "unknown" are the times for created/modified/accessed/expires as well as "flags" (id=9), but only for groups; File::KeePass handled those fields just fine for entries. I found no ill-effect from dropping those fields when saving and so that is what kpcli does to work around the File::KeePass bug, if kpcli is using File::KeePass BUGS Using Ctrl-D to Exit Versions of Term::ShellUI prior to v0.9. do not have the ability to trap Ctrl-D exits by the client program. I submitted a patch to remedy that and it made it into Term::ShellUI v0.9. Please upgrade if kpcli asks you to. Multiple Entries or Groups With the Same Name in the Same Group This program does not support multiple entries in the same group having the exact same name, nor does it support multiple groups at the same level having the same name, and it likely never will. KeepassX does support those. This program detects and alert when an opened database file has those issues, but it does not refuse to save (overwrite) a file that is opened like that. Saves are actually safe (no data loss) as long as the user has not touched one of the duplicately-named items.AUTHOR Lester Hightower LICENSE This program may be distributed under the same terms as Perl itself.CREDITS Special thanks to Paul Seamons, author of "File::KeePass", and to Scott Bronson, author of "Term::ShellUI". Without those two modules this program would not have been practical for me to author.CHANGELOG 2010-Nov-28 v0.1 - Initial release. 2010-Nov-28 v0.2 - Encrypt the master password in RAM. 2010-Nov-29 v0.3 - Fixed master password encryption for saveas. 2010-Nov-29 v0.4 - Fixed code to work w/out Term::ReadLine::Gnu. Documented File::KeePass v0.1 hierarchy bug. 2010-Nov-29 v0.5 - Made find command case insensitive. Bugfix in new command (path regex problem). 2010-Nov-29 v0.6 - Added lock file support; warn if a lock exists. 2010-Dec-01 v0.7 - Further documented the group fields that are dropped, in the
2025-04-05Of today's backupPUSHD backupsFOR %%f IN (%present%*) DO SET todayfile=%%fPOPD:: Compute partial filename stringSET now=%time:~0,8%SET now=%now::=%IF "%now:~0,1%" == " " SET "now=0%now:~1,7%":: If today's local backup exists, skip to file copyIF NOT "%todayfile%" == "" GOTO update:: Execute today's backup and log all outputxtra\7za.exe a -y .\backups\%present%%now%.7z *.kdb 2>&1> backups\%present%%now%.log:update:: Copy database file to Dropbox and log outputSTART /MIN xtra\scp.exe "%~dp0*.kdb" "DRIVE:\PATH\TO\Dropbox" /y /r && ECHO. >> backups\%present%%now%.log ^& ECHO + Dropbox updated! >> backups\%present%%now%.logWith portable KeePass and this I get one daily local backup in a 7z compressed archive named with the date+time string, plus the latest database version is always on Dropbox... BottleOfWater Posts: 7 Joined: Mon Feb 23, 2015 8:12 am KeePass 1.29 #6 Post by BottleOfWater » Fri Apr 03, 2015 11:47 am KeePass Classic has been updated to version 1.29. Changes include:New Features:•The font used in password text boxes can now be changed ('Tools' -> 'Options' -> tab 'Interface' -> button 'Select Password Font').•{FIREFOX} placeholder: if no regular Firefox is installed, KeePass now looks for Firefox ESR.•In the field reference dialog, the field in which the reference will be inserted is now selected as source field by default.•Increased notes size limit to about 2 GB.•The path of the local configuration file can now be changed using the 'KP1_CFG_LOCAL' environment variable.•All KeePass program binaries are now digitally signed (thanks to Certum/Unizeto).Improvements:•Removed 'O' and 'C' access keys from 'OK' and 'Cancel' buttons (instead, press Enter for 'OK' and Esc for 'Cancel').•Upgraded to Boost libraries version 1.57.0.•Various code optimizations.•Minor other improvements.Bugfixes:•AltGr+E (i.e. Ctrl+Alt+E) does not focus the quick search box anymore. Midas Posts: 6999 Joined: Mon Dec 07, 2009 7:09 am Location: Sol3 Re: KeePass 1.29 #9 Post by Midas » Tue Apr 07, 2015 3:01 am I am Baas wrote:Let me know if that does not work, lol.Now, we wouldn't want to put that kind of pressure on our beloved moderator, would we? webfork Posts: 10837 Joined: Wed Apr 11, 2007 8:06 pm Location: US, Texas Contact: Re: KeePass 1.29 #10 Post by webfork » Thu Apr 09, 2015 6:00 pm Midas wrote:I am Baas wrote:Let me know if that does not work, lol.Now, we wouldn't want to put that kind of pressure on our beloved moderator, would we? This does bring up a sort of sneaking feeling that the "Update" subforum is losing it's purpose since more updates are being listed in Submission, but sure.Edit: just collected all the other Keepass updates into a single thread (still under Updates). webfork Posts: 10837 Joined: Wed Apr 11, 2007 8:06 pm Location: US, Texas Contact: Re: Keepass Portable #12 Post by webfork » Sun Apr 17, 2016 3:39 pm Update here: I have been very reluctant to get
2025-03-27Document Title:===============KeePass Password Safe 1.22 - Encoding Filter VulnerabilityReferences (Source):==================== Date:=============2012-06-23Vulnerability Laboratory ID (VL-ID):====================================615Common Vulnerability Scoring System:====================================3Product & Service Introduction:===============================KeePass is a very famous & free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish).(Copy of the Vendor Homepage: )Abstract Advisory Information:==============================The Vulnerability Laboratory Research Team discovered a software filter & validation vulnerability in the KeePass Password Manager v1.22 & older versions.Vulnerability Disclosure Timeline:==================================2012-06-13: Researcher Notification & Coordination (Benjamin Kunz Mejri - Vulnerability Labs)2012-06-14: Vendor Notification (Keepass Developer Team)2012-06-20: Vendor Response/Feedback (Keepass Developer Team)2012-06-26: Public Disclosure (Vulnerability Laboratory)2012-07-01: Vendor Fix/Patch (Keepass Developer Team)Discovery Status:=================PublishedAffected Product(s):====================Domenic ReichlProduct: Keypass Password Safe 1.22 & older versionsExploitation Technique:=======================RemoteSeverity Level:===============LowTechnical Details & Description:================================A software filter encoding validation vulnerability has been discovered in the KeePass Password Manager v1.22 & older versions.The bug allows an attacker (local) to implement/inject malicious script code when processing to export a manipulated database file.The vulnerability is located in the validation of the html/xml export function/module & the connected vulnerable domain/url parameter. URLs of entries are embedded in the exported HTML file without secure parse of the XML against special chars. Attackers can inject a url by add to the dabase. The execution occurs when the URL (domain) field of an entry contains a malicious script code, this will be executed when the exported as HTML file via browser.Exploitation of the vulnerabilitiy requires a manipulated url with malicious script code, a logging server with chmod 777, a listing file
2025-04-01