├── .gitignore ├── README.md ├── app ├── main.py ├── requirements.txt ├── routes │ └── backup_routes.py └── utils │ ├── crypto_utils.py │ ├── dlp.py │ ├── lightweight_ml_regex_dlp_copy.py │ └── manual_rgx_context_dlp_copy.py ├── templates ├── backup.html └── scan.html ├── testing_folder ├── test1.txt ├── test2.txt ├── test4.txt ├── text3.txt ├── text5.txt ├── text6.txt ├── text7.txt └── text8.txt └── train_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/README.md -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/main.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/routes/backup_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/routes/backup_routes.py -------------------------------------------------------------------------------- /app/utils/crypto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/utils/crypto_utils.py -------------------------------------------------------------------------------- /app/utils/dlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/utils/dlp.py -------------------------------------------------------------------------------- /app/utils/lightweight_ml_regex_dlp_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/utils/lightweight_ml_regex_dlp_copy.py -------------------------------------------------------------------------------- /app/utils/manual_rgx_context_dlp_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/app/utils/manual_rgx_context_dlp_copy.py -------------------------------------------------------------------------------- /templates/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/templates/backup.html -------------------------------------------------------------------------------- /templates/scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/templates/scan.html -------------------------------------------------------------------------------- /testing_folder/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/test1.txt -------------------------------------------------------------------------------- /testing_folder/test2.txt: -------------------------------------------------------------------------------- 1 | Sample PAN card number: +91 9624812122 2 | Nothing else here. 3 | -------------------------------------------------------------------------------- /testing_folder/test4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/test4.txt -------------------------------------------------------------------------------- /testing_folder/text3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/text3.txt -------------------------------------------------------------------------------- /testing_folder/text5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/text5.txt -------------------------------------------------------------------------------- /testing_folder/text6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/text6.txt -------------------------------------------------------------------------------- /testing_folder/text7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/text7.txt -------------------------------------------------------------------------------- /testing_folder/text8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/testing_folder/text8.txt -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethicalByte1443/Intelligent-Secure-Backup-System/HEAD/train_model.py --------------------------------------------------------------------------------