Announcement —Python & EH.

Hi there. Welcome to the Python and Ethical Hacking section, where we’ll be building our own tools using Python. Posts on Python + Ethical Hacking, will be uploaded from Friday, 4th of September, 2020. The schedule will be the same as the Ethical Hacking & Pentesting category. Which is, Mondays, Wednesdays and Fridays. This will … Continue reading Announcement —Python & EH.

Python. (Part 4)

Looping. For Loops In the previous post we took a look at looping, in the Bash scripting section. We looked at one line for loops, which I'm hoping you went ahead to practice on your own and you are familiar with. We're going to be looking at that but in Python and also while loops, … Continue reading Python. (Part 4)

Python. (Part 3)

Boolean Expressions. A Boolean expression is a logical statement that is either true or false. The above image has 4 bool statements. For bool2, 3 * 3 is equal to 9, which is true but bool4 means that 3 * 3 is not equal to 9, which is obviously false. In layman terms, boolean expressions … Continue reading Python. (Part 3)

Python. (Part 2)

In this post, we'll be looking at Variables, Methods & Functions. Alright! We are going to start building off on scripts, for now, we'll keep it all in one until we need to create new ones. As always, I went ahead and called mine, script.py, yours can be called anything you'd like and don't forget … Continue reading Python. (Part 2)

Python. (Part 1)

Introduction to Python. Welcome to Python. Python is a coding and scripting language, it is commonly used in ethical hacking and all around the world. It's considered one of the best beginner languages to start with, if you've never learnt coding before (I totally agree, as someone who began with C) Python is called a … Continue reading Python. (Part 1)