Changes between Version 1 and Version 2 of netsec2018pentest


Ignore:
Timestamp:
Jun 6, 2018, 1:21:02 PM (6 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • netsec2018pentest

    v1 v2  
    77Default user name passwords are root and toor.
    88
    9 Once logged in open your terminal and issue an `apt-get update` command
     9Once logged in open your terminal and issue an '''apt-get update''' command
    1010
    11 Using Open-VAS as Vulnerability Scanner.
     11== Using Open-VAS as Vulnerability Scanner ==
    1212
    1313The Open Vulnerability Assessment System (OpenVAS) is a framework of several services and tools. The core of this SSL-secured service-oriented architecture is the OpenVAS Scanner. The scanner very efficiently executes the actual Network Vulnerability Tests (NVTs) which are served via the OpenVAS NVT Feed or via a commercial feed service. (more: www.openvas.org)
     
    1717
    1818To install OpenVAS on  kali,
     19{{{
     20apt-get install open-vas
     21}}}
    1922
    20 apt-get install open-vas
    21 
    22 once the installation is finished, type `openvas-setup’ on terminal to do the initial setup. At the end of the setup it will give you a long password for the default user ‘admin’. Please note it somewhere.
     23once the installation is finished, type '''openvas-setup''' on terminal to do the initial setup. At the end of the setup it will give you a long password for the default user ‘admin’. '''Please note it somewhere'''.
    2324
    2425When the OpenVAS setup process is finished the OpenVAS manager, scanner and services are listening on port 9390, 9391, 9392 and on port 80. You can use the following netstat command to check if these services are listening:
    25 
     26{{{
    2627netstat –antp
     28}}}
    2729
    2830Netstat –antp command Explained
     31{{{
    2932-a all
    3033-n show ip instead of host names
    3134-t show only tcp connections
    3235-p show process id/name
     36}}}
    3337
    3438If the OpenVAS services are not running than use the following command to start these services:
     39{{{
     40openvas-start
     41}}}
    3542
    36 openvas-start
     43and open '''https://127.0.0.1:9392''' using your default browser.
    3744
    38 and open https://127.0.0.1:9392 using your default browser.
    39 
    40 Log in to ‘Greenbone Security Assistant’ using the username admin and the password from the previous step.
     45Log in to '''Greenbone Security Assistant''' using the username admin and the password from the previous step.
    4146
    4247The default dashboard will show you a collection of scans, hosts etc.