-
-
Save shadowhand/ef56469f158d9cfd7d1f to your computer and use it in GitHub Desktop.
example of passwordmaker pro (for chrome) profile export
https://github.com/eddieringle/PasswordMaker_X/issues/3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?><RDF:RDF xmlns:NS1="http://passwordmaker.mozdev.org/rdf#" | |
xmlns:NC="http://home.netscape.com/NC-rdf#" | |
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | |
<RDF:Description RDF:about="http://passwordmaker.mozdev.org/defaults" | |
NS1:name="Defaults" | |
NS1:urlToUse="" | |
NS1:whereLeetLB="off" | |
NS1:leetLevelLB="0" | |
NS1:hashAlgorithmLB="hmac-sha1" | |
NS1:passwordLength="16" | |
NS1:usernameTB="" | |
NS1:counter="" | |
NS1:charset="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" | |
NS1:prefix="" | |
NS1:suffix="" | |
NS1:protocolCB="false" | |
NS1:subdomainCB="false" | |
NS1:domainCB="true" | |
NS1:pathCB="false" | |
/> | |
<RDF:Seq RDF:about="http://passwordmaker.mozdev.org/accounts"> | |
<RDF:li RDF:resource="http://passwordmaker.mozdev.org/defaults"/> | |
</RDF:Seq> | |
</RDF:RDF> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The RDF:Description element repeats for each profile, eg:
``` xml``
<RDF:Description RDF:about="rdf:#$CHROME1"
NS1:name="Subdomain"
NS1:urlToUse=""
...
/>
<RDF:Description RDF:about="rdf:#$CHROME2"
...
/>