{"id":1981,"date":"2016-03-01T11:20:43","date_gmt":"2016-03-01T05:35:43","guid":{"rendered":"https:\/\/www.sparksupport.com\/blog\/?p=1981"},"modified":"2024-06-21T11:59:44","modified_gmt":"2024-06-21T11:59:44","slug":"instalation-of-mcafee-audit-plugin-on-ubuntu-12-04","status":"publish","type":"post","link":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/","title":{"rendered":"Mcafee Audit Plugin on Ubuntu 12.04  Instalation"},"content":{"rendered":"<h3><em><strong>Why&nbsp;<\/strong><\/em><em><strong>Mcafee Audit Plugin On Ubuntu&nbsp;<\/strong><\/em><\/h3>\n<p>Nowadays security is a major concern with each and everything. Here I am a explaining a method by which we can secure and audit our MySQL database much closer using Mcafee Audit Plugin on Ubuntu. Since lot of attacks and intruders are targeting our database it will be key thing to secure your database .<\/p>\n<h3><em><strong>How to Install&nbsp;<\/strong><\/em><\/h3>\n<p>Download the Audit Plugin from the following link.<\/p>\n<ul>\n<li>https:\/\/github.com\/mcafee\/mysql-audit\/downloads.<\/li>\n<\/ul>\n<p>The downloaded file is actually a MySQL plugin file which allows you to perform advanced level auditing with your databases. Please download the Mcafee Audit Plugin on Ubuntu package which suits the architecture of your machine. use command uname -m on your terminal to identify your architecture. I tried it on ubuntu 12.04 with mysql 5.46. If you are using same os and MySQL 5.5. You can download the file from the following location.<\/p>\n<p>After download the plugin copy the libaudit_plugin.so to MySQL plugin dir. To identify your plugin directory got to your mysql prompt and run the following command.<\/p>\n<pre style=\"color: #666666;\">SHOW VARIABLES LIKE 'plugin_dir';\n+---------------+---------------------------------+\n| Variable_name | Value                           |\n+---------------+---------------------------------+\n| plugin_dir    | \/usr\/lib\/mysql\/plugin\/         |\n+---------------+---------------------------------+\n1 row in set (0.00 sec)  \n\n<\/pre>\n<p style=\"color: #555555;\">copy the plug in file to the corresponding location and gave necessary permissions for that.<\/p>\n<p style=\"color: #555555;\">In order to work, MySQL Audit Plug-in needs to extract some offsets from MySQL server, some of them are build-in the the Audit code, but some aren\u2019t. It will changes with respect to the mysqld binary. If you are using same version of mine you can give the offsets i retrieved. If you are using an entire different version you have to generate the offset for yours.<\/p>\n<p style=\"color: #555555;\">Now you have to make necessary changes to MySQL configuration file my.cnf and restart the MySQL.<\/p>\n<p style=\"color: #555555;\">Add the following lines under the<strong>&nbsp;[mysqld]<\/strong>&nbsp;section in your configuration file.<\/p>\n<pre style=\"color: #555555;\">plugin-load=AUDIT=libaudit_plugin.so\naudit_offsets=6120, 6168, 3792, 4288, 88, 2592, 96, 0, 32, 104\naudit_json_file=1<\/pre>\n<p>Monitor the Mysqld log while restarting the MYSQL if you met with any checksum error you can add following line to avoid it.<\/p>\n<pre>audit_validate_checksum=OFF\n<\/pre>\n<p style=\"color: #555555;\">f the plugin installation is successful or not the MYSQL will get started. So check the mysqld log very closely. MySQL will get started with or without if you find the following errors on your mysql error log<\/p>\n<blockquote style=\"font-style: italic; color: #444444;\">\n<p style=\"color: #555555;\">Audit Plugin: Offsets set didn\u2019t pass validation. audit_offsets: 3816, 3844, 2368, 2700, 44, 1656 .150807 13:02:19 [ERROR] Plugin \u2018AUDIT\u2019 init function returned error.<\/p>\n<p style=\"color: #555555;\">it indicates that the offsets you specified in my.cnf is not matching with your binary. So you have to generate it.<\/p>\n<\/blockquote>\n<p style=\"color: #555555;\">If it start with out any error go to mysql prompt and make sure whether it installed or not. Check the plugins first.<\/p>\n<p style=\"color: #555555;\">\n<p style=\"color: #555555;\">\n<pre style=\"color: #555555;\"><span style=\"color: #666666;\">show plugins; You can find the audit plug in at the end of the list.\n +--------------------------+----------+--------------------+--------------------+---------+ \n| Name | Status | Type | Library | License |\n +--------------------------+----------+--------------------+--------------------+---------+ \n| binlog  | ACTIVE  | STORAGE ENGINE  | NULL  | GPL | \n| mysql_native_password  | ACTIVE  | AUTHENTICATION  | NULL | GPL | \n| mysql_old_password | ACTIVE | AUTHENTICATION | NULL | GPL | \n| MRG_MYISAM  | ACTIVE  | STORAGE ENGINE  | NULL | GPL | \n| MEMORY  | ACTIVE  | STORAGE ENGINE  | NULL  | GPL | \n| MyISAM  | ACTIVE  | STORAGE ENGINE  | NULL  | GPL | \n| CSV  | ACTIVE  | STORAGE ENGINE  | NULL  | GPL | \n| BLACKHOLE  | ACTIVE  | STORAGE ENGINE  | NULL | GPL | \n| FEDERATED  | DISABLED | STORAGE ENGINE | NULL | GPL | \n| ARCHIVE  | ACTIVE  | STORAGE ENGINE | NULL | GPL | \n| InnoDB  | ACTIVE  | STORAGE ENGINE | NULL | GPL | \n| INNODB_TRX  | ACTIVE  | INFORMATION SCHEMA | NULL | GPL | \n| INNODB_LOCKS  | ACTIVE  | INFORMATION SCHEMA | NULL | GPL | \n| INNODB_LOCK_WAITS  | ACTIVE  | INFORMATION SCHEMA  | NULL | GPL | \n| INNODB_CMP  | ACTIVE | INFORMATION SCHEMA | NULL | GPL | \n| INNODB_CMP_RESET  | ACTIVE  | INFORMATION SCHEMA  | NULL | GPL | \n| INNODB_CMPMEM  | ACTIVE  | INFORMATION SCHEMA  | NULL | GPL | \n| INNODB_CMPMEM_RESET  | ACTIVE  | INFORMATION SCHEMA  | NULL | GPL | \n| INNODB_BUFFER_PAGE | ACTIVE | INFORMATION SCHEMA | NULL | GPL | \n| INNODB_BUFFER_PAGE_LRU   | ACTIVE  | INFORMATION SCHEMA | NULL | GPL | \n| INNODB_BUFFER_POOL_STATS | ACTIVE | INFORMATION SCHEMA | NULL | GPL | \n| PERFORMANCE_SCHEMA  | ACTIVE  | STORAGE ENGINE  | NULL | GPL | \n| partition | ACTIVE  | STORAGE ENGINE | NULL | GPL | \n<\/span><\/pre>\n<p><strong style=\"color: #666666;\">| AUDIT | ACTIVE | DAEMON | libaudit_plugin.so | GPL |<\/strong><\/p>\n<pre style=\"color: #555555;\"><span style=\"color: #666666;\"> \n+--------------------------+----------+--------------------+--------------------+---------+ \n24 rows in set (0.00 sec)\n<\/span><\/pre>\n<pre>show global status like 'AUDIT_version';\n+---------------+-----------+\n| Variable_name | Value     |\n+---------------+-----------+\n| Audit_version | 1.0.8-527 |\n+---------------+-----------+<\/pre>\n<p style=\"color: #555555;\">by default, a file named mysql-audit.json is created on MySQL datadir, from now one, you can parse the file to extract the information that you think is relevant to you, see bellow some examples:<br \/>\nGet failed attempts to connect to MySQL server:<\/p>\n<p style=\"color: #555555;\"><em># grep \u2018\\\u201dcmd\\\u201d:\\\u201dFailed Login\\\u201d\u2018 \/var\/lib\/mysql\/mysql-audit.json<\/em><\/p>\n<p style=\"color: #555555;\">Get successful attempts to connect to MySQL server:<\/p>\n<p style=\"color: #555555;\"><em># grep \u2018\\\u201dcmd\\\u201d:\\\u201dConnect\\\u201d\u2018 \/var\/lib\/mysql\/mysql-audit.json<\/em><\/p>\n<p style=\"color: #555555;\">Get all activities from a specific host:<br \/>\n# grep \u2018\\\u201dip\\\u201d:\\\u201d192.168.1.32 \\\u201d\u2018&nbsp; \/var\/lib\/mysql\/mysql-audit.json #192.168.1.32 is the ip of host you want to monitor.<\/p>\n<h2 style=\"color: #444444;\">Offset generation<\/h2>\n<p style=\"color: #555555;\">If the the given offset are not working for you you have to regenerate it using the offset generation script. You can download the offset generation script from the following link.<\/p>\n<p style=\"color: #555555;\">chmod +x offset-extract.sh<\/p>\n<p style=\"color: #555555;\">.\/offset-extract.sh&nbsp; &lt;path to mysqld&gt;<\/p>\n<pre style=\"color: #666666;\"><code> ~# .\/offset-extract.sh \/usr\/sbin\/mysqld\n \/\/offsets for: \/usr\/sbin\/mysqld (5.1.41-community)\n {\"5.1.41-community\",\"6ccf4357688d8e46bfcb4443966970b0\", **6120, 6168, 3792, 4288, 88, 2592, 96, 0, 32, 104**},<\/code><\/pre>\n<p style=\"color: #555555;\">Then try installing the AUDIT plugin either via plugin-load configuration option (restart) or by issuing the INSTALL PLUGIN statement.<\/p>\n<p style=\"color: #555555;\"><em>&gt; INSTALL PLUGIN AUDIT SONAME \u2018libaudit_plugin.so&#8217;;<\/em><\/p>\n<p style=\"color: #555555;\"><strong>Note:<\/strong>&nbsp;Some distributions (such as Percona Server) contain the mysqld debug symbols as a separate binary, which requires installing an additional package (rpm\/deb). For example for Percona Server on RedHat you will need to install: Percona-Server-55-debuginfo-5.5.30-rel30.1.465.rhel6.x86_64.rpm. Once installed pass to the&nbsp;<code>offset-extract.sh<\/code>&nbsp;script also the path to the mysqld symbols file. Symbols file must be the same version as the target mysqld. For example:<\/p>\n<pre style=\"color: #666666;\"><code>.\/offset-extract.sh \/usr\/sbin\/mysqld \/usr\/lib\/debug\/usr\/sbin\/mysqld.debug\n<\/code><\/pre>\n<p style=\"color: #555555;\">Notice that the mysqld debug symbols may be named also:&nbsp;<code>\/usr\/lib\/debug\/usr\/sbin\/mysqld<\/code>&nbsp;(no&nbsp;<code>.debug<\/code>). Make sure not to confuse this with&nbsp;<code>mysqld-debug<\/code>, which is a separate executable. HIRE REMOTE LINUX ENGINEER at affordable rates<\/p>\n<p style=\"color: #555555;\"><strong>Offsets on Debian distributions:<\/strong>&nbsp;On Debian (and Ubuntu) distributions debug symbols are not shipped with the mysql server distribution. There is need to compile from source in order to extract the offsets. Example steps for compiling from source with debug symbols:<\/p>\n<ul style=\"color: #444444;\">\n<li>Download source code by running:&nbsp;<code>apt-get source mysql-server<\/code><\/li>\n<li>Extract source:&nbsp;<code>dpkg-source -x mysql-&lt;version&gt;.dsc<\/code><\/li>\n<li>Change into extract dir:&nbsp;<code>mysql-&lt;version&gt;<\/code><\/li>\n<\/ul>\n<p>Modify&nbsp;<code>debian\/rules<\/code>&nbsp;file to add \u201c-g\u201d flag to CFLAGS and CXXFLAGS passed toDifference before and after editing.<\/p>\n<pre>#diff debian\/rules debian\/rules.org\n93c93\n&lt; CFLAGS=${MYSQL_BUILD_CFLAGS:-\"-g -O2 -DBIG_JOINS=1 ${FORCE_FPIC_CFLAGS} -fno-strict-aliasing\"} \\\n---\n&gt; CFLAGS=${MYSQL_BUILD_CFLAGS:-\"-O2 -DBIG_JOINS=1 ${FORCE_FPIC_CFLAGS} -fno-strict-aliasing\"} \\\n95c95\n&lt; CXXFLAGS=${MYSQL_BUILD_CXXFLAGS:-\"-g -O3 -DBIG_JOINS=1 -felide-constructors -fno-exceptions -fno-rtti ${FORCE_FPIC_CFLAGS} -fno-strict-aliasing\"} \\\n---\n&gt; CXXFLAGS=${MYSQL_BUILD_CXXFLAGS:-\"-O3 -DBIG_JOINS=1 -felide-constructors -fno-exceptions -fno-rtti ${FORCE_FPIC_CFLAGS} -fno-strict-aliasing\"} \\<\/pre>\n<ul>\n<li>Build mysql with \u201cnostrip\u201d option: DEB_BUILD_OPTIONS=\u201dnostrip\u201d dpkg-buildpackage -b -uc<\/li>\n<li>Resulting mysqld file available at: builddir\/sql\/mysqld now contains debug symbols and you can extract the offsets from this binary.<\/li>\n<\/ul>\n<p>Use this binary with the offset script and generate the offsets for the respective version.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why&nbsp;Mcafee Audit Plugin On Ubuntu&nbsp; Nowadays security is a major concern with each and everything. Here I am a explaining a method by which we<\/p>\n","protected":false},"author":26,"featured_media":5033,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[6],"tags":[],"class_list":["post-1981","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps<\/title>\n<meta name=\"description\" content=\"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps\" \/>\n<meta property=\"og:description\" content=\"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-03-01T05:35:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-21T11:59:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"537\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"bipin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"bipin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\"},\"author\":{\"name\":\"bipin\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/7fab6dcd09471e07037d9dd3bd2e0a28\"},\"headline\":\"Mcafee Audit Plugin on Ubuntu 12.04 Instalation\",\"datePublished\":\"2016-03-01T05:35:43+00:00\",\"dateModified\":\"2024-06-21T11:59:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\"},\"wordCount\":821,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png\",\"articleSection\":[\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\",\"name\":\"Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png\",\"datePublished\":\"2016-03-01T05:35:43+00:00\",\"dateModified\":\"2024-06-21T11:59:44+00:00\",\"description\":\"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .\",\"breadcrumb\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png\",\"width\":600,\"height\":537},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sparksupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mcafee Audit Plugin on Ubuntu 12.04 Instalation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"name\":\"SparkSupport Blog\",\"description\":\"SparkSupport Blogs\",\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sparksupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\",\"name\":\"SparkSupport\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"width\":216,\"height\":44,\"caption\":\"SparkSupport\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/7fab6dcd09471e07037d9dd3bd2e0a28\",\"name\":\"bipin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g\",\"caption\":\"bipin\"},\"url\":\"https:\/\/sparksupport.com\/blog\/author\/bipin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps","description":"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/","og_locale":"en_US","og_type":"article","og_title":"Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps","og_description":"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .","og_url":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/","article_published_time":"2016-03-01T05:35:43+00:00","article_modified_time":"2024-06-21T11:59:44+00:00","og_image":[{"width":600,"height":537,"url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png","type":"image\/png"}],"author":"bipin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"bipin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#article","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/"},"author":{"name":"bipin","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/7fab6dcd09471e07037d9dd3bd2e0a28"},"headline":"Mcafee Audit Plugin on Ubuntu 12.04 Instalation","datePublished":"2016-03-01T05:35:43+00:00","dateModified":"2024-06-21T11:59:44+00:00","mainEntityOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/"},"wordCount":821,"commentCount":0,"publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png","articleSection":["linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/","url":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/","name":"Mcafee Audit Plugin on Ubuntu 12.04 Instalation - easy steps","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png","datePublished":"2016-03-01T05:35:43+00:00","dateModified":"2024-06-21T11:59:44+00:00","description":"We are explaining easy and technique that can use Mcafee Audit Plugin on Ubuntu to secure and audit our MySQL database much nearer. Since many assaults and .","breadcrumb":{"@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#primaryimage","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2016\/03\/audit.png","width":600,"height":537},{"@type":"BreadcrumbList","@id":"https:\/\/sparksupport.com\/blog\/instalation-of-mcafee-audit-plugin-on-ubuntu-12-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sparksupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Mcafee Audit Plugin on Ubuntu 12.04 Instalation"}]},{"@type":"WebSite","@id":"https:\/\/sparksupport.com\/blog\/#website","url":"https:\/\/sparksupport.com\/blog\/","name":"SparkSupport Blog","description":"SparkSupport Blogs","publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sparksupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sparksupport.com\/blog\/#organization","name":"SparkSupport","url":"https:\/\/sparksupport.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","width":216,"height":44,"caption":"SparkSupport"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/7fab6dcd09471e07037d9dd3bd2e0a28","name":"bipin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c9251a303478773ad74935d2141321375697c02d43702188d02a56dbd71fde36?s=96&d=mm&r=g","caption":"bipin"},"url":"https:\/\/sparksupport.com\/blog\/author\/bipin\/"}]}},"_links":{"self":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/1981","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1981"}],"version-history":[{"count":0,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/1981\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media\/5033"}],"wp:attachment":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1981"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}