├── .gitignore ├── LICENSE ├── README.md ├── ShoppingList.txt ├── end ├── CH01 │ └── README.md ├── CH02 │ ├── HelloWorld.py │ ├── HelloWorld2.py │ ├── HelloWorld3.py │ ├── README.md │ └── SimpleCalculator.py ├── CH03 │ ├── Conditionals.py │ ├── Funcy.py │ ├── Loopy.py │ ├── README.md │ ├── pinger1.py │ ├── pinger2.py │ ├── pinger3.py │ └── pinger4.py ├── CH04 │ ├── README.md │ ├── ReadFile.py │ ├── ScannerExample.py │ ├── WriteFile.py │ ├── ips.txt │ ├── pinger5.py │ └── pinger6.py ├── CH05 │ ├── ASCIIgen.py │ ├── Base64.py │ ├── CryptExample.py │ ├── README.md │ └── Rot13.py ├── CH06 │ ├── CreateHash1.py │ ├── CreateHash2.py │ ├── README.md │ ├── bruteforceAttack.py │ ├── dictionaryAttack.py │ ├── passHasher.py │ ├── shadow │ ├── top10.txt │ └── top1000.txt ├── CH07 │ ├── Find404.py │ ├── FindClients.py │ ├── FindPotentialHacking.py │ ├── FindStatusCodes.py │ ├── README.md │ └── access.log ├── CH08 │ ├── HaveIBeenPwned.py │ ├── ListRepositories.py │ ├── PeopleInSpace1.py │ └── PeopleInSpace2.py ├── CH09 │ ├── CheckURL.py │ ├── ScanFile.py │ └── test.json ├── CH10 │ ├── README.md │ ├── flask_hello.py │ ├── flask_mvc_space │ │ ├── app.py │ │ ├── models.py │ │ ├── static │ │ │ └── styles.css │ │ └── templates │ │ │ ├── index.html │ │ │ └── result.html │ ├── geometry_managers.py │ ├── tkinter_button.py │ ├── tkinter_dadjokes.py │ ├── tkinter_hello.py │ ├── tkinter_label.py │ └── tkinter_peopleinspace.py └── CH11 │ ├── answer_questions.py │ └── create_image.py └── start ├── CH01 └── README.md ├── CH02 ├── HelloWorld.py ├── HelloWorld2.py ├── HelloWorld3.py ├── README.md └── SimpleCalculator.py ├── CH03 ├── Conditionals.py ├── Funcy.py ├── Loopy.py ├── README.md ├── pinger1.py ├── pinger2.py ├── pinger3.py └── pinger4.py ├── CH04 ├── README.md ├── ReadFile.py ├── ScannerExample.py ├── WriteFile.py ├── ips.txt ├── pinger5.py └── pinger6.py ├── CH05 ├── ASCIIgen.py ├── Base64.py ├── CryptExample.py ├── README.md └── Rot13.py ├── CH06 ├── CreateHash1.py ├── CreateHash2.py ├── README.md ├── bruteforceAttack.py ├── dictionaryAttack.py ├── passHasher.py ├── shadow ├── top10.txt ├── top1000.txt └── top10000000.txt ├── CH07 ├── Find404.py ├── FindClients.py ├── FindPotentialHacking.py ├── FindStatusCodes.py ├── README.md └── access.log ├── CH08 ├── HaveIBeenPwned.py ├── ListRepositories.py ├── PeopleInSpace1.py └── PeopleInSpace2.py ├── CH09 ├── CheckURL.py ├── ScanFile.py └── test.json ├── CH10 ├── README.md ├── geometry_managers.py ├── tkinter_button.py ├── tkinter_dadjokes.py ├── tkinter_hello.py └── tkinter_peopleinspace.py └── CH11 ├── answer_questions.py └── create_image.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/README.md -------------------------------------------------------------------------------- /ShoppingList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/ShoppingList.txt -------------------------------------------------------------------------------- /end/CH01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH01/README.md -------------------------------------------------------------------------------- /end/CH02/HelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH02/HelloWorld.py -------------------------------------------------------------------------------- /end/CH02/HelloWorld2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH02/HelloWorld2.py -------------------------------------------------------------------------------- /end/CH02/HelloWorld3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH02/HelloWorld3.py -------------------------------------------------------------------------------- /end/CH02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH02/README.md -------------------------------------------------------------------------------- /end/CH02/SimpleCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH02/SimpleCalculator.py -------------------------------------------------------------------------------- /end/CH03/Conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/Conditionals.py -------------------------------------------------------------------------------- /end/CH03/Funcy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/Funcy.py -------------------------------------------------------------------------------- /end/CH03/Loopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/Loopy.py -------------------------------------------------------------------------------- /end/CH03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/README.md -------------------------------------------------------------------------------- /end/CH03/pinger1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/pinger1.py -------------------------------------------------------------------------------- /end/CH03/pinger2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/pinger2.py -------------------------------------------------------------------------------- /end/CH03/pinger3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/pinger3.py -------------------------------------------------------------------------------- /end/CH03/pinger4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH03/pinger4.py -------------------------------------------------------------------------------- /end/CH04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/README.md -------------------------------------------------------------------------------- /end/CH04/ReadFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/ReadFile.py -------------------------------------------------------------------------------- /end/CH04/ScannerExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/ScannerExample.py -------------------------------------------------------------------------------- /end/CH04/WriteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/WriteFile.py -------------------------------------------------------------------------------- /end/CH04/ips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/ips.txt -------------------------------------------------------------------------------- /end/CH04/pinger5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/pinger5.py -------------------------------------------------------------------------------- /end/CH04/pinger6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH04/pinger6.py -------------------------------------------------------------------------------- /end/CH05/ASCIIgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH05/ASCIIgen.py -------------------------------------------------------------------------------- /end/CH05/Base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH05/Base64.py -------------------------------------------------------------------------------- /end/CH05/CryptExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH05/CryptExample.py -------------------------------------------------------------------------------- /end/CH05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH05/README.md -------------------------------------------------------------------------------- /end/CH05/Rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH05/Rot13.py -------------------------------------------------------------------------------- /end/CH06/CreateHash1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/CreateHash1.py -------------------------------------------------------------------------------- /end/CH06/CreateHash2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/CreateHash2.py -------------------------------------------------------------------------------- /end/CH06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/README.md -------------------------------------------------------------------------------- /end/CH06/bruteforceAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/bruteforceAttack.py -------------------------------------------------------------------------------- /end/CH06/dictionaryAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/dictionaryAttack.py -------------------------------------------------------------------------------- /end/CH06/passHasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/passHasher.py -------------------------------------------------------------------------------- /end/CH06/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/shadow -------------------------------------------------------------------------------- /end/CH06/top10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/top10.txt -------------------------------------------------------------------------------- /end/CH06/top1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH06/top1000.txt -------------------------------------------------------------------------------- /end/CH07/Find404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/Find404.py -------------------------------------------------------------------------------- /end/CH07/FindClients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/FindClients.py -------------------------------------------------------------------------------- /end/CH07/FindPotentialHacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/FindPotentialHacking.py -------------------------------------------------------------------------------- /end/CH07/FindStatusCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/FindStatusCodes.py -------------------------------------------------------------------------------- /end/CH07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/README.md -------------------------------------------------------------------------------- /end/CH07/access.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH07/access.log -------------------------------------------------------------------------------- /end/CH08/HaveIBeenPwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH08/HaveIBeenPwned.py -------------------------------------------------------------------------------- /end/CH08/ListRepositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH08/ListRepositories.py -------------------------------------------------------------------------------- /end/CH08/PeopleInSpace1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH08/PeopleInSpace1.py -------------------------------------------------------------------------------- /end/CH08/PeopleInSpace2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH08/PeopleInSpace2.py -------------------------------------------------------------------------------- /end/CH09/CheckURL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH09/CheckURL.py -------------------------------------------------------------------------------- /end/CH09/ScanFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH09/ScanFile.py -------------------------------------------------------------------------------- /end/CH09/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH09/test.json -------------------------------------------------------------------------------- /end/CH10/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /end/CH10/flask_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_hello.py -------------------------------------------------------------------------------- /end/CH10/flask_mvc_space/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_mvc_space/app.py -------------------------------------------------------------------------------- /end/CH10/flask_mvc_space/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_mvc_space/models.py -------------------------------------------------------------------------------- /end/CH10/flask_mvc_space/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_mvc_space/static/styles.css -------------------------------------------------------------------------------- /end/CH10/flask_mvc_space/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_mvc_space/templates/index.html -------------------------------------------------------------------------------- /end/CH10/flask_mvc_space/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/flask_mvc_space/templates/result.html -------------------------------------------------------------------------------- /end/CH10/geometry_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/geometry_managers.py -------------------------------------------------------------------------------- /end/CH10/tkinter_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/tkinter_button.py -------------------------------------------------------------------------------- /end/CH10/tkinter_dadjokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/tkinter_dadjokes.py -------------------------------------------------------------------------------- /end/CH10/tkinter_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/tkinter_hello.py -------------------------------------------------------------------------------- /end/CH10/tkinter_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/tkinter_label.py -------------------------------------------------------------------------------- /end/CH10/tkinter_peopleinspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH10/tkinter_peopleinspace.py -------------------------------------------------------------------------------- /end/CH11/answer_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH11/answer_questions.py -------------------------------------------------------------------------------- /end/CH11/create_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/end/CH11/create_image.py -------------------------------------------------------------------------------- /start/CH01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH01/README.md -------------------------------------------------------------------------------- /start/CH02/HelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH02/HelloWorld.py -------------------------------------------------------------------------------- /start/CH02/HelloWorld2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH02/HelloWorld2.py -------------------------------------------------------------------------------- /start/CH02/HelloWorld3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH02/HelloWorld3.py -------------------------------------------------------------------------------- /start/CH02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH02/README.md -------------------------------------------------------------------------------- /start/CH02/SimpleCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH02/SimpleCalculator.py -------------------------------------------------------------------------------- /start/CH03/Conditionals.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # example workign with conditionals 3 | #By -------------------------------------------------------------------------------- /start/CH03/Funcy.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # example workign with Functions 3 | #By -------------------------------------------------------------------------------- /start/CH03/Loopy.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # example workign with Loops 3 | #By -------------------------------------------------------------------------------- /start/CH03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH03/README.md -------------------------------------------------------------------------------- /start/CH03/pinger1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH03/pinger1.py -------------------------------------------------------------------------------- /start/CH03/pinger2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH03/pinger2.py -------------------------------------------------------------------------------- /start/CH03/pinger3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH03/pinger3.py -------------------------------------------------------------------------------- /start/CH03/pinger4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH03/pinger4.py -------------------------------------------------------------------------------- /start/CH04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH04/README.md -------------------------------------------------------------------------------- /start/CH04/ReadFile.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Sample script that reads from a file 3 | # By -------------------------------------------------------------------------------- /start/CH04/ScannerExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH04/ScannerExample.py -------------------------------------------------------------------------------- /start/CH04/WriteFile.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Sample script that writes to a file 3 | # By -------------------------------------------------------------------------------- /start/CH04/ips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH04/ips.txt -------------------------------------------------------------------------------- /start/CH04/pinger5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH04/pinger5.py -------------------------------------------------------------------------------- /start/CH04/pinger6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH04/pinger6.py -------------------------------------------------------------------------------- /start/CH05/ASCIIgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH05/ASCIIgen.py -------------------------------------------------------------------------------- /start/CH05/Base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH05/Base64.py -------------------------------------------------------------------------------- /start/CH05/CryptExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH05/CryptExample.py -------------------------------------------------------------------------------- /start/CH05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH05/README.md -------------------------------------------------------------------------------- /start/CH05/Rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH05/Rot13.py -------------------------------------------------------------------------------- /start/CH06/CreateHash1.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Script that hashes a password 3 | # By -------------------------------------------------------------------------------- /start/CH06/CreateHash2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/CreateHash2.py -------------------------------------------------------------------------------- /start/CH06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/README.md -------------------------------------------------------------------------------- /start/CH06/bruteforceAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/bruteforceAttack.py -------------------------------------------------------------------------------- /start/CH06/dictionaryAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/dictionaryAttack.py -------------------------------------------------------------------------------- /start/CH06/passHasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/passHasher.py -------------------------------------------------------------------------------- /start/CH06/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/shadow -------------------------------------------------------------------------------- /start/CH06/top10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/top10.txt -------------------------------------------------------------------------------- /start/CH06/top1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/top1000.txt -------------------------------------------------------------------------------- /start/CH06/top10000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH06/top10000000.txt -------------------------------------------------------------------------------- /start/CH07/Find404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/Find404.py -------------------------------------------------------------------------------- /start/CH07/FindClients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/FindClients.py -------------------------------------------------------------------------------- /start/CH07/FindPotentialHacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/FindPotentialHacking.py -------------------------------------------------------------------------------- /start/CH07/FindStatusCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/FindStatusCodes.py -------------------------------------------------------------------------------- /start/CH07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/README.md -------------------------------------------------------------------------------- /start/CH07/access.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH07/access.log -------------------------------------------------------------------------------- /start/CH08/HaveIBeenPwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH08/HaveIBeenPwned.py -------------------------------------------------------------------------------- /start/CH08/ListRepositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH08/ListRepositories.py -------------------------------------------------------------------------------- /start/CH08/PeopleInSpace1.py: -------------------------------------------------------------------------------- 1 | # paste code here -------------------------------------------------------------------------------- /start/CH08/PeopleInSpace2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH08/PeopleInSpace2.py -------------------------------------------------------------------------------- /start/CH09/CheckURL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH09/CheckURL.py -------------------------------------------------------------------------------- /start/CH09/ScanFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH09/ScanFile.py -------------------------------------------------------------------------------- /start/CH09/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH09/test.json -------------------------------------------------------------------------------- /start/CH10/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start/CH10/geometry_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH10/geometry_managers.py -------------------------------------------------------------------------------- /start/CH10/tkinter_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH10/tkinter_button.py -------------------------------------------------------------------------------- /start/CH10/tkinter_dadjokes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH10/tkinter_dadjokes.py -------------------------------------------------------------------------------- /start/CH10/tkinter_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH10/tkinter_hello.py -------------------------------------------------------------------------------- /start/CH10/tkinter_peopleinspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH10/tkinter_peopleinspace.py -------------------------------------------------------------------------------- /start/CH11/answer_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH11/answer_questions.py -------------------------------------------------------------------------------- /start/CH11/create_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgoadcom/PythonforCybersecurity/HEAD/start/CH11/create_image.py --------------------------------------------------------------------------------