Advance

4 Steps to Secure Your Server with OpenVAS

4 Steps to Secure Your Server with OpenVAS
1
(1)

If you are a network or website administrator, you should pay attention to the implementation of security rules and principles. But you may not be able to control and monitor all vulnerabilities. Vulnerability scanners are tools that play an important role in automatic security management. One of the most famous security scanners is OpenVAS, which has the ability to scan all kinds of vulnerabilities. This article will introduce 4 Steps to Secure Your Server with OpenVAS. If you intend to buy VPS server, you can check out the packages offered on the Eldernode website.

Recommended Article: How To Install Nishang On Kali Linux

What is OpenVAS?

OpenVAS stands for Open Vulnerability Assessment System and is an open-source and free scanner tool. It can detect security issues in all manner of servers and network devices. This scanner is provided under the GNU/GPL license and obtains the tests for detecting vulnerabilities from a feed that has a long history and daily updates. Greenbone Network developed OpenVAS in 2006. Webservers use OpenVAS to prevent unauthorized access to websites or servers. It also allows users to access various Web applications.

OpenVAS Capabilities

Here are some of the advanced OpenVAS capabilities:

– Unauthenticated Testing

– Various high-level and low-level Internet Protocols

– Performance Tuning for large-scale Scans

– Powerful Internal Programming Language

Securing Your Server with OpenVAS

In this step, we will introduce you to 4 steps to secure your server with OpenVAS. These 4 steps are OpenVAS installation, OpenVAS configuration, OpenVAS monitoring, and OpenVAS management.

1- Installing OpenVAS on your Server

First, update your system packages with the following command:

sudo apt update

Some OpenVAS components are available in default repositories, but it is better to use PPAs to maintain updated versions of packages. So first of all, you should install the python-software-properties package, which allows you to easily work with the PPA. To do this, run the following command:

sudo apt install python-software-properties

Now add the newest stable version to the system using the command below:

sudo add-apt-repository ppa:openvas/openvas6

Update your system again:

sudo apt update

It’s time to install OpenVAS. Just enter the following command to install the required components:

sudo apt install openvas-manager openvas-scanner openvas-administrator openvas-cli greenbone-security-assistant sqlite3 xsltproc texlive-latex-base texlive-latex-extra texlive-latex-recommended htmldoc alien rpm nsis fakeroot

2- Configuring OpenVAS on your Server

SSL certificates for OpenVAS can be generated using the Wrapper tool, which is available by default. You should call this with administrative privileges as follows to place it in a restricted section of the file system:

sudo openvas-mkcert

You can press Enter to accept the default values when prompted. Then create another client certificate for a user named ”marilyn”:

sudo openvas-mkcert-client -n marilyn -i

In this step, you need to build the database information so that our local tools are aware of different types of threats and vulnerabilities. To do this, update the network vulnerability tests database by running the following command:

sudo openvas-nvt-sync

Then you will see the latest definitions being downloaded to your local device.

Stop the manager and scanner applications using the command below to be able to call the commands without a conflict momentarily:

sudo service openvas-manager stop
sudo service openvas-scanner stop

You can start the scanner program without the parameters in the init file that are normally called with the command below:

sudo openvassd

Now rebuild the database generated by the scanner using the following command:

sudo openvasmd --rebuild

Download and update your security content automation protocol data which is known as SCAP data by entering the following command:

sudo openvas-scapdata-sync

Now you should run a similar sync operation for the cert data as shown below:

sudo openvas-certdata-sync

If this is the first time you run the above command, you may get the following error:

Error: no such table: meta

This error may be due to missing some files that are packed in some other versions. You can get them from an RPM package for the manager component. To download it into your home directory, just enter the following command:

cd  wget http://www6.atomicorp.com/channels/atomic/fedora/18/i386/RPMS/openvas-manager-4.0.2-11.fc18.art.i686.rpm

Then extract and expand the directory structure in RPM with the help of the following command:

rpm2cpio openvas* | cpio -div

Next, create a directory for the new files so OpenVAS can find them. Then move the files to that directory as shown below:

sudo mkdir /usr/share/openvas/cert
sudo cp ./usr/share/openvas/cert/* /usr/share/openvas/cert

Run the certificate sync command again with the following command:

sudo openvas-certdata-sync

Delete the extracted RPM data and directories from the home directory using the command below:

rm -rf ~/openvas* ~/usr ~/etc

3- Monitoring the Vulnerabilities using OpenVAS

First, you should create a target with the OpenVAS/Greenbone Security Assistant web interface. To do this, navigate the Configuration section, choose Targets and click on the icon shown to create a new target:

 

Create-target-OpenVAS

 

You will see the dialog screen in which you should enter the Target name and the target IP host. Once you have entered the information, set other settings to default and click on Create:

 

OpenVAS-dialog-screen

 

You should see the newly created target in the list of available targets.

In this step, you should configure a scanning task in OpenVAS. The scanning task defines the targets that will be scanned, the scanning options, the scanning configuration, and concurrently scanned targets and NVTs per host. To do this, navigate to Scans, choose Tasks, click on the shown blue icon and choose New Task:

 

Configure-new-task

 

Now you will see the dialog screen in which you should enter the Task name and choose the task name created earlier. Then tick the schedule once checkbox, set other settings default and click on Create:

 

Create-new-task-OpenVAS

 

You will see the newly created task in the task list.

You can run the OpenVAS vulnerability scan by clicking on the shown start button:

 

Run-scan-task-OpenVAS- Secure your server with OpenVAS

 

The scan task will run against the selected target. If you reload the page, you can check the progress.

Once it is finished, you can see the status changes to Done:

 

Vulnerability-scan-finish-OpenVAS- Secure your server with OpenVAS

 

4- Managing the OpenVAS

You need to set the OpenVAS user and ports because you will need a user to enter the service. Create a user named ”marilyn” with the administrator role as shown below:

sudo openvasad -c add_user -n admin -r Admin

You will be asked to provide a password for the new account.

Now open the file below with root privileges from your desired text editor:

sudo nano /etc/default/greenbone-security-assistant

The parameter on the top specifies the address that the web interface will listen to. To allow it to listen for connections from the Internet, you should change the value from 127.0.0.1 to the public IP address of your VPS:

<pre> GSA_ADDRESS=<span class=“highlight”>your_server_IP_address</span> </pre>

Save and close the file.

Some services are running in some capacities, kill all running OpenVAS scanner processes with the help of the following command:

sudo killall openvassd

You can check if processes are still running or not using the following command:

ps aux | grep openvassd | grep -v grep

If a service is returned, you should wait for the process to finish.

Once the process is completed, restart all of the services by running the command below:

sudo service openvas-scanner start
sudo service openvas-manager start
sudo service openvas-administrator restart
sudo service greenbone-security-assistant restart

That’s it! We are offering different packages of Linux VPS servers. If you looking for an economical Linux VPS server, our website is one of the best options.

Recommended Article: 4 Steps to Secure Your Server with OpenVAS

Conclusion

OpenVAS is a collection of tools that work together to perform tests against client computers using a database of known exploits and vulnerabilities. In this article, we introduced you to 4 steps to secure your server with OpenVAS. I hope this article helps you to secure your server with OpenVAS and was useful for you. If you have any questions or suggestions, you can contact us in the Comments section.

How useful was this post?

Click on a star to rate it!

Average rating 1 / 5. Vote count: 1

No votes so far! Be the first to rate this post.

View More Posts
Marilyn Bisson
Content Writer
Eldernode Writer
We Are Waiting for your valuable comments and you can be sure that it will be answered in the shortest possible time.

Leave a Reply

Your email address will not be published. Required fields are marked *

We are by your side every step of the way

Think about developing your online business; We will protect it compassionately

We are by your side every step of the way

+8595670151

7 days a week, 24 hours a day