Posts

Showing posts from January, 2019

OpenVAS Scanner - The Network Vulnerability scanner

Image
  OpenVAS is a framework of several services and tools offering a comprehensive and powerful vulnerability scanning and vulnerability management solution. The framework is part of Greenbone Networks' commercial vulnerability management solution from which developments are contributed to the Open Source community since 2009. in kali openvas is not present by default. We have to install it manually, for installing openvas open a terminal and enter apt install openvas to open openvas Goto Applications >> Vulnerability Analysis >> openvas start         login with your username and password, the default username is admin and the default password is created at the end of installation. If you missed the password just reset it by using the command openvasmd --user=admin –new-password=admin123 ( give your desired password) After logging in the dashboard will be like this  

Avet – Open Source Anti-Virus Evasion Tool

Image
When we want to perform an exploitation to a windows target, we need a payload that is undetectable to Antivirus Solutions. Msfvenom on its own is not enough. So we need an AV evasion tool to make this easy for us. Avet is a tool for building exe files with shellcode payloads for antivirus evasion. Installing Avet First clone the repository to our machine. git clone https://github.com/govolution/avet.git   After that go inside the folder and run the setup file to install wine and other missing components. cd avet/       Run the setup file to install the missing components.   ./setup.sh     Select create  for new installation   Running Avet There are two ways to run avet. Run avet by typing the command below. python avet_fabric.py   There are two ways to run avet. Either by compiling the make_avet script as shown below, or by  running the avet_fabric.py script, as shown. gcc -0 make_avet make_avet.c