Discounted Command and Control course
Ethical Hacking: Design Command and Control using Python 3 Learn how to code a fully featured command and...
Info Stealer course offering on Udemy
Ethical Hacking: Design an Info Stealer using Python 3 Learn some Python by coding a tool that collects...
A Python Netcat Listener
During Red Team exercises, we may gain access to systems but in tightly controlled environments, it can be...
Running Windows EXE in the Background
If coding in Python, running an EXE in the background, unattached to a console is easily accomplished with...
Password Guessing a Web Login Page
Simple code for attempting to guess admin’s password for a web form login. from requests import post # Look like...
The Counter Dictionary
If we need to find the most common thing in an environment and we have, or can easily...
Create a Keylogger
This video of mine shows how incredibly easy it is to create a basic keylogger in Python, using...
Searching Files Recursively
I would typically NOT use Python for doing recursive grep operations, because it is going to be SUPER...
List Comprehensions
Python has a really cool feature known as comprehensions. Below are a few examples of how this might...
Copying Lists
Ocasionally, it is useful to copy a list that we already have created in order to initialize a...