├── .gitattributes ├── LICENSE ├── README.md ├── data ├── accounts.txt ├── config.json └── proxies.txt ├── main.py └── utils ├── __pycache__ ├── crypto.cpython-311.pyc └── solver.cpython-311.pyc ├── crypto.py ├── enc.js └── solver.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/README.md -------------------------------------------------------------------------------- /data/accounts.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/data/config.json -------------------------------------------------------------------------------- /data/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/data/proxies.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/main.py -------------------------------------------------------------------------------- /utils/__pycache__/crypto.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/utils/__pycache__/crypto.cpython-311.pyc -------------------------------------------------------------------------------- /utils/__pycache__/solver.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/utils/__pycache__/solver.cpython-311.pyc -------------------------------------------------------------------------------- /utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/utils/crypto.py -------------------------------------------------------------------------------- /utils/enc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/utils/enc.js -------------------------------------------------------------------------------- /utils/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtekky/Outlook-Gen/HEAD/utils/solver.py --------------------------------------------------------------------------------