Browsing Category
Python
212 posts
Python is a general-purpose, high-level programming language. It is known for its elegant syntax and its focus on code readability. Python is dynamically typed, which means that the type of a variable is not declared at compile time. This can make Python code more concise and easier to read.
Testing XSS vulnerabilities in web applications
Testing for Cross-Site Scripting (XSS) vulnerabilities is crucial to ensure the security of web applications. XSS occurs when…
Understanding vulnerabilities in web applications with OWASP
The Open Web Application Security Project (OWASP) is a non-profit worldwide organization focused on improving the security of…
The OpenVAS vulnerability scanner in python
The OpenVAS vulnerability scanner is a comprehensive vulnerability assessment system that can detect security issues in all manner…
Accessing the nessus API with python – Interacting with server and client
The nessrest module in Python is a library that can be used to interact with the REST API…
Understanding and Installing the Nessus vulnerability scanner
Nessus is a powerful vulnerability scanner that helps organizations identify and remediate security weaknesses in their IT infrastructure.…
Understanding vulnerabilities and exploits
Vulnerabilities and exploits are two critical concepts in cybersecurity that are often used interchangeably but have distinct meanings.…
Discovering Services and Vulnerabilities with Nmap Scripts (NSE)
Port scanning tells you which doors are open on a system, but it doesn’t tell you what’s behind…
Working with Nmap Through the os and subprocess Modules in Python
Before dedicated libraries like python-nmap existed, and even now for many lightweight automation tasks, developers reach for Python’s…
Scanning Modes with python-nmap: A Complete Guide
python-nmap is a popular third-party Python library that wraps the Nmap binary and parses its XML output into…
Simple Port Scanning with python-nmap
For anyone learning network security or building their first automation tool, port scanning is usually the very first…