Python is one of the most commonly use scripting tools. As a cyber security professional it is always good to have a few scripting language up your sleeve. It is always important to be able to understand simple logs and use a scripting tool to get high level...
Python
Python 3.9.2 – Taking input from command line – using sys module
The sys module is a common python module to handle system inputs and commands. sys.argv is the list of command line arguments that are passed into the Python program. argv represents all the input that are entered into the command line. It is an array that hold the...