Versions Compared

Key

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

...

NOTE - As of 2017-01-05 (at 1400 hours Brisbane, Australia time) an updated 1.12.10 has been released that contains the below fixes (marked FIXED). The filename for this contains 1.12.10.1, but the version displayed in the application itself remains at 1.12.10. There are three further fixes below that have not been included in a newly released package as yet.

FIXED - Provide drop down org selection on device details screen.

A file has been patched since the release of Open-AudIT 1.12.10. These files will be incorporated into the next release but are available immediately for those affected.

...

Copy the below file to /open-audit/code_igniter/application/views/theme-bootstrap/v_devices_read.php

v_devices_read.php

FIXED - Name Match / IP Match invalid value in Enterprise

There are a couple of false positive warnings on the Enterprise Dashboard. These are safe to ignore (I changed the config item name, hence these don't exist). You can comment out lines 333 ->339 in:

...

Code Block
<!--
							% if (!%$oac_config or ($oac_config->{discovery_name_match} ne "y" and $oac_config->{discovery_name_match} ne "n")) {
							<li>Name Match invalid value. <a style="color:#729FCF;" href="<%= url_for("index_oae") %>/oaconfig/advanced">Fix</a>.</li>
							% }
							% if (!%$oac_config or ($oac_config->{discovery_ip_match} ne "y" and $oac_config->{discovery_ip_match} ne "n")) {
							<li>IP Match invalid value. <a style="color:#729FCF;" href="<%= url_for("index_oae") %>/oaconfig/advanced">Fix</a>.</li>
							% }
-->

FIXED - Fix for missing data in oa_user_org

Run the below command to fix this issue.

...

Code Block
mysql -u openaudit -popenauditpassword -e "DELETE FROM openaudit.oa_user_org; INSERT INTO openaudit.oa_user_org (id, user_id, org_id, access_level, permissions) SELECT NULL, id, 0, 10, '' FROM openaudit.oa_user;"

FIXED - Delete Devices not Seen for 30 Days

Modify the file open-audit/code_igniter/application/models/m_system.php and change line 1027 to the below. There is a missing right round bracket after DATE(last_seen.

...

NOTE - new patches below are not included in 1.12.10.1 patched release.

NOT FIXED - Fix for deleting items from list pages.

There is an issue in the templates for collection pages. The data-id attribute is assigned to the child element of the delete_link class assigned element. Consequently when the delete link is clicked, javascript doesn't have a valid item id for the request. The fix is to correctly place the data-id assignment on the correct element. The fix can be found in the attached file. Replace the files:

...

v_template.phpv_connections_collection.phpv_credentials_collection.phpv_fields_collection.phpv_locations_collection.phpv_networks_collection.phpv_orgs_collection.phpv_scripts_collection.php.

 

NOT FIXED - Fix for Device Attachments (2017-02-23)

There are bugs when creating, reading, updating and deleting attachments in 1.12.10.1. Add the files as below into the correct directories to fix this issue.

...

devices.phpmain.phpm_devices.phpv_devices_create_form_attachment.phpv_devices_read.phpv_display_inc_summary.php.


NOT FIXED - Snmp other than v2 not working

There is a bug in the file open-audit/code_igniter/application/helpers/snmp_helper.php that set's SNMP version always to v2.

...

Code Block
    if (empty($credentials->credentials->version) or ($credentials->credentials->version != 1 and $credentials->credentials->version != 2 and $credentials->credentials->version !=3)) {

 

NOT FIXED - Bulk Update form (class attribute) (2017-04-27)

We missed populating the drop down on the bulk update form for the 'Class' attribute. The file below contains this patch, along with another bug fix for an undefined variable that was used.

...

v_devices_bulk_update_form.php

 

NOT FIXED - Domain not populating on group page (2017-04-27)

We selected dns_domain instead of domain and hence did not match the domain column on the group device list page. The patched file is below.

...