├── .gitignore ├── ATCmd_manuals ├── 3GPP.pdf ├── 3GPP.pdf_extracted_ATCmd_backup ├── SIM900_AT Command Manual_V1.11.pdf ├── SIM900_AT Command Manual_V1.11.pdf_extracted_ATCmd ├── Telit_AT_Commands_Reference_Guide_r24_B.pdf ├── Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd ├── Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd_tables ├── gtm-203m-3gwa_atcommands_manual.pdf └── gtm-203m-3gwa_atcommands_manual.pdf_extracted_ATCmd ├── ATFuzzer_documentation.pdf ├── README.md ├── adb-reboot-wait.sh ├── afl_fuzzer.py ├── atCmdExtractor.py ├── atCmdInterface.py ├── commandGrammar.json ├── executeFuzzer.py ├── extracted_ATCmd.txt ├── extractor.py ├── grammarFuzzer.py ├── grammarModifier.py ├── inputGen.py ├── log ├── atsend.log └── grammarFuzzer_log.json ├── multiGrammarFuzzer.py ├── requirements.txt ├── results ├── Nexus5_all_+COPS.txt ├── Nexus5_option_all_D.txt ├── Nexus5_option_all_D_1.txt ├── Nexus5_option_all_I.txt ├── dev.txt ├── log ├── result └── test.txt ├── run_how_to ├── smartphones_setup_instructions.md ├── test.bat ├── test.sh ├── usbswitcher ├── usbswitcher.c └── utilityFunctions.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .vscode/* 3 | -------------------------------------------------------------------------------- /ATCmd_manuals/3GPP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/3GPP.pdf -------------------------------------------------------------------------------- /ATCmd_manuals/3GPP.pdf_extracted_ATCmd_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/3GPP.pdf_extracted_ATCmd_backup -------------------------------------------------------------------------------- /ATCmd_manuals/SIM900_AT Command Manual_V1.11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/SIM900_AT Command Manual_V1.11.pdf -------------------------------------------------------------------------------- /ATCmd_manuals/SIM900_AT Command Manual_V1.11.pdf_extracted_ATCmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/SIM900_AT Command Manual_V1.11.pdf_extracted_ATCmd -------------------------------------------------------------------------------- /ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf -------------------------------------------------------------------------------- /ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd -------------------------------------------------------------------------------- /ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd_tables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/Telit_AT_Commands_Reference_Guide_r24_B.pdf_extracted_ATCmd_tables -------------------------------------------------------------------------------- /ATCmd_manuals/gtm-203m-3gwa_atcommands_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/gtm-203m-3gwa_atcommands_manual.pdf -------------------------------------------------------------------------------- /ATCmd_manuals/gtm-203m-3gwa_atcommands_manual.pdf_extracted_ATCmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATCmd_manuals/gtm-203m-3gwa_atcommands_manual.pdf_extracted_ATCmd -------------------------------------------------------------------------------- /ATFuzzer_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/ATFuzzer_documentation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/README.md -------------------------------------------------------------------------------- /adb-reboot-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/adb-reboot-wait.sh -------------------------------------------------------------------------------- /afl_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/afl_fuzzer.py -------------------------------------------------------------------------------- /atCmdExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/atCmdExtractor.py -------------------------------------------------------------------------------- /atCmdInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/atCmdInterface.py -------------------------------------------------------------------------------- /commandGrammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/commandGrammar.json -------------------------------------------------------------------------------- /executeFuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/executeFuzzer.py -------------------------------------------------------------------------------- /extracted_ATCmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/extracted_ATCmd.txt -------------------------------------------------------------------------------- /extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/extractor.py -------------------------------------------------------------------------------- /grammarFuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/grammarFuzzer.py -------------------------------------------------------------------------------- /grammarModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/grammarModifier.py -------------------------------------------------------------------------------- /inputGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/inputGen.py -------------------------------------------------------------------------------- /log/atsend.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/log/atsend.log -------------------------------------------------------------------------------- /log/grammarFuzzer_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/log/grammarFuzzer_log.json -------------------------------------------------------------------------------- /multiGrammarFuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/multiGrammarFuzzer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/Nexus5_all_+COPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/Nexus5_all_+COPS.txt -------------------------------------------------------------------------------- /results/Nexus5_option_all_D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/Nexus5_option_all_D.txt -------------------------------------------------------------------------------- /results/Nexus5_option_all_D_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/Nexus5_option_all_D_1.txt -------------------------------------------------------------------------------- /results/Nexus5_option_all_I.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/Nexus5_option_all_I.txt -------------------------------------------------------------------------------- /results/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/dev.txt -------------------------------------------------------------------------------- /results/log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/result -------------------------------------------------------------------------------- /results/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/results/test.txt -------------------------------------------------------------------------------- /run_how_to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/run_how_to -------------------------------------------------------------------------------- /smartphones_setup_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/smartphones_setup_instructions.md -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/test.bat -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/test.sh -------------------------------------------------------------------------------- /usbswitcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/usbswitcher -------------------------------------------------------------------------------- /usbswitcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/usbswitcher.c -------------------------------------------------------------------------------- /utilityFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SysNetS/ATFuzzer/HEAD/utilityFunctions.py --------------------------------------------------------------------------------