Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Go to Nmap.org and download Nmap for Windows. Install Nmap.
  • Go to Open-AudIT.org and download the latest version. Install Open-AudIT.
  • Log on to Open-AudIT and fill out the form to receive a free 20 device license.
  • Add some credentials.
  • Add a Discovery.
  • Run the Discovery.
  • Done!

Installing

Nmap

Open-AudIT uses Nmap as part of its discovery routine. No Nmap, no discovery. Go to the nmap.org webpage, click the Downloads link and download the latest Nmap version for Windows.

Linux users don’t have to do this as our Linux installer will automatically install Nmap (and the other dependencies) for you.

Install Nmap by right-clicking the .exe and selecting “Run as Administrator”, and simply use the default (already chosen) options. Open-AudIT doesn’t require any special setup or configuration of Nmap – we just need it installed.

Windows Server only (or Linux)

Open-AudIT should be installed on 64bit Windows Server systems only. Windows 10 is not supported.

Visual C Runtime

Please install the latest Visual C runtime from https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0

Go to open-audit.org and download the latest version. Supply your name, email and company and download the binary. Right click the .exe and selecting “Run as Administrator”.

...

A more in depth explanation for Linux users is available on this page. That page details items like Apache proxy configuration, ip tables concerns, etc. The installer should take care of these automatically, but in case something goes wrong, please consult that page.

NOTE - Installing on Windows 10 is possible, you will need to answer a lot of "yes, I'm sure" type questions. See linked article for examples, https://www.theregister.com/2020/06/05/windows_10_microsoft_defender_smartscreen/

Upgrading

Upgrading is essentially the same as installing - although you will already have Nmap, so no need to reinstall that.

...

Don't forget we have release notes available for every version so you'll know exactly what has changed.

 

...



Database Creation

Open-AudIT requires a database to store its information in. If you ever need to manually create this database, the commands to do so are below. You should have already set a root password. If you have not, the default root password set by an Open-AudIT installation is openauditrootuserpassword.

Create the database.

Code Block
c:\xampp\mysql\bin\mysql.exe -u root -p -e "CREATE DATABASE openaudit;"

Create the database user.

Code Block
c:\xampp\mysql\bin\mysql -u root -p -e "CREATE USER openaudit@localhost IDENTIFIED BY 'openauditpassword';"

Give the user access tot he database.

Code Block
c:\xampp\mysql\bin\mysql -u root -p -e "GRANT ALL PRIVILEGES ON openaudit.* TO openaudit@localhost IDENTIFIED BY 'openauditpassword'; FLUSH PRIVILEGES;"

Populate the database schema.

Code Block
c:\xampp\mysql\bin\mysql -u root -p openaudit -e "c:\xampp\open-audit\other\openaudit_mysql.sql"




Windows

Create the database.

Code Block
c:\xampp\mysql\bin\mysql.exe -u root -p -e "CREATE DATABASE openaudit;"

Create the database user.

Code Block
c:\xampp\mysql\bin\mysql -u root -p -e "CREATE USER openaudit@localhost IDENTIFIED BY 'openauditpassword';"

Give the user access tot he database.

Code Block
c:\xampp\mysql\bin\mysql -u root -p -e "GRANT ALL PRIVILEGES ON openaudit.* TO openaudit@localhost IDENTIFIED BY 'openauditpassword'; FLUSH PRIVILEGES;"

Populate the database schema.

Code Block
c:\xampp\mysql\bin\mysql -u root -p openaudit -e "c:\xampp\open-audit\other\openaudit_mysql.sql"