Exfiltrating Data using Light
Using python to capture and project data

Search for a command to run...
Articles tagged with #python
Using python to capture and project data

Intro This is a write-up for PicoCTF 2022: Buffer Overflow 1. This is one of my favourite challenges to do. I recommend solving it for yourself before you read this write-up. What is a Buffer Overflow? Before we get started we need to first know what...

Symmetric Encryption explained by a basic Python implementation of a Stream Cipher

Sherlock is a powerful command line tool that can be used to find usernames across many websites and social networks. It works on Linux, MacOS and Windows. Installation To install Sherlock, follow the instructions below. Make sure that you have Pytho...

Everyone knows the classic water jug problem. You are by a stream with a 5-Litre and a 7-Litre bucket. How do you measure out 6-Litres in the fewest possible pourings? You first fill up the 7 and so on. You might not have seen this particular proble...

In this tutorial, I am making a basic username and password generator in Python Notes I am going to be putting this all into a class called gen and you need to import the random module. import random class gen(): ... Generating the password Generatin...
