NetExec install and basic usage

NetExec, also known as nxc, is a powerful network service exploitation tool designed to automate the assessment of large-scale networks. It supports various protocols, including SMB, SSH, LDAP, FTP, WMI, WINRM, RDP, VNC, and MSSQL, facilitating tasks such as enumeration, credential validation, and command execution. Installation For Unix-based Systems: netexec …

Add bottom menu on Debian Linux

Recently I installed a fresh Debian 12 on my PC. Once the installation was finished and I logged in for the first time, I was waiting for some menu bar or application bar to show. But nothing came. Turns out the gnome desktop is a clean as it can get …

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 Linux install Golang

How to: install golang in Kali Linux This is actually very simple nowadays, since golang is in the Kali repositories now. So just with just a few commands you can install golang in kali. # First, install the package sudo apt install -y golang # Then add the following to …

kali linux 2020.3 install openvas

How to: Install openvas in kali linux To install openvas you used to type apt-get install openvas and right after that typed openvas-setup. But now that is not working anymore. The first part still works though but the openvas-setup command will give an error: openvas-setup: command not found. So whats …

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 …