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.
  • Download and install the Microsoft Visual C runtime.
  • If you haven't already, go to firstwave.com or open-audit.org and download the latest version. Install Open-AudIT.
  • Edit the Apache service on Windows.
  • 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

Windows Server only (or Linux)

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

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.

...

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 and Windows 11 are 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”.

Download and Install

Log on to Open-AudIT and you should see a splash screen informing you that you do not have a license – but Opmantek will give you a 20 device license for free. Just fill out the form and your 20 device Professional license will be activated.

...

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/


Edit the Apache service on Windows

...

Run this and your schema will be upgraded and you can then continue to use Open-AudIT as normal.

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

...

Open-AudIT requires a database to store its information in. If The installer automatically does this for you, but 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"

...

Create the database.

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

...