Category: Python

  • Recon for Pentesting using Python (Email Grabbing)

    Recon for Pentesting using Python (Email Grabbing)

    Performing reconnaissance for pentesting, specifically corporate email grabbing, is essential in assessing an organization’s security posture. This process involves collecting information about an organization’s email infrastructure to identify vulnerabilities and security weaknesses. With its versatility and numerous libraries, Python can be a valuable tool for conducting this reconnaissance. Here’s an overview of the process: Information…

  • Fix: Change Python Virtualenv Base Prefix

    Fix: Change Python Virtualenv Base Prefix

    Note: If you don’t know about virtualenv See here But so you know, virtualenv is a tool to create isolated Python environments. Since Python 3.3, a subset of it has been integrated into the standard library under the venv module. Note though, that the venv module does not offer all features of this library (e.g.…

  • Building API with Python, Flask, GraphQL, SQLAlchemy, & PostgreSQL

    Building API with Python, Flask, GraphQL, SQLAlchemy, & PostgreSQL

    GraphQL is a fast-rising specification for building API since it’s release by Facebook in 2015, it has been adopted by Facebook, Github, Pinterest, Yelp, Paypal, Shopify, Atlassian to mention a few. Read more: HERE I came up with this combination because I have been reading about GraphQL, SQLAlchemy about 2 weeks now. So I decided to…