├── .github └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── config ├── __init__.py ├── colors.py ├── constants.py ├── decorators.py ├── manager.py └── messages.py ├── modules ├── __init__.py ├── applications │ ├── __init__.py │ ├── discord.py │ ├── epicgames.py │ ├── minecraft.py │ ├── postgresql.py │ └── uplay.py ├── browsers │ ├── __init__.py │ ├── bookmarks.py │ ├── chromium.py │ └── history.py ├── network │ ├── __init__.py │ ├── network.py │ └── wifi_passwords.py └── systeminfo │ ├── __init__.py │ └── system.py ├── recover.py └── requirements.txt /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/colors.py -------------------------------------------------------------------------------- /config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/constants.py -------------------------------------------------------------------------------- /config/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/decorators.py -------------------------------------------------------------------------------- /config/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/manager.py -------------------------------------------------------------------------------- /config/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/config/messages.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/__init__.py -------------------------------------------------------------------------------- /modules/applications/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/discord.py -------------------------------------------------------------------------------- /modules/applications/epicgames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/epicgames.py -------------------------------------------------------------------------------- /modules/applications/minecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/minecraft.py -------------------------------------------------------------------------------- /modules/applications/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/postgresql.py -------------------------------------------------------------------------------- /modules/applications/uplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/applications/uplay.py -------------------------------------------------------------------------------- /modules/browsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/browsers/__init__.py -------------------------------------------------------------------------------- /modules/browsers/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/browsers/bookmarks.py -------------------------------------------------------------------------------- /modules/browsers/chromium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/browsers/chromium.py -------------------------------------------------------------------------------- /modules/browsers/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/browsers/history.py -------------------------------------------------------------------------------- /modules/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/network/__init__.py -------------------------------------------------------------------------------- /modules/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/network/network.py -------------------------------------------------------------------------------- /modules/network/wifi_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/network/wifi_passwords.py -------------------------------------------------------------------------------- /modules/systeminfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/systeminfo/__init__.py -------------------------------------------------------------------------------- /modules/systeminfo/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/modules/systeminfo/system.py -------------------------------------------------------------------------------- /recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/recover.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirusha-adi/Data-Recovery/HEAD/requirements.txt --------------------------------------------------------------------------------