├── .gitignore ├── .idea ├── .gitignore ├── KERnano.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── General_Tools ├── __init__.py ├── chmoder.py ├── general_main.py ├── leet_speak.py └── nmaker.py ├── Ignor_Folder └── credit-file.txt ├── Kernano_Package ├── Error_Handler.py ├── __init__.py ├── cred_script.py └── kp_main.py ├── LICENSE ├── PDF_Kit ├── __init__.py ├── password_remover.py ├── pdfk_main.py └── text_extractor.py ├── Pentest_Tools ├── TUC.py ├── __init__.py ├── b64.py ├── hlpr.py ├── port_scanner.py └── ptt_main.py ├── README.md ├── The_Executables ├── KERnano-Linux_v1 └── KERnano_Windows_v1.1.exe ├── Wordlister_Package ├── PDFextracted.txt ├── PDFfunction.py ├── TEXTfunction.py ├── __init__.py ├── testfile.txt ├── testfile.txt_Wordlist.txt └── wlp_main.py ├── main.py ├── main.spec └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/KERnano.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.idea/KERnano.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /General_Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General_Tools/chmoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/General_Tools/chmoder.py -------------------------------------------------------------------------------- /General_Tools/general_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/General_Tools/general_main.py -------------------------------------------------------------------------------- /General_Tools/leet_speak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/General_Tools/leet_speak.py -------------------------------------------------------------------------------- /General_Tools/nmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/General_Tools/nmaker.py -------------------------------------------------------------------------------- /Ignor_Folder/credit-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Ignor_Folder/credit-file.txt -------------------------------------------------------------------------------- /Kernano_Package/Error_Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Kernano_Package/Error_Handler.py -------------------------------------------------------------------------------- /Kernano_Package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kernano_Package/cred_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Kernano_Package/cred_script.py -------------------------------------------------------------------------------- /Kernano_Package/kp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Kernano_Package/kp_main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/LICENSE -------------------------------------------------------------------------------- /PDF_Kit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PDF_Kit/password_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/PDF_Kit/password_remover.py -------------------------------------------------------------------------------- /PDF_Kit/pdfk_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/PDF_Kit/pdfk_main.py -------------------------------------------------------------------------------- /PDF_Kit/text_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/PDF_Kit/text_extractor.py -------------------------------------------------------------------------------- /Pentest_Tools/TUC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Pentest_Tools/TUC.py -------------------------------------------------------------------------------- /Pentest_Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pentest_Tools/b64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Pentest_Tools/b64.py -------------------------------------------------------------------------------- /Pentest_Tools/hlpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Pentest_Tools/hlpr.py -------------------------------------------------------------------------------- /Pentest_Tools/port_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Pentest_Tools/port_scanner.py -------------------------------------------------------------------------------- /Pentest_Tools/ptt_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Pentest_Tools/ptt_main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/README.md -------------------------------------------------------------------------------- /The_Executables/KERnano-Linux_v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/The_Executables/KERnano-Linux_v1 -------------------------------------------------------------------------------- /The_Executables/KERnano_Windows_v1.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/The_Executables/KERnano_Windows_v1.1.exe -------------------------------------------------------------------------------- /Wordlister_Package/PDFextracted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Wordlister_Package/PDFextracted.txt -------------------------------------------------------------------------------- /Wordlister_Package/PDFfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Wordlister_Package/PDFfunction.py -------------------------------------------------------------------------------- /Wordlister_Package/TEXTfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Wordlister_Package/TEXTfunction.py -------------------------------------------------------------------------------- /Wordlister_Package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wordlister_Package/testfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Wordlister_Package/testfile.txt -------------------------------------------------------------------------------- /Wordlister_Package/testfile.txt_Wordlist.txt: -------------------------------------------------------------------------------- 1 | Circular 2 | Import 3 | Problem 4 | Python 5 | Solutions 6 | and 7 | -------------------------------------------------------------------------------- /Wordlister_Package/wlp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/Wordlister_Package/wlp_main.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/main.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exeCODEable/KERnano/HEAD/requirements.txt --------------------------------------------------------------------------------