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.
Getting information on DNS server with DNS python
The Domain Name System (DNS) is a hierarchical and distributed naming system for computers, services, or other resources…
Using the socket module to obtain server information
The socket module in Python provides functions for creating sockets, which are endpoints for network communication. You can…
Using Shodan filters and the BinaryEdge search engine
Shodan and BinaryEdge are both powerful tools for gathering information about internet-connected devices and vulnerabilities. By combining the…
Extracting information from servers with shodan
Shodan is a search engine that allows you to scan the internet for open ports and services. This…
Extracting information from the tor network with stem module
The Stem module in Python is a controller library that allows developers to interact with the Tor daemon…
Connecting to the Tor network from python
The pysocks module is a Python module that provides a simple and consistent interface to work with SOCKS…
Discovering hidden services with OSINT tools
Discovering hidden services (onion services) on the Tor network involves using Open Source Intelligence (OSINT) tools and techniques.…
How to connect the Tor Network and discover hidden services
The Tor Project is a non-profit organization that develops and maintains the Tor (The Onion Router) network, a…
HTTP different authentications with a request module in python
HTTP Basic Authentication, HTTP Digest Authentication, and HTTP Bearer Authentication are three common authentication mechanisms used in the…
Building an HTTP client with httpx in python
httpx is a Python library that provides a full-featured HTTP client based on the httpcore library. It is…