{"id":19782373,"url":"https://github.com/infinitifall/stateless-pm","last_synced_at":"2025-07-21T11:06:24.598Z","repository":{"id":165578993,"uuid":"567552089","full_name":"Infinitifall/stateless-pm","owner":"Infinitifall","description":"A stateless password manager that deterministically generates passwords from scratch every time","archived":false,"fork":false,"pushed_at":"2024-01-01T06:31:54.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T12:56:45.331Z","etag":null,"topics":["password","password-generator","password-manager","passwords","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Infinitifall.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-18T02:57:40.000Z","updated_at":"2024-05-31T18:47:30.000Z","dependencies_parsed_at":"2023-12-17T23:19:58.049Z","dependency_job_id":"b71f23e0-7173-456d-97b6-1c2173ba9c98","html_url":"https://github.com/Infinitifall/stateless-pm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Infinitifall/stateless-pm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infinitifall%2Fstateless-pm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infinitifall%2Fstateless-pm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infinitifall%2Fstateless-pm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infinitifall%2Fstateless-pm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Infinitifall","download_url":"https://codeload.github.com/Infinitifall/stateless-pm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infinitifall%2Fstateless-pm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266287824,"owners_count":23905461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["password","password-generator","password-manager","passwords","python"],"created_at":"2024-11-12T06:04:58.381Z","updated_at":"2025-07-21T11:06:24.371Z","avatar_url":"https://github.com/Infinitifall.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stateless Password Manager\n\nA password manager without any storage (stateless). Passwords are generated from scratch each time, given a Website domain / App name and a master password. The process is deterministic and will produce the same password at any time and on any device.\n\n- Smaller attack surface - there is nothing to hack\n- No password syncing - there is nothing to sync\n\n\n## Install\n\n- **Windows**\n    1. Have [Python](https://www.python.org/downloads/) installed\n    2. [Download stateless-pm](https://github.com/Infinitifall/stateless-pm/archive/refs/heads/main.zip) and unzip the folder\n    3. Double click on `run_on_windows.bat`\n\n\n- **Linux/macOS/BSD**\n    ```bash\n    # clone repo\n    git clone https://github.com/Infinitifall/stateless-pm\n    cd stateless-pm\n    \n    # run\n    ./run_on_linux.sh\n    ```\n\n\n## Run\n\n- Generating a password for a website\n    ```\n    $ ./run_on_linux.sh\n\n    Enter Website domain or App name: wikipedia.org\n    Master password (invisible):\n    Use default settings? [Y/n]\n    Generating a password...\n    Couldn't copy password to clipboard\n    Print password to terminal instead? [Y/n]\n\n    Password 0:\n                    )MZ9(O2N%P9$IU38\n\n    Generate alternative password? [y/N] n\n\n    ```\n\n- Generating a 6 digit pin\n\n    ```\n    $ ./run_on_linux.sh\n\n    Enter Website domain or App name: examplebank.com\n    Master password (invisible):\n    Use default settings? [Y/n] n\n    Enter password length (default 16): 6\n    Include \"lowercase\" characters? [Y/n] n\n    Include \"uppercase\" characters? [Y/n] n\n    Include \"numbers\" characters? [Y/n]\n    Include \"special\" characters? [Y/n] n\n    Generating a password...\n    Couldn't copy password to clipboard\n    Print password to terminal instead? [Y/n]\n\n    Password 0:\n                    662188\n\n    Generate alternative password? [y/N] n\n\n    ```\n\n- Generating multiple passwords for multiple accounts\n\n    ```\n    $ ./run_on_linux.sh\n\n    Enter Website domain or App name: Instagram\n    Master password (invisible):\n    Use default settings? [Y/n]\n    Generating a password...\n    Couldn't copy password to clipboard\n    Print password to terminal instead? [Y/n]\n\n    Password 0:\n                    (!jh!\u0026e0I6VjDY2q\n\n    Generate alternative password? [y/N] y\n    Generating a password...\n    Couldn't copy password to clipboard\n    Print password to terminal instead? [Y/n]\n\n    Password 1:\n                    !z*s9@s(ukoD7We8\n\n    Generate alternative password? [y/N] y\n    Generating a password...\n    Couldn't copy password to clipboard\n    Print password to terminal instead? [Y/n]\n\n    Password 2:\n                    \u0026o2a71@^09ut5I(Y\n\n    Generate alternative password? [y/N] n\n\n    ```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfinitifall%2Fstateless-pm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfinitifall%2Fstateless-pm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfinitifall%2Fstateless-pm/lists"}