Programming Dungeon

- Page 4 of 6

Setup VPN on linux (Virtual Machine)

  • ~1 min read

A virtual private network (VPN) extends a private network across a public network and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.

Read More

Installing Tor on Linux (Virtual Machine)

  • 1 min read

Tor is free and open-source software for enabling anonymous communication. […] Tor directs Internet traffic through a free, worldwide, volunteer overlay network consisting of more than seven thousand relays to conceal a user’s location and usage from anyone conducting network surveillance or traffic analysis.

Read More

Setup a Pentesting Environment

  • 1 min read

A pentesting environment provides all the tools needed to conduct our tests. It ideally offers also protection against attacks and allows us to control (i.e. save state, rollback, discard) our pentesting journey fairly painless.

Read More

Design Patterns Elements of Reusable Object-Oriented Software

  • ~1 min read

It is common for software engineers to come across the same problem several times resulting in a deja-vu effect. The reason being that there are common problems that all Object-Oriented Software share. Design Patterns exist for exactly that reason. They a documented and established way of solving a problem.

Read More

Setup phpMyAdmin and MySQL with docker compose

  • 2 min read

phpMyAdmin is a great tool for managing MySQL databases and is available as a docker image. The setup in a docker-compose environment is not as straight forward as it seems at first sight. That is why I break things down to make it more managable and easier to understand.

Read More

Make Bundler faster with Docker

  • 2 min read

Docker is an incredible tool that simplifies developement environemnt setup. It allows us to configure and save complex environments and their dependencies in a single image which we can execute at will. Nonetheless we have to configure our images and bundler is no exception.

Read More