Coder Social home page Coder Social logo

veler / pazword Goto Github PK

View Code? Open in Web Editor NEW
91.0 91.0 21.0 18.11 MB

A password manager made in UWP technology

Home Page: https://pazword.velersoftware.com/

License: MIT License

C# 100.00%
csharp dropbox onedrive password-generator password-manager security uwp

pazword's People

Contributors

christophe-ch avatar danil-podobin avatar hmaiga avatar veler avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

pazword's Issues

More advanced password generator

A way more advanced password generator. Don't exactly understand the length cap of 32.

Some options to consider:

Non-pronouncable:
image

Pronouncable:
image

Some account icons don't get resolved, and some other get wrong

Describe the bug
Adding an account like PayPal doesn't succeed to find the account icon.

Screenshots
image

Suggestion to fix
When no icon is found, try to get the favicon of the website. Also, try to check if there is a service online that could give the URL of a website based on a company name.

The PaZword logo is too small on the Start Menu & taskbar

Describe the bug
Compared to Office apps, the PaZword logo is smaller.
It would be nice to have it streamlined to make it feel like it belong to the family. :)

To Reproduce
Steps to notice the differences :

  1. Pin PaZword to the taskbar
  2. Pin PaZword on the Start Screen

Expected behavior
Please make the logo bigger.
(Perfect customer request for an advertisement agency ! ๐Ÿ˜„ )

Screenshots
If applicable, add screenshots to help explain your problem.
Annotation 2020-07-01 174824
Annotation 2020-07-01 174927

Desktop:

  • OS: Windows 10
  • Version 2004

Additional context
Good luck ! ๐Ÿ˜›

Needs to support .kdbx databases

Would love to use this app, looks like a great improvement on lots of windows password managers. Unfortunately lack of .kdbx database support is a dealbreaker, as i use a single database across multiple devices.

Don't use the same IV when encrypting

Following up from my comment on your post :)

If I understand your code correctly, it looks like you're using the same _randomBufferCBC as the IV to encrypt all values in the database. You're suing AES-CBC, so this isn't as terrible a vulnerability as it would be if you were using GTM mode, but this is still a problem.

It is, however, safe to randomly generate an IV for each encrypted value and store it (in readable form) alongside the encrypted content, e.g.

var iv = CryptographicBuffer.GenerateRandom(32);
var encryptedBinaryData = CryptographicEngine.Encrypt(cryptographicKey, binaryData, iv);
var encryptedStringData = CryptographicBuffer.EncodeToBase64String(iv) +
  ":" + CryptographicBuffer.EncodeToBase64String(encryptedBinaryData);

Some more info: https://defuse.ca/cbcmodeiv.htm

Browser plugin

This needs a browser plugin for automated login and password generation.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.