{"id":28211349,"url":"https://github.com/airborne-commando/user-email-gen","last_synced_at":"2025-06-10T10:32:40.642Z","repository":{"id":259988100,"uuid":"879990193","full_name":"airborne-commando/user-email-gen","owner":"airborne-commando","description":"username and email gen built in python, for both outlook and proton","archived":false,"fork":false,"pushed_at":"2024-11-17T09:25:25.000Z","size":138,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T18:09:19.576Z","etag":null,"topics":["flask-application","opensourceintelligence","opsec","outlook","password-generator-python","protonmail","python","username-email-gen","username-generator"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/airborne-commando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-10-28T23:08:27.000Z","updated_at":"2024-11-17T09:25:28.000Z","dependencies_parsed_at":"2024-10-29T00:19:44.279Z","dependency_job_id":"b0b6cdef-f801-477b-b962-99742673eeb6","html_url":"https://github.com/airborne-commando/user-email-gen","commit_stats":null,"previous_names":["nthompson096/user-email-gen","airborne-commando/user-email-gen"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airborne-commando%2Fuser-email-gen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airborne-commando%2Fuser-email-gen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airborne-commando%2Fuser-email-gen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airborne-commando%2Fuser-email-gen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/airborne-commando","download_url":"https://codeload.github.com/airborne-commando/user-email-gen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airborne-commando%2Fuser-email-gen/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259056179,"owners_count":22798891,"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":["flask-application","opensourceintelligence","opsec","outlook","password-generator-python","protonmail","python","username-email-gen","username-generator"],"created_at":"2025-05-17T18:09:19.617Z","updated_at":"2025-06-10T10:32:40.631Z","avatar_url":"https://github.com/airborne-commando.png","language":"Python","readme":"# Email username gen for both proton mail and outlook (cock.li is optional):\n\nTo install and just run for a CLI just run\n\n    python email-gen.py \n    \n\nFor HTML just simply do these steps:\n\n    python -m venv venv\n\n\u003c/br\u003e\n\n    source venv/bin/activate\n\n\u003c/br\u003e\n\n    pip install flask\n\nafter that run\n\n    python app.py\n\nFor a HTML page\n\n\nFrom there you should be given a list of domains to choose from or if you want you can choose a random one from cock.li (optional, see below)\n\nwhen executed it will display a username and password for outlook, proton and cock.li (optional)\n\nYou will still need to solve a captcha for cock.li if you decide to use this.\n\n* Use a VPN, mullvad (if you decided to not edit the webapp and index.html)\n* OR if you'd want and trust cock.li, uncomment these lines\n\napp.py:\n\n        # Uncomment this line out for cock.li and comment the next line out if you choose to use cock.li\n    \n        # return render_template('index.html', domains=d, selected_domains=selected_domains, result=result,\n        #                        first_name=random_first_name, last_name=random_last_name, username=random_username)\n    \n        return render_template('index.html', domains=d, result=result,\n                               first_name=random_first_name, last_name=random_last_name, username=random_username)\n\nin index.html\n\n        \u003cform method=\"post\" id=\"emailForm\"\u003e\n            \u003cdiv class=\"domain-list\"\u003e\n    \u003c!-- Uncomment these lines if you want to reuse cock.li again. --\u003e\n                \u003c!-- {% for domain in domains %} --\u003e\n                \u003c!-- \u003cdiv class=\"domain-item\"\u003e --\u003e\n                    \u003c!-- \u003cinput type=\"checkbox\" id=\"{{ domain }}\" name=\"domains\" value=\"{{ domain }}\"  --\u003e\n                           \u003c!-- {% if domain in selected_domains %}checked{% endif %}\u003e --\u003e\n                    \u003c!-- \u003clabel for=\"{{ domain }}\"\u003e{{ domain }}\u003c/label\u003e --\u003e\n                \u003c!-- \u003c/div\u003e --\u003e\n                \u003c!-- {% endfor %} --\u003e\n            \u003c/div\u003e\n            \u003c!-- \u003cp\u003e\u003csmall\u003eSelect domains you want to generate emails for\u003c/small\u003e\u003c/p\u003e --\u003e\n            \u003cinput type=\"submit\" value=\"Generate\"\u003e\n        \u003c/form\u003e\n\n......\n    \n        \u003c!-- Unomment if you want to keep things checked inside the webapp --\u003e\n    \u003c!--     \u003cscript\u003e\n            document.getElementById('emailForm').addEventListener('submit', function(e) {\n                var checkboxes = document.querySelectorAll('input[name=\"domains\"]:checked');\n                if (checkboxes.length === 0) {\n                    e.preventDefault();\n                    alert('Please select at least one domain.');\n                }\n            });\n        \u003c/script\u003e --\u003e\n\nexmaple output if enabled:\n    \n    1: cock.li\n    2: airmail.cc\n    3: firemail.cc\n    ...\n    Select a domain (1-8) or press Enter for random: 1\n    Cock.li: abramduncan6azj@cock.li | (FE[FYb(8xF'H6r}\u003cRa,9\"Jx8.jn;+9gI`ECWoRo\u0026$MRSCkKjmDe,kzMtHc53%t*\n    ProtonMail: emoryduncan736@proton.me | ]YX~0~PVoav*{J;u5?\\VDTAut*3V_j(~t\u003eCaPS\"mV$^';(*d4avs8{kN2+l80yeT\n    Outlook: makaisnyderbk3p@outlook.com | K*Zd$ih[h\"XgI\"zo\u003cXw(Z\u003c]-:OD*k|OwPje;:o%MJb_\u003c/li/7H0ClWC^LZ1b;z1c\n    your username is: aurorajugglezetta\n    Your password is: 6TD20iN+d!ueP1/|zF\\eCy*K\\fDOMbZ{f!SSX\u003ci:tteD[nwI%GLGb.:vegfXW^b@\n\n\nSeems to be a DNS issue; but the alert just seems to be really REALLY stupid.\n\n\n# Do not abuse this\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fairborne-commando%2Fuser-email-gen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fairborne-commando%2Fuser-email-gen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fairborne-commando%2Fuser-email-gen/lists"}