How to create screenshots with GoWitness

In this blog I will show you how to make screenshots of websites using the GoWitness tool. GoWitness is written the GO program language and you can download for free on their Github page. The installation is really easy with one command: go install github.com/sensepost/gowitness@latestThere are also binaries available, also …

Openvas error postgresql version is not 13 required by libgvmd

If you regularly update your Kali machine and use Openvas you could run into this error: the default postgresql version is not 13 required by libgvmd It’s because there are two versions of postgresql running at the same time. Since postgresql is using a TCP port it cannot be the …

Install and Use Bloodhound in Kali Linux

What is Bloodhound? Bloodhound can be used by both red teamers and blue teamers, to quickly identify interesting relationships between ActiveDirectory objects. It shows the results in a visual way and it’s possible to query the results. You can read the docs here. Install bloodhound in kali To install bloodhound …

kali 2020.1 disable non-root account

Setup root account on Kali Linux As of kali linux 2020.1 the root account is not the default user anymore. During the setup a standard non-root account is created used for logging in and standard use of applications. When you need root access for certain applications you can use sudo …

Rebuild Nessus Plugin Database

Howto Rebuild Nessus Plugin Database For my job I use the Nessus Vulnerability scanner from Tenable and once in while when I start Nessus I get the website saying ” Please wait, bla bla  Compiling plugins…” Like so: And this keeps on going for a while and this keeps on …

How To Generate Wordlists With CUPP | Kali Linux

CUPP is a wordlist generator where you can specify profile someone to generate a custom wordlist based on people’s characteristics clone the github repository and start cupp – git clone https://github.com/Mebus/cupp CUPP syntax The basic syntax for cupp looks like this: python3 cupp.py -h Example  start the script – ./cupp.py -i the …

Kaboom – automated penetration test script

Kaboom is an automated penetration tool This is a script I found on Github and it automates some processes of a regular penetration test approach. It starts with the information gathering fase, then the vulnerability scanning fase and ends with exploiting. So lets examine this tool. First download the tool …

How to install Pi-Hole

How to install Pi-Hole In this article I will explain how to install pi-hole. But first a short introduction to pi-hole itself. The Pi-hole is an advertising-aware DNS server that prevents ads from being downloaded. In other words…surf the internet without those annoying ads popping up all over the place. This …