├── 01_Advanced_Linux ├── 1.1_environmet_variable.md ├── 1.2_special_permission.md ├── 1.3_Linux_Link.md └── 1.4_command_injection.md ├── 02_knowledge_foundation ├── 2.1_shell.md ├── 2.2_Knowledge_recap.md ├── 2.3_redirection_pipeline_sequencing.md ├── 2.4_expension_and_useful_command.md ├── example_list.txt ├── test.txt └── username.txt ├── 03_Arithmetic_Expression └── 3.1_math_operator.md ├── 04_branching_and_looping ├── 4.1_Testing_and_comparism.md ├── 4.2_conditional_branching.md └── 4.3_looping.md ├── 05_Data_type_and_Array └── 5.1_datatype_array.md ├── 06_API_and_JSON └── 6.1_API_and_Json.md ├── 07_Function └── 7.1_function_basic.md ├── 08_Regular_Expression ├── 8.1_Regular_expression.md └── file.txt ├── P1_basic_projects ├── p-1.1_template_project │ └── 01_template.md └── p-1.2_Publice_IP_Location_Finder_project │ ├── Project2.drawio.png │ ├── location.sh │ ├── location_optimize.sh │ ├── location_raw.sh │ └── p-1.2.1_essential_knowledge.md ├── P2_Ethical_Hacking_Script ├── p-2.1_DNS_Recon.sh └── p-2.2_banner_grabbing.sh ├── README.md ├── bash_program ├── 01_advanced_linux │ └── userinfo.sh ├── 02_Knowledge_Foundation │ └── shebang.sh ├── 04_branching_and_looping │ ├── caseTest.sh │ ├── directory.sh │ ├── elif.sh │ ├── for_loop.sh │ ├── for_loop_2.sh │ ├── if.sh │ ├── if_else.sh │ ├── until.sh │ ├── update_date.sh │ └── while_loop.sh ├── 06_API_and_Json │ ├── json_data.json │ └── json_demo.sh └── 2.2_redirection_pipe_sequencing │ └── even_odd.sh ├── photo ├── Linux.png ├── Success.png ├── admin.png ├── api1.png ├── branch1.png ├── elif.png ├── else.png ├── email_spoof.png ├── gpu.png ├── if.png ├── levle2.png ├── link.png ├── recovery.png ├── reg.png ├── regex1.png ├── shell.png ├── textbook.png ├── update.png ├── well_code.png └── while.png └── raw_script └── eternalblue.sh /01_Advanced_Linux/1.1_environmet_variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/01_Advanced_Linux/1.1_environmet_variable.md -------------------------------------------------------------------------------- /01_Advanced_Linux/1.2_special_permission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/01_Advanced_Linux/1.2_special_permission.md -------------------------------------------------------------------------------- /01_Advanced_Linux/1.3_Linux_Link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/01_Advanced_Linux/1.3_Linux_Link.md -------------------------------------------------------------------------------- /01_Advanced_Linux/1.4_command_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/01_Advanced_Linux/1.4_command_injection.md -------------------------------------------------------------------------------- /02_knowledge_foundation/2.1_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/2.1_shell.md -------------------------------------------------------------------------------- /02_knowledge_foundation/2.2_Knowledge_recap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/2.2_Knowledge_recap.md -------------------------------------------------------------------------------- /02_knowledge_foundation/2.3_redirection_pipeline_sequencing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/2.3_redirection_pipeline_sequencing.md -------------------------------------------------------------------------------- /02_knowledge_foundation/2.4_expension_and_useful_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/2.4_expension_and_useful_command.md -------------------------------------------------------------------------------- /02_knowledge_foundation/example_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/example_list.txt -------------------------------------------------------------------------------- /02_knowledge_foundation/test.txt: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /02_knowledge_foundation/username.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/02_knowledge_foundation/username.txt -------------------------------------------------------------------------------- /03_Arithmetic_Expression/3.1_math_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/03_Arithmetic_Expression/3.1_math_operator.md -------------------------------------------------------------------------------- /04_branching_and_looping/4.1_Testing_and_comparism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/04_branching_and_looping/4.1_Testing_and_comparism.md -------------------------------------------------------------------------------- /04_branching_and_looping/4.2_conditional_branching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/04_branching_and_looping/4.2_conditional_branching.md -------------------------------------------------------------------------------- /04_branching_and_looping/4.3_looping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/04_branching_and_looping/4.3_looping.md -------------------------------------------------------------------------------- /05_Data_type_and_Array/5.1_datatype_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/05_Data_type_and_Array/5.1_datatype_array.md -------------------------------------------------------------------------------- /06_API_and_JSON/6.1_API_and_Json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/06_API_and_JSON/6.1_API_and_Json.md -------------------------------------------------------------------------------- /07_Function/7.1_function_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/07_Function/7.1_function_basic.md -------------------------------------------------------------------------------- /08_Regular_Expression/8.1_Regular_expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/08_Regular_Expression/8.1_Regular_expression.md -------------------------------------------------------------------------------- /08_Regular_Expression/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/08_Regular_Expression/file.txt -------------------------------------------------------------------------------- /P1_basic_projects/p-1.1_template_project/01_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.1_template_project/01_template.md -------------------------------------------------------------------------------- /P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/Project2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/Project2.drawio.png -------------------------------------------------------------------------------- /P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location.sh -------------------------------------------------------------------------------- /P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location_optimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location_optimize.sh -------------------------------------------------------------------------------- /P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location_raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/location_raw.sh -------------------------------------------------------------------------------- /P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/p-1.2.1_essential_knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P1_basic_projects/p-1.2_Publice_IP_Location_Finder_project/p-1.2.1_essential_knowledge.md -------------------------------------------------------------------------------- /P2_Ethical_Hacking_Script/p-2.1_DNS_Recon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P2_Ethical_Hacking_Script/p-2.1_DNS_Recon.sh -------------------------------------------------------------------------------- /P2_Ethical_Hacking_Script/p-2.2_banner_grabbing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/P2_Ethical_Hacking_Script/p-2.2_banner_grabbing.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/README.md -------------------------------------------------------------------------------- /bash_program/01_advanced_linux/userinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/01_advanced_linux/userinfo.sh -------------------------------------------------------------------------------- /bash_program/02_Knowledge_Foundation/shebang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/02_Knowledge_Foundation/shebang.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/caseTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/caseTest.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/directory.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/elif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/elif.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/for_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/for_loop.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/for_loop_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/for_loop_2.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/if.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/if.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/if_else.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/if_else.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/until.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/until.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/update_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/update_date.sh -------------------------------------------------------------------------------- /bash_program/04_branching_and_looping/while_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/04_branching_and_looping/while_loop.sh -------------------------------------------------------------------------------- /bash_program/06_API_and_Json/json_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/06_API_and_Json/json_data.json -------------------------------------------------------------------------------- /bash_program/06_API_and_Json/json_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/06_API_and_Json/json_demo.sh -------------------------------------------------------------------------------- /bash_program/2.2_redirection_pipe_sequencing/even_odd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/bash_program/2.2_redirection_pipe_sequencing/even_odd.sh -------------------------------------------------------------------------------- /photo/Linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/Linux.png -------------------------------------------------------------------------------- /photo/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/Success.png -------------------------------------------------------------------------------- /photo/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/admin.png -------------------------------------------------------------------------------- /photo/api1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/api1.png -------------------------------------------------------------------------------- /photo/branch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/branch1.png -------------------------------------------------------------------------------- /photo/elif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/elif.png -------------------------------------------------------------------------------- /photo/else.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/else.png -------------------------------------------------------------------------------- /photo/email_spoof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/email_spoof.png -------------------------------------------------------------------------------- /photo/gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/gpu.png -------------------------------------------------------------------------------- /photo/if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/if.png -------------------------------------------------------------------------------- /photo/levle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/levle2.png -------------------------------------------------------------------------------- /photo/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/link.png -------------------------------------------------------------------------------- /photo/recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/recovery.png -------------------------------------------------------------------------------- /photo/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/reg.png -------------------------------------------------------------------------------- /photo/regex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/regex1.png -------------------------------------------------------------------------------- /photo/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/shell.png -------------------------------------------------------------------------------- /photo/textbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/textbook.png -------------------------------------------------------------------------------- /photo/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/update.png -------------------------------------------------------------------------------- /photo/well_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/well_code.png -------------------------------------------------------------------------------- /photo/while.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/photo/while.png -------------------------------------------------------------------------------- /raw_script/eternalblue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dr-404/bash_scripting/HEAD/raw_script/eternalblue.sh --------------------------------------------------------------------------------