create fake password manager export
Im looking to create a real looking .cvs or .json file as if it was exported from a password manager.
- E-Mail should always be the same and of my choice. Username should not be weird/random letters.
- Websites should be real, random standard websites like facebook, twitter, instagram etc. no weird stuff.
- bonus if it has credit cards or notes like "bitcoin wallet".
I found mockaroo, but the stuff it generates is too random. Any other tools that are suitable for this and can be used by a noob?
Many thanks!
12 replies
This sort of thing is trivial to do with Python. If you have to do stuff like this often, it's definitely worth investing a few hours into learning it.
It's not really important, more like a joke born out of boredom. But now if someone finds my veracrypt usb and manages to crack the first password, they will be trolled a bit and can read this beautiful diary entry (which GPT wrote)
😅
I'm a rubyist so I'd use ruby + faker, but there's a port of faker for just about any language...
This would be pretty easy to script with a fake data generator like mimesis, that can use existing providers, choose random options from a given set, and allows the creation of custom providers (e.g. pick a random website from a file of valid websites that you would like it to use)
Export a real one then modify it
ya peobaby faster than figuring out how to automate it 😅
Sounds like a pretty niche task. Probably easiest to write a python or bash script to do it, maybe you could start with a real export and remove all the passwords, then add newly generated ones with a simple regex find and replace.
I would not recommend using a real one and modifying it. As it creates creates a list of sites that can be targeted for other forms of entry. Like social engineering and recovery methods.
i made a real one with lastpass and exported them, but none of the accounts exist and i dont use any of the sites.
ah that makes more sense
I would suggest to write a Python script together with https://pypi.org/project/Faker/ - might not be the noob-friendliest, but also not too hard to do
Export a real one then modify it