/*!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.5.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: fmedia_medikpro
-- ------------------------------------------------------
-- Server version	10.5.25-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `admin`
--

DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(1) DEFAULT NULL,
  `fullname` varchar(256) DEFAULT NULL,
  `email` varchar(32) DEFAULT NULL,
  `password` varchar(32) DEFAULT NULL,
  `gender` varchar(1) DEFAULT NULL,
  `photo_location` text DEFAULT NULL,
  `last_login` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin`
--

LOCK TABLES `admin` WRITE;
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
INSERT INTO `admin` VALUES (2,1,'Medikpro Admin','medikproid@gmail.com','e10adc3949ba59abbe56e057f20f883e','M','contents/adminFoto/2-Rifan-Nur-Muhammah.jpg','2017-11-08 16:42:39','2015-04-17 10:02:29','2017-01-10 12:29:32');
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `background`
--

DROP TABLE IF EXISTS `background`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `background` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `image_location` text DEFAULT NULL,
  `style` text DEFAULT NULL,
  `id_position` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `background`
--

LOCK TABLES `background` WRITE;
/*!40000 ALTER TABLE `background` DISABLE KEYS */;
INSERT INTO `background` VALUES (5,'contents/background/5-bg.png','top right no-repeat',5),(6,'contents/background/6-bg.png',NULL,2);
/*!40000 ALTER TABLE `background` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `background_position`
--

DROP TABLE IF EXISTS `background_position`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `background_position` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `position` varchar(250) DEFAULT NULL,
  `style` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `background_position`
--

LOCK TABLES `background_position` WRITE;
/*!40000 ALTER TABLE `background_position` DISABLE KEYS */;
INSERT INTO `background_position` VALUES (1,'Gradient','no-repeat; background-size: cover;-moz-background-size: cover;'),(2,'Top Left','top left no-repeat'),(3,'Bottom Left','bottom left no-repeat'),(4,'Bottom Right','bottom right no-repeat'),(5,'Top Right','top right no-repeat');
/*!40000 ALTER TABLE `background_position` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banner`
--

DROP TABLE IF EXISTS `banner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banner` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `position` varchar(255) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text NOT NULL,
  `link` text DEFAULT NULL,
  `link_title` varchar(255) NOT NULL,
  `link_title_bahasa` varchar(255) NOT NULL,
  `image_location` text DEFAULT NULL,
  `active_link` int(1) DEFAULT NULL,
  `highlight_color` varchar(10) DEFAULT NULL,
  `text_color` varchar(10) DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banner`
--

LOCK TABLES `banner` WRITE;
/*!40000 ALTER TABLE `banner` DISABLE KEYS */;
INSERT INTO `banner` VALUES (10,'banner-home','Discover A New Marketplace','Temukan tempat terbaru pusat perdagangan','','','innovations-showcase','Learn More','Pelajari Lebih Lanjut','contents/banner/slide-01.jpg',1,'#010409','#FFFFFF',1,'0000-00-00','0000-00-00',2,'2016-12-27 15:59:46','2016-12-27 15:59:46');
/*!40000 ALTER TABLE `banner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact`
--

DROP TABLE IF EXISTS `contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(256) DEFAULT NULL,
  `email_to` text DEFAULT NULL,
  `email_cc` text DEFAULT NULL,
  `published` int(1) NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact`
--

LOCK TABLES `contact` WRITE;
/*!40000 ALTER TABLE `contact` DISABLE KEYS */;
INSERT INTO `contact` VALUES (5,'Medikpro','info@medikpro.com','',0,2,'2015-06-11 15:19:50','2016-12-27 16:12:24');
/*!40000 ALTER TABLE `contact` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_inbox`
--

DROP TABLE IF EXISTS `contact_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact_inbox` (
  `id_inbox` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `phone_number` varchar(20) NOT NULL,
  `message` text NOT NULL,
  `type` int(1) NOT NULL,
  PRIMARY KEY (`id_inbox`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_inbox`
--

LOCK TABLES `contact_inbox` WRITE;
/*!40000 ALTER TABLE `contact_inbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_format`
--

DROP TABLE IF EXISTS `email_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_format` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `subject` varchar(225) NOT NULL,
  `email_from` varchar(100) NOT NULL,
  `email_cc` varchar(100) NOT NULL,
  `email_from_name` varchar(225) NOT NULL,
  `email_to` varchar(100) NOT NULL,
  `reply_to` varchar(100) NOT NULL,
  `attach_file` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `created_at` datetime NOT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_format`
--

LOCK TABLES `email_format` WRITE;
/*!40000 ALTER TABLE `email_format` DISABLE KEYS */;
INSERT INTO `email_format` VALUES (4,'contactus','New Contact from [first_name] ([email_from])','noreply@emporiadigital.com','','Emporia Digital System','','','','<p>Hi [title_contact] ([email_to]),</p>\r\n<p>&nbsp;</p>\r\n<p>Contact From : [first_name] [last_name], [email_from] , [phone_number]</p>\r\n<p>Message:</p>\r\n<p>[message]</p>\r\n<p>&nbsp;</p>\r\n<div style=\"font-family: Arial;\"><span class=\"x_Apple-style-span\" style=\"font-family: arial,helvetica,sans-serif;\">Thank you.</span></div>\r\n<div style=\"font-family: Arial;\"><span class=\"x_Apple-style-span\" style=\"font-family: arial,helvetica,sans-serif;\">&nbsp;</span></div>\r\n<p><span style=\"font-family: arial,helvetica,sans-serif;\">Warm Regards,</span><br /><span style=\"font-family: arial,helvetica,sans-serif;\">The Emporiadigital.com Team</span></p>\r\n<hr />\r\n<p><span style=\"font-family: arial,helvetica,sans-serif;\">Copyright &copy; 2016, Emporiadigital.com. All rights reserved. Privacy Policy | Terms of Use</span></p>','0000-00-00 00:00:00','2016-03-16 17:36:09');
/*!40000 ALTER TABLE `email_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_downloader`
--

DROP TABLE IF EXISTS `file_downloader`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_downloader` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `brochure_id` int(11) DEFAULT NULL,
  `full_name` varchar(256) DEFAULT NULL,
  `first_name` varchar(256) DEFAULT NULL,
  `last_name` varchar(256) DEFAULT NULL,
  `email` varchar(256) DEFAULT NULL,
  `position` varchar(256) DEFAULT NULL,
  `company` varchar(256) DEFAULT NULL,
  `uniq` varchar(10) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_downloader`
--

LOCK TABLES `file_downloader` WRITE;
/*!40000 ALTER TABLE `file_downloader` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_downloader` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_item`
--

DROP TABLE IF EXISTS `file_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_file_manager` int(11) NOT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) NOT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text NOT NULL,
  `image_location` text DEFAULT NULL,
  `file_location` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_item`
--

LOCK TABLES `file_item` WRITE;
/*!40000 ALTER TABLE `file_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_manager`
--

DROP TABLE IF EXISTS `file_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_manager` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` varchar(256) NOT NULL,
  `title` varchar(256) NOT NULL,
  `title_bahasa` varchar(256) NOT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `modified_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_manager`
--

LOCK TABLES `file_manager` WRITE;
/*!40000 ALTER TABLE `file_manager` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_manager` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `important_news`
--

DROP TABLE IF EXISTS `important_news`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `important_news` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `id_list_item` int(20) DEFAULT NULL,
  `created_by` int(1) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `important_news`
--

LOCK TABLES `important_news` WRITE;
/*!40000 ALTER TABLE `important_news` DISABLE KEYS */;
/*!40000 ALTER TABLE `important_news` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `log`
--

DROP TABLE IF EXISTS `log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `log` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=750 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log`
--

LOCK TABLES `log` WRITE;
/*!40000 ALTER TABLE `log` DISABLE KEYS */;
INSERT INTO `log` VALUES (1,'Support Advika edit in post (title=Our Services)',2,'2016-08-24 23:23:40'),(2,'Support Advika edit in post (title=Our Services)',2,'2016-08-24 23:25:23'),(3,'Support Advika add new album (title=Managed Security Services)',2,'2016-08-24 23:26:59'),(4,'Support Advika add new album (title=Profesional Security Services)',2,'2016-08-24 23:27:14'),(5,'Support Advika add new album (title=Consulting Security Services)',2,'2016-08-24 23:27:27'),(6,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-08-24 23:28:42'),(7,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-08-24 23:28:55'),(8,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-08-24 23:29:06'),(9,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-08-25 15:45:00'),(10,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-08-25 16:25:17'),(11,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-08-25 16:25:26'),(12,'Support Advika add new album Item (title=Managed UTM)',2,'2016-08-25 16:26:32'),(13,'Support Advika add new Testimonial (title=)',2,'2016-08-26 14:55:09'),(14,'Support Advika edit in Testimonial (title=)',2,'2016-08-26 14:56:34'),(15,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-08-26 14:58:41'),(16,'Support Advika edit in post (title=About Us)',2,'2016-08-26 15:05:30'),(17,'Support Advika add new contactus (title=Contact Us)',2,'2016-08-26 15:06:54'),(18,'Support Advika edit in album Item (title=Michael Smith)',2,'2016-08-26 15:10:48'),(19,'Support Advika edit in album Item (title=Sajid Rahman)',2,'2016-08-26 15:11:06'),(20,'Support Advika edit in album Item (title=Ian Gillard)',2,'2016-08-26 15:11:16'),(21,'Support Advika edit in album Item (title=Ivan Goh)',2,'2016-08-26 15:11:24'),(22,'Support Advika add new album (title=The Team)',2,'2016-08-26 15:11:56'),(23,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-08-26 15:16:56'),(24,'Support Advika add new Article (title=ObserveIT Training Session at ARIM’s office)',2,'2016-08-26 15:24:54'),(25,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-08-26 15:27:47'),(26,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-08-26 15:53:36'),(27,'Support Advika add new album Item (title=Advanced Attack Simulation)',2,'2016-08-26 15:55:12'),(28,'Support Advika add new album Item (title=Application Security Testing)',2,'2016-08-26 15:56:11'),(29,'Support Advika add new album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-08-26 15:56:56'),(30,'Support Advika add new album Item (title=Network & Host Security)',2,'2016-08-26 15:57:27'),(31,'Support Advika add new album Item (title=Frictionless Security)',2,'2016-08-26 16:08:39'),(32,'Support Advika add new album Item (title=Remediate)',2,'2016-08-26 16:09:31'),(33,'Support Advika add new album Item (title=Forensics)',2,'2016-08-26 16:10:16'),(34,'Support Advika add new album Item (title=Application Communication Control)',2,'2016-08-26 16:11:04'),(35,'Support Advika add new album Item (title=ProtectAnywhere)',2,'2016-08-26 16:11:59'),(36,'Support Advika add new album Item (title=Request for an enSilo Demo)',2,'2016-08-26 16:12:49'),(37,'Support Advika add new album Item (title=Employee Monitoring)',2,'2016-08-26 16:16:24'),(38,'Support Advika add new album Item (title=Detection - User Behavior Analytics)',2,'2016-08-26 16:17:03'),(39,'Support Advika add new album Item (title=Prevention - Policy Enforcement)',2,'2016-08-26 16:19:50'),(40,'Support Advika edit in album Item (title=Prevention - Policy Enforcement)',2,'2016-08-26 16:20:06'),(41,'Support Advika add new album Item (title=Investigation - Digital Forensics)',2,'2016-08-26 16:21:22'),(42,'Support Advika add new album Item (title=Request for an OIT Demo)',2,'2016-08-26 16:22:29'),(43,'Support Advika add new album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-08-26 16:46:47'),(44,'Support Advika add new album Item (title=Network Architecture Assessment)',2,'2016-08-26 16:47:57'),(45,'Support Advika add new album Item (title=Firewall Security Assessment)',2,'2016-08-26 16:48:35'),(46,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-08-26 17:00:42'),(47,'Support Advika add new post (title=Blog)',2,'2016-08-27 08:54:52'),(48,'Support Advika edit in album Item (title=Request for an enSilo Demo)',2,'2016-08-27 08:57:13'),(49,'Support Advika edit in album Item (title=Request for an enSilo Demo)',2,'2016-08-27 08:57:54'),(50,'Support Advika edit in album Item (title=ProtectAnywhere)',2,'2016-08-27 09:00:49'),(51,'Support Advika add new Testimonial (title=)',2,'2016-08-27 09:12:49'),(52,'Support Advika edit in album Item (title=ProtectAnywhere)',2,'2016-08-27 09:29:03'),(53,'Support Advika edit in album Item (title=ProtectAnywhere)',2,'2016-08-27 09:31:30'),(54,'Support Advika add new Testimonial (title=)',2,'2016-08-27 09:31:35'),(55,'Support Advika edit in album Item (title=ProtectAnywhere)',2,'2016-08-27 09:32:44'),(56,'Support Advika edit in Menu (title=In The News2)',2,'2016-08-27 21:29:53'),(57,'Support Advika add new post (title=In The News)',2,'2016-08-27 21:30:19'),(58,'Support Advika add new album (title=Resources)',2,'2016-08-27 23:07:00'),(59,'Support Advika add new album Item (title=Managed UTM)',2,'2016-08-29 15:11:04'),(60,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-08-29 15:16:32'),(61,'Support Advika add new album Item (title=Managed NGFW)',2,'2016-08-29 15:22:24'),(62,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-08-29 15:53:27'),(63,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-08-29 15:54:35'),(64,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 15:54:52'),(65,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-08-29 16:01:09'),(66,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-08-29 16:03:07'),(67,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-08-29 16:04:31'),(68,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-08-29 16:05:16'),(69,'Support Advika edit in album Item (title=Network Architecture Assessment)',2,'2016-08-29 16:07:34'),(70,'Support Advika add new album Item (title=Managed SIEM)',2,'2016-08-29 17:25:50'),(71,'Support Advika add new album Item (title=USM Platform)',2,'2016-08-29 17:27:28'),(72,'Support Advika add new album Item (title=UTM + USM)',2,'2016-08-29 17:29:01'),(73,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 17:35:58'),(74,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-08-29 17:36:04'),(75,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 17:37:00'),(76,'Support Advika add new album Item (title=Centralized Management)',2,'2016-08-29 17:38:33'),(77,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-08-29 17:41:26'),(78,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-08-29 17:43:38'),(79,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 17:43:56'),(80,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 17:45:50'),(81,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-08-29 17:55:56'),(82,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-08-29 17:57:14'),(83,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-08-29 17:59:20'),(84,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-08-29 18:08:24'),(85,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-08-29 18:14:49'),(86,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-08-29 18:16:49'),(87,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-08-29 18:21:45'),(88,'Support Advika add new album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-08-29 18:27:05'),(89,'Support Advika edit in album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-08-29 18:27:35'),(90,'Support Advika edit in album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-08-29 18:43:46'),(91,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-08-29 18:45:14'),(92,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-08-29 19:16:39'),(93,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-08-29 19:17:20'),(94,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-08-29 19:19:34'),(95,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-08-29 19:20:29'),(96,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-08-29 19:22:33'),(97,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-08-29 19:24:24'),(98,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-08-29 19:26:59'),(99,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-08-29 19:28:19'),(100,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-08-29 19:31:23'),(101,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-08-29 19:31:47'),(102,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-08-29 19:41:52'),(103,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-08-29 19:48:11'),(104,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-08-29 19:56:17'),(105,'Support Advika add new album (title=Insider Threats Management)',2,'2016-08-29 20:02:13'),(106,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-08-29 20:07:13'),(107,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-08-29 20:08:01'),(108,'Support Advika edit in album Item (title=Employee Monitoring)',2,'2016-08-29 20:28:05'),(109,'Support Advika edit in album Item (title=Data Protection)',2,'2016-08-30 11:01:30'),(110,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-08-30 11:14:09'),(111,'Support Advika edit in album Item (title=Frictionless Security)',2,'2016-08-30 11:23:02'),(112,'Support Advika edit in album Item (title=Remediate)',2,'2016-08-30 11:30:08'),(113,'Support Advika edit in album Item (title=Forensics)',2,'2016-08-30 11:34:13'),(114,'Support Advika edit in album Item (title=Forensics)',2,'2016-08-30 11:34:21'),(115,'Support Advika edit in album Item (title=Forensics)',2,'2016-08-30 11:35:10'),(116,'Support Advika edit in album Item (title=Application Communication Control)',2,'2016-08-30 11:39:24'),(117,'Support Advika edit in album Item (title=Application Communication Control)',2,'2016-08-30 11:43:32'),(118,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-08-30 14:20:06'),(119,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-08-30 14:29:10'),(120,'Support Advika edit in album Item (title=Prevention - Policy Enforcement)',2,'2016-08-30 15:12:44'),(121,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-08-30 15:46:29'),(122,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-08-30 16:06:06'),(123,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-08-30 16:07:23'),(124,'Support Advika add new Article (title=ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking)',2,'2016-08-30 16:35:25'),(125,'Support Advika add new Article (title=Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia)',2,'2016-08-30 16:45:08'),(126,'Support Advika edit in post (title=About Us)',2,'2016-08-31 00:28:53'),(127,'Support Advika edit in post (title=About Us)',2,'2016-08-31 00:29:14'),(128,'Support Advika edit in post (title=About Us)',2,'2016-08-31 09:51:57'),(129,'Support Advika edit in post (title=About Us)',2,'2016-08-31 09:53:13'),(130,'Support Advika add new album Item (title=Case Study -  Investment Fund)',2,'2016-08-31 10:00:45'),(131,'Support Advika add new album Item (title=Industry Brief - Legal)',2,'2016-08-31 10:12:57'),(132,'Support Advika add new album Item (title=Solution Brief - VDI)',2,'2016-08-31 10:27:03'),(133,'Support Advika add new album Item (title=Industry Brief - Healthcare)',2,'2016-08-31 10:30:47'),(134,'Support Advika edit in album Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-08-31 10:39:32'),(135,'Support Advika edit in album Item (title=Preventing the impact of Ransomware)',2,'2016-08-31 10:41:48'),(136,'Support Advika edit in album Item (title=Keeping VDI Environments Running and Secure)',2,'2016-08-31 10:42:59'),(137,'Support Advika edit in album Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-08-31 10:43:34'),(138,'Support Advika add new album Item (title=Vulnerable by Design)',2,'2016-08-31 10:57:15'),(139,'Support Advika add new album Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-08-31 11:01:31'),(140,'Support Advika add new contactus (title=Contact Us)',2,'2016-08-31 14:20:28'),(141,'Support Advika edit in Article (title=Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia)',2,'2016-08-31 14:32:35'),(142,'Support Advika edit in Article (title=ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking)',2,'2016-08-31 14:43:11'),(143,'Support Advika edit in album Item (title=Keeping VDI Environments Running and Secure)',2,'2016-08-31 15:14:39'),(144,'Support Advika edit in album Item (title=Keeping VDI Environments Running and Secure)',2,'2016-08-31 15:15:21'),(145,'Support Advika edit in album Item (title=Keeping VDI Environments Running and Secure)',2,'2016-08-31 15:19:04'),(146,'Support Advika edit in album Item (title=Keeping VDI Environments Running and Secure)',2,'2016-08-31 15:19:44'),(147,'Support Advika add new Article (title=Majalah SWA Online – ARIM Technologies Goes Full Throttle in Cyber Security Business)',2,'2016-08-31 15:24:48'),(148,'Support Advika edit in album Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-08-31 15:29:32'),(149,'Support Advika add new Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 15:44:10'),(150,'Support Advika add new Article (title=Warta Ekonomi Online – ARIM Technologies Ready to Help Protect the Financial Industry from Cyber Attacks)',2,'2016-08-31 15:58:51'),(151,'Support Advika edit in Article (title=Warta Ekonomi Online – ARIM Technologies Ready to Help Protect the Financial Industry from Cyber Attacks)',2,'2016-08-31 16:34:51'),(152,'Support Advika add new Article (title=InfoKomputer Magazine: June 2016 – Executive View)',2,'2016-08-31 16:49:15'),(153,'Support Advika add new Article (title=Bisnis Indonesia – Lack Of Awareness In Cyber Security Investment)',2,'2016-08-31 17:02:42'),(154,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:10:50'),(155,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:11:47'),(156,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:12:27'),(157,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:12:57'),(158,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:14:06'),(159,'Support Advika edit in Article (title=InfoKomputer Magazine: July 2016 – Cover Story)',2,'2016-08-31 17:14:39'),(160,'Support Advika edit in Article (title=InfoKomputer Magazine: June 2016 – Executive View)',2,'2016-08-31 17:18:31'),(161,'Support Advika edit in Article (title=InfoKomputer Magazine: June 2016 – Executive View)',2,'2016-08-31 17:20:14'),(162,'Support Advika edit in Article (title=Bisnis Indonesia – Lack Of Awareness In Cyber Security Investment)',2,'2016-08-31 17:22:30'),(163,'Support Advika edit in Article (title=Bisnis Indonesia – Lack Of Awareness In Cyber Security Investment)',2,'2016-08-31 17:23:53'),(164,'Support Advika edit in album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-08-31 17:39:03'),(165,'Support Advika edit in album Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-08-31 17:50:37'),(166,'Support Advika edit in album Item (title=Preventing the impact of Ransomware)',2,'2016-08-31 17:58:36'),(167,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-08-31 19:21:03'),(168,'Support Advika edit in album Item (title=Request for an enSilo Demo)',2,'2016-08-31 19:29:48'),(169,'Support Advika edit in album Item (title=ProtectAnywhere)',2,'2016-08-31 19:30:45'),(170,'Support Advika edit in album Item (title=Application Communication Control)',2,'2016-08-31 19:31:13'),(171,'Support Advika edit in album Item (title=Forensics)',2,'2016-08-31 19:31:36'),(172,'Support Advika edit in album Item (title=Remediate)',2,'2016-08-31 19:31:54'),(173,'Support Advika edit in album Item (title=Frictionless Security)',2,'2016-08-31 19:32:06'),(174,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-08-31 19:32:15'),(175,'Support Advika edit in album Item (title=Data Protection)',2,'2016-08-31 19:32:21'),(176,'Support Advika add new album (title=Insider Threats Management)',2,'2016-08-31 19:49:41'),(177,'Support Advika add new album (title=Insider Threats Management)',2,'2016-08-31 19:51:00'),(178,'Support Advika edit in album Item (title=Request for an OIT Demo)',2,'2016-08-31 19:55:39'),(179,'Support Advika edit in album Item (title=Request for an OIT Demo)',2,'2016-08-31 19:55:52'),(180,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-08-31 19:56:35'),(181,'Support Advika edit in album Item (title=Prevention - Policy Enforcement)',2,'2016-08-31 19:58:10'),(182,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-08-31 20:02:03'),(183,'Support Advika edit in album Item (title=Employee Monitoring)',2,'2016-08-31 20:02:32'),(184,'Support Advika edit in album Item (title=Managed SIEM)',2,'2016-08-31 20:26:31'),(185,'Support Advika add new post (title=Technology Partners)',2,'2016-08-31 20:28:39'),(186,'Support Advika edit in menu (title=Partners)',2,'2016-08-31 20:30:32'),(187,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-08-31 20:34:23'),(188,'Support Advika edit in album Item (title=Data Protection)',2,'2016-09-01 14:33:21'),(189,'Support Advika edit in album Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-09-01 15:56:50'),(190,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-01 15:59:04'),(191,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-09-01 19:11:13'),(192,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-02 14:21:52'),(193,'Support Advika add new post (title=Sub Partners)',2,'2016-09-03 09:31:21'),(194,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-03 23:07:41'),(195,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-03 23:09:54'),(196,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-03 23:10:05'),(197,'Support Advika edit in post (title=Channel Partners)',2,'2016-09-04 16:58:58'),(198,'Support Advika add new post (title=Technology Partners)',2,'2016-09-04 16:59:56'),(199,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-09-04 17:04:38'),(200,'Support Advika add new album (title=Partners)',2,'2016-09-04 17:44:37'),(201,'Support Advika add new album (title=Channel Partners)',2,'2016-09-04 17:45:53'),(202,'Support Advika add new album Item (title=Channel Partners 1)',2,'2016-09-04 17:46:23'),(203,'Support Advika add new album (title=Channel Partners)',2,'2016-09-04 17:48:24'),(204,'Support Advika add new album (title=Technology Partners)',2,'2016-09-04 17:50:05'),(205,'Support Advika add new album (title=Technology Partners)',2,'2016-09-04 17:55:19'),(206,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-09-04 19:04:54'),(207,'Support Advika add new album Item (title=Startups)',2,'2016-09-04 19:05:46'),(208,'Support Advika add new album Item (title=Venture Capitals)',2,'2016-09-04 19:06:57'),(209,'Support Advika add new album Item (title=Enterprise Customers)',2,'2016-09-04 19:07:32'),(210,'Support Advika add new post (title=Channel Partners)',2,'2016-09-04 19:08:38'),(211,'Support Advika add new post (title=Technology Partners)',2,'2016-09-04 19:09:21'),(212,'Support Advika edit in album Item (title=Startups)',2,'2016-09-05 09:50:15'),(213,'Support Advika add new album Item (title=Startups)',2,'2016-09-05 10:15:35'),(214,'Support Advika edit in album Item (title=Startups)',2,'2016-09-05 10:16:25'),(215,'Support Advika edit in album Item (title=Venture Capitals)',2,'2016-09-05 10:22:56'),(216,'Support Advika edit in album Item (title=Enterprise Customers)',2,'2016-09-05 10:31:25'),(217,'Support Advika add new album (title=Profesional Security Services)',2,'2016-09-05 10:39:12'),(218,'Support Advika add new album Item (title=enSilo 30Sec. pitch)',2,'2016-09-05 15:15:40'),(219,'Support Advika add new album Item (title=enSilo in a nutshell)',2,'2016-09-05 15:18:48'),(220,'Support Advika add new album Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-09-05 15:23:40'),(221,'Support Advika add new album Item (title=Virtual patching for pos System)',2,'2016-09-05 15:26:39'),(222,'Support Advika add new album Item (title=Intro to enSilo)',2,'2016-09-05 15:29:00'),(223,'Support Advika add new album Item (title=We lost the battle against intusiosn.We are left to raise Our hand in defeat?)',2,'2016-09-05 15:32:10'),(224,'Support Advika edit in post (title=Blog)',2,'2016-09-05 19:13:41'),(225,'Support Advika add new list (title=Press Release)',2,'2016-09-05 19:32:27'),(226,'Support Advika add new list (title=Event)',2,'2016-09-05 19:32:58'),(227,'Support Advika edit in post (title=About Us)',2,'2016-09-05 19:41:25'),(228,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-05 19:50:11'),(229,'Support Advika edit in post (title=Technology Partners)',2,'2016-09-05 20:30:56'),(230,'Support Advika edit in post (title=Technology Partners)',2,'2016-09-05 20:35:16'),(231,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-09-06 17:08:49'),(232,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-09-06 17:10:22'),(233,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-09-06 17:10:38'),(234,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-09-06 17:10:50'),(235,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-09-06 17:11:02'),(236,'Support Advika edit in album Item (title=Managed SIEM)',2,'2016-09-06 17:11:16'),(237,'Support Advika edit in album Item (title=USM Platform)',2,'2016-09-06 17:11:25'),(238,'Support Advika edit in album Item (title=UTM + USM)',2,'2016-09-06 17:11:43'),(239,'Support Advika edit in album Item (title=Centralized Management)',2,'2016-09-06 17:11:54'),(240,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-09-06 17:19:31'),(241,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-09-06 17:20:32'),(242,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-09-06 17:21:13'),(243,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-09-06 17:21:44'),(244,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-09-06 17:22:25'),(245,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-09-06 17:25:45'),(246,'Support Advika edit in album Item (title=Network Architecture Assessment)',2,'2016-09-06 17:26:12'),(247,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-09-06 17:26:37'),(248,'Support Advika edit in post (title=Our Services)',2,'2016-09-06 23:51:07'),(249,'Support Advika edit in album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-09-06 23:51:26'),(250,'Support Advika add new album (title=Resources)',2,'2016-09-06 23:53:14'),(251,'Support Advika add new album (title=The Team)',2,'2016-09-07 10:46:13'),(252,'Support Advika edit in album Item (title=Managed SIEM)',2,'2016-09-07 10:47:41'),(253,'Support Advika edit in album Item (title=USM Platform)',2,'2016-09-07 10:48:31'),(254,'Support Advika edit in album Item (title=UTM + USM)',2,'2016-09-07 10:49:14'),(255,'Support Advika edit in post (title=Careers)',2,'2016-09-07 10:50:35'),(256,'Support Advika add new album Item (title=Startups)',2,'2016-09-07 11:34:12'),(257,'Support Advika add new album Item (title=Venture Capital)',2,'2016-09-07 11:39:33'),(258,'Support Advika add new album Item (title=Enterprise Customers)',2,'2016-09-07 11:43:45'),(259,'Support Advika edit in post (title=Partners)',2,'2016-09-07 11:55:05'),(260,'Support Advika edit in album Item (title=Venture Capital)',2,'2016-09-07 14:48:40'),(261,'Support Advika edit in post (title=Our Services)',2,'2016-09-07 20:59:28'),(262,'Support Advika add new album (title=Managed Security Services)',2,'2016-09-08 10:16:38'),(263,'Support Advika add new album (title=Managed Security Services)',2,'2016-09-08 10:24:28'),(264,'Support Advika add new album (title=Profesional Security Services)',2,'2016-09-08 10:25:39'),(265,'Support Advika add new album (title=Consulting Security Services)',2,'2016-09-08 10:26:50'),(266,'Support Advika edit in post (title=Our Services)',2,'2016-09-08 10:32:52'),(267,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-09-08 10:56:34'),(268,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-08 11:34:21'),(269,'Support Advika add new album (title=Managed Security Services)',2,'2016-09-08 13:23:17'),(270,'Support Advika edit in post (title=Our Services)',2,'2016-09-08 13:28:40'),(271,'Support Advika edit in album Item (title=Leading Railway Secures Data with enSilo)',2,'2016-09-08 18:44:19'),(272,'Support Advika edit in menu (title=asd)',2,'2016-09-08 19:16:16'),(273,'Support Advika edit in menu (title=Tes)',2,'2016-09-08 19:17:24'),(274,'Support Advika add new  (title=Tes)',2,'2016-09-10 10:36:10'),(275,'Support Advika edit in album Item (title=Startups)',2,'2016-09-10 14:40:39'),(276,'Support Advika edit in post (title=Careers)',2,'2016-09-12 12:06:51'),(277,'Support Advika edit in menu (title=Partners)',2,'2016-09-12 13:03:11'),(278,'Support Advika add new post (title=Channel Partners)',2,'2016-09-12 13:04:28'),(279,'Support Advika add new post (title=Technology Partners)',2,'2016-09-12 13:05:52'),(280,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-09-12 13:06:13'),(281,'Support Advika edit in album Item (title=Venture Capital)',2,'2016-09-12 19:45:43'),(282,'Support Advika edit in album Item (title=Venture Capital)',2,'2016-09-12 19:47:43'),(283,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-09-12 19:49:07'),(284,'Support Advika edit in album Item (title=enSilo 30Sec. pitch)',2,'2016-09-12 20:13:46'),(285,'Support Advika edit in album Item (title=enSilo in a nutshell)',2,'2016-09-12 20:14:46'),(286,'Support Advika edit in album Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-09-12 20:16:38'),(287,'Support Advika edit in album Item (title=Virtual patching for pos System)',2,'2016-09-12 20:19:12'),(288,'Support Advika edit in album Item (title=Intro to enSilo)',2,'2016-09-12 20:20:59'),(289,'Support Advika edit in album Item (title=We lost the battle against intusiosn.We are left to raise Our hand in defeat?)',2,'2016-09-12 20:22:18'),(290,'Support Advika edit in album Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-09-12 20:26:30'),(291,'Support Advika edit in Article (title=Majalah SWA Online – ARIM Technologies Goes Full Throttle in Cyber Security Business)',2,'2016-09-12 20:39:27'),(292,'Support Advika edit in Article (title=Majalah SWA Online – ARIM Technologies Goes Full Throttle in Cyber Security Business)',2,'2016-09-12 20:39:27'),(293,'Support Advika edit in post (title=Careers)',2,'2016-09-12 20:47:31'),(294,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-09-14 10:53:42'),(295,'Support Advika add new album (title=Consulting Security Services)',2,'2016-09-14 10:57:01'),(296,'Support Advika edit in album Item (title=Venture Capital)',2,'2016-09-14 11:32:28'),(297,'Support Advika edit in post (title=Careers)',2,'2016-09-14 19:31:59'),(298,'Support Advika edit in post (title=Careers)',2,'2016-09-14 19:33:17'),(299,'Support Advika edit in post (title=About Us)',2,'2016-09-14 19:34:04'),(300,'Support Advika edit in post (title=Our Services)',2,'2016-09-14 19:46:38'),(301,'Support Advika edit in post (title=Our Services)',2,'2016-09-14 20:26:43'),(302,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-09-14 20:28:28'),(303,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-09-14 21:00:49'),(304,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-09-14 21:03:58'),(305,'Support Advika edit in post (title=Careers)',2,'2016-09-14 21:20:46'),(306,'Support Advika add new album (title=Managed Security Services)',2,'2016-09-15 11:33:37'),(307,'Support Advika add new album (title=Profesional Security Services)',2,'2016-09-15 11:35:25'),(308,'Support Advika edit in post (title=About Us)',2,'2016-09-15 11:55:13'),(309,'Support Advika edit in post (title=About Us)',2,'2016-09-15 11:56:04'),(310,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-09-15 12:04:43'),(311,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-09-15 12:05:50'),(312,'Support Advika add new contactus (title=Contact Us)',2,'2016-09-15 14:01:28'),(313,'Support Advika add new Article (title=Manufacturing and Cyber Security – Creating Internal Peace Of Mind)',2,'2016-09-15 14:09:16'),(314,'Support Advika add new Article (title=Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware)',2,'2016-09-15 14:17:57'),(315,'Support Advika add new Article (title=ireside Chat Series #5 | Think out of the box: Innovate for survival against Advanced Cyber Threats)',2,'2016-09-15 14:27:25'),(316,'Support Advika add new Article (title=Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong)',2,'2016-09-15 14:36:13'),(317,'Support Advika add new Article (title=Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop)',2,'2016-09-15 14:39:30'),(318,'Support Advika add new Article (title=Next Gen CIO/CISO – Innovate for survival against Cyber Threats)',2,'2016-09-15 14:49:56'),(319,'Support Advika add new Article (title=You cannot protect what you cannot see)',2,'2016-09-15 14:55:09'),(320,'Support Advika add new Article (title=RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!)',2,'2016-09-15 14:58:12'),(321,'Support Advika edit in Article (title=Think out of the box: Innovate for survival against Advanced Cyber Threats)',2,'2016-09-15 15:00:22'),(322,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-09-15 15:30:53'),(323,'Support Advika edit in post (title=In The News)',2,'2016-09-15 15:34:32'),(324,'Support Advika edit in album Item (title=Preventing the impact of Ransomware)',2,'2016-09-15 15:38:21'),(325,'Support Advika edit in album Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-09-15 15:44:15'),(326,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-15 15:47:40'),(327,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-15 15:48:12'),(328,'Support Advika edit in album Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-09-15 15:52:48'),(329,'Support Advika edit in post (title=Partners)',2,'2016-09-15 15:55:01'),(330,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-15 15:55:52'),(331,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-09-15 15:58:18'),(332,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-15 16:02:23'),(333,'Support Advika edit in album Item (title=Vulnerable by Design)',2,'2016-09-15 16:03:20'),(334,'Support Advika edit in post (title=About Us)',2,'2016-09-15 16:04:37'),(335,'Support Advika edit in post (title=About Us)',2,'2016-09-15 16:05:23'),(336,'Support Advika edit in post (title=About Us)',2,'2016-09-15 16:05:39'),(337,'Support Advika edit in album Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-09-15 16:06:03'),(338,'Support Advika edit in album Item (title=Employee Monitoring)',2,'2016-09-15 16:09:28'),(339,'Support Advika edit in post (title=Careers)',2,'2016-09-15 16:11:21'),(340,'Support Advika edit in post (title=About Us)',2,'2016-09-15 16:12:51'),(341,'Support Advika edit in album Item (title=enSilo 30Sec. pitch)',2,'2016-09-15 16:18:28'),(342,'Support Advika edit in album Item (title=enSilo 30Sec. pitch)',2,'2016-09-15 16:20:10'),(343,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-09-15 16:30:27'),(344,'Support Advika edit in album Item (title=enSilo 30Sec. pitch)',2,'2016-09-15 16:31:23'),(345,'Support Advika edit in album Item (title=Intro to enSilo)',2,'2016-09-15 16:34:23'),(346,'Support Advika edit in album Item (title=We lost the battle against intusiosn.We are left to raise Our hand in defeat?)',2,'2016-09-15 16:36:30'),(347,'Support Advika edit in album Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-09-15 16:56:46'),(348,'Support Advika edit in album Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-09-15 17:19:08'),(349,'Support Advika edit in album Item (title=Keeping Financial Institutions Operating)',2,'2016-09-15 17:23:35'),(350,'Support Advika edit in post (title=Technologies)',2,'2016-10-07 15:03:05'),(351,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-09 09:08:06'),(352,'Support Advika add new album (title=Profesional Security Services)',2,'2016-10-09 09:14:02'),(353,'Support Advika add new album (title=Consulting Security Services)',2,'2016-10-09 09:16:40'),(354,'Support Advika edit in album Item (title=Ivan Goh)',2,'2016-10-11 19:08:40'),(355,'Support Advika edit in album Item (title=Ivan Goh)',2,'2016-10-11 19:11:13'),(356,'Support Advika edit in album Item (title=Sajid Rahman)',2,'2016-10-11 19:12:16'),(357,'Support Advika edit in post (title=About Us)',2,'2016-10-12 14:11:02'),(358,'Support Advika edit in album Item (title=Ivan Goh)',2,'2016-10-13 10:23:26'),(359,'Support Advika edit in album Item (title=Ian Gillard)',2,'2016-10-13 10:28:43'),(360,'Support Advika edit in album Item (title=Sajid Rahman)',2,'2016-10-13 10:29:50'),(361,'Support Advika edit in album Item (title=Michael Smith)',2,'2016-10-13 10:30:25'),(362,'Support Advika edit in post (title=Careers)',2,'2016-10-13 10:53:44'),(363,'Support Advika add new album (title=Technologies)',2,'2016-10-18 13:38:39'),(364,'Support Advika add new album Item (title=Technology Partners)',2,'2016-10-18 13:39:44'),(365,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-10-18 13:42:14'),(366,'Support Advika edit in post (title=Careers)',2,'2016-10-18 14:10:58'),(367,'Support Advika edit in post (title=Technologies)',2,'2016-10-18 16:01:25'),(368,'Support Advika edit in post (title=Technologies)',2,'2016-10-18 16:02:02'),(369,'Support Advika edit in post (title=Technologies)',2,'2016-10-18 16:02:43'),(370,'Support Advika add new gallery (title=Resources)',2,'2016-10-18 20:00:13'),(371,'Support Advika add new Add category galery (title=Arim)',2,'2016-10-18 20:01:13'),(372,'Support Advika add new Add category galery (title=enSilo)',2,'2016-10-18 20:02:15'),(373,'Support Advika add new Add category galery (title=Observe IT)',2,'2016-10-18 20:03:06'),(374,'Support Advika add new gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-18 20:08:12'),(375,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-19 00:42:13'),(376,'Support Advika add new gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-19 01:00:18'),(377,'Support Advika add new gallery Item (title=Managed Security Serviced (MSS))',2,'2016-10-19 08:22:58'),(378,'Support Advika add new gallery Item (title=Profesional Security Services)',2,'2016-10-19 08:23:52'),(379,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:24:14'),(380,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:24:32'),(381,'Support Advika add new gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:25:08'),(382,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:26:39'),(383,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:28:10'),(384,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:29:05'),(385,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:30:14'),(386,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:34:14'),(387,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:36:37'),(388,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:38:06'),(389,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:39:46'),(390,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:40:00'),(391,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:40:16'),(392,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:44:06'),(393,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:44:18'),(394,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:44:27'),(395,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:46:19'),(396,'Support Advika edit in gallery Item (title=Profesional Security Services (PSS))',2,'2016-10-19 08:46:28'),(397,'Support Advika edit in gallery Item (title=Consulting Security Services (CSS))',2,'2016-10-19 08:46:39'),(398,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-19 08:46:58'),(399,'Support Advika edit in gallery (title=Arim)',2,'2016-10-19 08:48:26'),(400,'Support Advika add new album (title=Resources)',2,'2016-10-19 08:50:50'),(401,'Support Advika edit in gallery (title=)',2,'2016-10-19 08:52:05'),(402,'Support Advika edit in gallery (title=)',2,'2016-10-19 08:52:06'),(403,'Support Advika edit in gallery (title=)',2,'2016-10-19 08:52:19'),(404,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-19 08:52:33'),(405,'Support Advika edit in gallery (title=Arim)',2,'2016-10-19 08:53:13'),(406,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-19 08:53:43'),(407,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-19 08:54:38'),(408,'Support Advika edit in gallery (title=Observe IT)',2,'2016-10-19 08:55:16'),(409,'Support Advika add new gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-19 08:58:39'),(410,'Support Advika add new gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-19 09:00:27'),(411,'Support Advika add new gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-19 09:01:25'),(412,'Support Advika add new gallery Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-10-19 09:06:48'),(413,'Support Advika add new gallery Item (title=Vulnerable by Design)',2,'2016-10-19 09:08:14'),(414,'Support Advika add new gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-19 09:09:06'),(415,'Support Advika add new gallery Item (title=enSilo 30Sec. pitch)',2,'2016-10-19 09:11:20'),(416,'Support Advika add new gallery Item (title=enSilo in a nutshell)',2,'2016-10-19 09:12:32'),(417,'Support Advika add new gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-19 09:14:17'),(418,'Support Advika add new gallery Item (title=Virtual patching for pos System)',2,'2016-10-19 09:15:21'),(419,'Support Advika add new gallery Item (title=Intro to enSilo)',2,'2016-10-19 09:16:22'),(420,'Support Advika add new gallery Item (title=We lost the battle against intusiosn. We are left to raise Our hand in defeat?)',2,'2016-10-19 09:17:28'),(421,'Support Advika add new gallery Item (title=AIG CASE STUDY)',2,'2016-10-19 10:15:26'),(422,'Support Advika add new gallery Item (title=CUSTOMER STORIES)',2,'2016-10-19 10:21:30'),(423,'Support Advika add new gallery Item (title=RECORDED WEBINARS)',2,'2016-10-19 10:22:08'),(424,'Support Advika add new gallery Item (title=WHITE PAPERS)',2,'2016-10-19 10:23:42'),(425,'Support Advika add new gallery Item (title=COMPLIANCE DATASHEETS)',2,'2016-10-19 10:29:08'),(426,'Support Advika add new gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 10:32:49'),(427,'Support Advika edit in gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 11:06:20'),(428,'Support Advika edit in gallery Item (title=COMPLIANCE DATASHEETS)',2,'2016-10-19 11:07:02'),(429,'Support Advika edit in gallery Item (title=WHITE PAPERS)',2,'2016-10-19 11:41:07'),(430,'Support Advika edit in gallery Item (title=RECORDED WEBINARS)',2,'2016-10-19 11:44:09'),(431,'Support Advika edit in gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 11:48:57'),(432,'Support Advika edit in gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 12:12:33'),(433,'Support Advika edit in gallery Item (title=COMPLIANCE DATASHEETS)',2,'2016-10-19 13:01:42'),(434,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-19 13:07:08'),(435,'Support Advika edit in gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-19 13:07:21'),(436,'Support Advika edit in gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-19 13:07:33'),(437,'Support Advika edit in gallery Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-10-19 13:07:46'),(438,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-19 13:09:05'),(439,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-19 13:09:26'),(440,'Support Advika edit in gallery Item (title=enSilo 30Sec. pitch)',2,'2016-10-19 13:10:21'),(441,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-19 13:10:44'),(442,'Support Advika edit in gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-19 13:11:02'),(443,'Support Advika edit in gallery Item (title=Virtual patching for pos System)',2,'2016-10-19 13:11:17'),(444,'Support Advika edit in gallery Item (title=Intro to enSilo)',2,'2016-10-19 13:12:07'),(445,'Support Advika edit in gallery Item (title=We lost the battle against intusiosn. We are left to raise Our hand in defeat?)',2,'2016-10-19 13:12:25'),(446,'Support Advika edit in gallery Item (title=Virtual patching for pos System)',2,'2016-10-19 13:18:27'),(447,'Support Advika edit in gallery Item (title=CUSTOMER STORIES)',2,'2016-10-19 13:23:11'),(448,'Support Advika edit in gallery Item (title=CUSTOMER STORIES)',2,'2016-10-19 13:23:28'),(449,'Support Advika edit in gallery Item (title=RECORDED WEBINARS)',2,'2016-10-19 13:24:36'),(450,'Support Advika edit in gallery Item (title=WHITE PAPERS)',2,'2016-10-19 13:24:48'),(451,'Support Advika edit in gallery Item (title=COMPLIANCE DATASHEETS)',2,'2016-10-19 13:25:16'),(452,'Support Advika edit in gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 13:26:11'),(453,'Support Advika edit in gallery Item (title=FEATURES AND INTEGRATIONS)',2,'2016-10-19 13:28:52'),(454,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-19 13:33:20'),(455,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-19 13:34:29'),(456,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-19 13:36:41'),(457,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-19 13:47:48'),(458,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-19 13:50:16'),(459,'Support Advika edit in gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-19 13:51:40'),(460,'Support Advika edit in gallery Item (title=CUSTOMER STORIES)',2,'2016-10-19 13:52:31'),(461,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-19 14:30:43'),(462,'Support Advika edit in gallery (title=Observe IT)',2,'2016-10-19 14:31:22'),(463,'Support Advika edit in gallery (title=Arim)',2,'2016-10-19 14:31:58'),(464,'Support Advika edit in gallery (title=Arim Technologies)',2,'2016-10-19 15:05:17'),(465,'Support Advika edit in post (title=Our Services)',2,'2016-10-20 08:31:33'),(466,'Support Advika edit in Menu (title=The Company)',2,'2016-10-20 08:59:19'),(467,'Support Advika edit in gallery (title=Resources)',2,'2016-10-20 08:59:34'),(468,'Support Advika edit in post (title=Blog)',2,'2016-10-20 09:00:30'),(469,'Support Advika edit in post (title=Blog)',2,'2016-10-20 17:41:47'),(470,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-10-20 19:32:50'),(471,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-20 20:09:25'),(472,'Support Advika add new album (title=Profesional Security Services)',2,'2016-10-20 20:10:08'),(473,'Support Advika add new album (title=Consulting Security Services)',2,'2016-10-20 20:12:52'),(474,'Support Advika edit in post (title=Technologies)',2,'2016-10-20 20:14:42'),(475,'Support Advika add new album (title=Technologies)',2,'2016-10-20 20:15:11'),(476,'Support Advika edit in post (title=In The News)',2,'2016-10-20 20:20:56'),(477,'Support Advika add new contactus (title=Contact Us)',2,'2016-10-20 20:23:37'),(478,'Support Advika add new album (title=The Team)',2,'2016-10-20 20:24:18'),(479,'Support Advika edit in post (title=Careers)',2,'2016-10-20 20:24:37'),(480,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 20:28:38'),(481,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-20 20:29:19'),(482,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 20:29:30'),(483,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-20 20:29:59'),(484,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-20 20:30:25'),(485,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-20 20:30:51'),(486,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-10-20 20:31:10'),(487,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-10-20 20:31:21'),(488,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-20 20:31:57'),(489,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-20 20:33:09'),(490,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 20:33:15'),(491,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-20 20:33:29'),(492,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 20:33:39'),(493,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-10-20 20:34:09'),(494,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-20 20:35:34'),(495,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-20 20:39:13'),(496,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-10-20 20:41:45'),(497,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-10-20 20:42:27'),(498,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-10-20 20:47:31'),(499,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-10-20 20:49:59'),(500,'Support Advika edit in album Item (title=Network Architecture Assessment)',2,'2016-10-20 20:53:54'),(501,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-10-20 20:54:27'),(502,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-20 20:56:16'),(503,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 20:58:00'),(504,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-20 20:59:19'),(505,'Support Advika edit in post (title=Technologies)',2,'2016-10-20 20:59:43'),(506,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-20 21:01:00'),(507,'Support Advika edit in album Item (title=Data Protection)',2,'2016-10-20 21:07:20'),(508,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-10-20 21:08:00'),(509,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-10-20 21:08:13'),(510,'Support Advika edit in album Item (title=Frictionless Security)',2,'2016-10-20 21:09:49'),(511,'Support Advika edit in album Item (title=Remediate)',2,'2016-10-20 21:11:41'),(512,'Support Advika edit in album Item (title=Forensics)',2,'2016-10-20 21:12:05'),(513,'Support Advika edit in album Item (title=Application Communication Control)',2,'2016-10-20 21:13:03'),(514,'Support Advika edit in album Item (title=Protect Anywhere)',2,'2016-10-20 21:13:40'),(515,'Support Advika edit in album Item (title=Request for an enSilo Demo)',2,'2016-10-20 21:14:26'),(516,'Support Advika edit in album Item (title=Employee Monitoring)',2,'2016-10-20 21:15:53'),(517,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-10-20 21:16:26'),(518,'Support Advika edit in album Item (title=Prevention - Policy Enforcement)',2,'2016-10-20 21:17:32'),(519,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-10-20 21:18:18'),(520,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-20 21:21:33'),(521,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-20 23:10:02'),(522,'Support Advika add new album (title=Profesional Security Services)',2,'2016-10-20 23:10:29'),(523,'Support Advika add new album (title=Consulting Security Services)',2,'2016-10-20 23:11:02'),(524,'Support Advika edit in post (title=Our Services)',2,'2016-10-20 23:18:38'),(525,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-20 23:22:51'),(526,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-20 23:25:54'),(527,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-10-20 23:27:20'),(528,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 00:27:02'),(529,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 00:29:04'),(530,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 00:31:35'),(531,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 00:32:31'),(532,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-21 00:41:28'),(533,'Support Advika edit in gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-21 00:42:21'),(534,'Support Advika edit in gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-21 00:43:18'),(535,'Support Advika edit in gallery Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-10-21 00:44:28'),(536,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-21 00:45:46'),(537,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-21 00:46:59'),(538,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-21 00:48:21'),(539,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-21 00:50:02'),(540,'Support Advika edit in gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-21 00:51:15'),(541,'Support Advika edit in gallery Item (title=Virtual patching for pos System)',2,'2016-10-21 00:52:07'),(542,'Support Advika edit in gallery Item (title=Intro to enSilo)',2,'2016-10-21 00:52:21'),(543,'Support Advika edit in gallery Item (title=We lost the battle against intusiosn. We are left to raise Our hand in defeat?)',2,'2016-10-21 00:52:36'),(544,'Support Advika edit in gallery Item (title=We lost the battle against intusiosn. We are left to raise Our hand in defeat?)',2,'2016-10-21 00:52:45'),(545,'Support Advika edit in gallery Item (title=Virtual patching for pos System)',2,'2016-10-21 00:53:04'),(546,'Support Advika edit in gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-21 00:54:49'),(547,'Support Advika edit in gallery Item (title=enSilo 30Sec. pitch)',2,'2016-10-21 00:55:14'),(548,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-21 00:56:14'),(549,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-21 00:57:05'),(550,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-21 00:57:31'),(551,'Support Advika edit in gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-21 00:57:49'),(552,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-21 00:58:31'),(553,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 00:58:38'),(554,'Support Advika edit in gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-21 01:00:56'),(555,'Support Advika edit in post (title=Technologies)',2,'2016-10-21 09:10:25'),(556,'Support Advika edit in post (title=Technologies)',2,'2016-10-21 09:10:36'),(557,'Support Advika edit in post (title=Channel Partners)',2,'2016-10-21 09:12:33'),(558,'Support Advika edit in post (title=Technology Partners)',2,'2016-10-21 09:13:22'),(559,'Support Advika edit in album Item (title=Enterprise Customers)',2,'2016-10-21 09:15:30'),(560,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-10-21 09:16:18'),(561,'Support Advika add new album (title=Insider Threats Management)',2,'2016-10-21 09:16:27'),(562,'Support Advika edit in album Item (title=Venture Capital)',2,'2016-10-21 09:18:01'),(563,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 09:29:15'),(564,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 09:29:45'),(565,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-21 09:30:02'),(566,'Support Advika edit in gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-21 09:30:17'),(567,'Support Advika edit in gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-21 09:30:35'),(568,'Support Advika edit in gallery Item (title=Healthcare-A cyberattack that\'s only getting bigger)',2,'2016-10-21 09:30:51'),(569,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-21 09:31:10'),(570,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-21 09:31:34'),(571,'Support Advika edit in gallery Item (title=enSilo 30Sec. pitch)',2,'2016-10-21 09:31:42'),(572,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-21 09:32:23'),(573,'Support Advika edit in gallery Item (title=Movers & Shakers interview with Roy Katmo, CEO of enSilo)',2,'2016-10-21 09:32:48'),(574,'Support Advika edit in gallery Item (title=Virtual patching for pos System)',2,'2016-10-21 09:33:07'),(575,'Support Advika edit in gallery Item (title=Intro to enSilo)',2,'2016-10-21 09:33:18'),(576,'Support Advika edit in gallery Item (title=We lost the battle against intusiosn. We are left to raise Our hand in defeat?)',2,'2016-10-21 09:33:25'),(577,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 09:35:03'),(578,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-21 09:47:26'),(579,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-10-21 09:49:16'),(580,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-10-21 09:56:56'),(581,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-10-21 10:36:57'),(582,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-21 10:38:34'),(583,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-10-21 10:38:54'),(584,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-10-21 10:39:25'),(585,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-21 10:40:22'),(586,'Support Advika add new album (title=Profesional Security Services)',2,'2016-10-21 10:40:38'),(587,'Support Advika add new album (title=Consulting Security Services)',2,'2016-10-21 10:40:50'),(588,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-10-21 10:40:53'),(589,'Support Advika add new album (title=Consulting Security Services)',2,'2016-10-21 10:40:57'),(590,'Support Advika add new album (title=Profesional Security Services)',2,'2016-10-21 10:41:02'),(591,'Support Advika add new album (title=Managed Security Services)',2,'2016-10-21 10:41:10'),(592,'Support Advika edit in gallery (title=ObserveIT)',2,'2016-10-21 10:49:21'),(593,'Support Advika edit in gallery (title=ARIM Technologies)',2,'2016-10-21 10:49:37'),(594,'Support Advika edit in gallery Item (title=Healthcare - A cyberattack that\'s only getting bigger)',2,'2016-10-21 10:50:42'),(595,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-21 10:50:48'),(596,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-21 10:51:09'),(597,'Support Advika edit in gallery (title=ObserveIT)',2,'2016-10-21 10:51:57'),(598,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 10:52:10'),(599,'Support Advika edit in gallery (title=enSilo)',2,'2016-10-21 10:52:11'),(600,'Support Advika edit in gallery (title=ARIM Technologies)',2,'2016-10-21 10:53:03'),(601,'Support Advika edit in gallery Item (title=Managed Security Services (MSS))',2,'2016-10-21 10:54:40'),(602,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 11:02:53'),(603,'Support Advika edit in gallery Item (title=Keeping Financial Institutions Operating)',2,'2016-10-21 11:03:28'),(604,'Support Advika edit in gallery Item (title=YTL Starhill Reduce Operational Costs Of Security)',2,'2016-10-21 11:03:45'),(605,'Support Advika edit in gallery Item (title=Preventing the impact of Ransomware)',2,'2016-10-21 11:03:58'),(606,'Support Advika edit in gallery Item (title=Keeping VDI Environments Running and Secure)',2,'2016-10-21 11:04:16'),(607,'Support Advika edit in gallery Item (title=Healthcare - A cyberattack that\'s only getting bigger)',2,'2016-10-21 11:04:33'),(608,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-21 11:04:50'),(609,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-21 11:05:05'),(610,'Support Advika edit in gallery Item (title=enSilo in a nutshell)',2,'2016-10-21 11:05:37'),(611,'Support Advika edit in gallery Item (title=Virtual patching for Pos System)',2,'2016-10-21 11:05:59'),(612,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 11:13:12'),(613,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-21 11:18:34'),(614,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-21 11:22:36'),(615,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-21 11:25:46'),(616,'Support Advika edit in post (title=Technologies)',2,'2016-10-21 11:49:33'),(617,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-21 12:57:22'),(618,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 12:58:57'),(619,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 12:59:40'),(620,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 13:00:08'),(621,'Support Advika edit in gallery Item (title=Leading Railway Secures Data with enSilo)',2,'2016-10-21 13:00:49'),(622,'Support Advika edit in post (title=About Us)',2,'2016-10-21 13:35:44'),(623,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-10-24 11:15:45'),(624,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-10-24 11:44:10'),(625,'Support Advika edit in album Item (title=Cyber Security Forensics And Incident Response)',2,'2016-10-25 13:24:27'),(626,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-10-25 13:37:29'),(627,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-10-25 13:41:52'),(628,'Support Advika edit in album Item (title=Network Architecture Assessment)',2,'2016-10-25 13:45:18'),(629,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-10-25 13:55:18'),(630,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-25 14:06:43'),(631,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-25 14:07:33'),(632,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-25 14:08:32'),(633,'Support Advika edit in post (title=Technology Partners)',2,'2016-10-25 14:17:59'),(634,'Support Advika edit in album Item (title=Technology Partners)',2,'2016-10-25 14:53:06'),(635,'Support Advika add new album (title=Join Design Partnership Program (DPP™))',2,'2016-10-25 14:57:10'),(636,'Support Advika edit in album Item (title=Enterprise Customers)',2,'2016-10-25 15:26:34'),(637,'Support Advika edit in post (title=About Us)',2,'2016-10-26 14:38:05'),(638,'Support Advika add new contactus (title=Contact Us)',2,'2016-10-26 14:39:27'),(639,'Support Advika edit in post (title=Careers)',2,'2016-10-26 14:43:00'),(640,'Support Advika edit in post (title=Innovations Showcase)',2,'2016-10-26 14:50:06'),(641,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-10-26 14:53:53'),(642,'Support Advika edit in album Item (title=Data Protection)',2,'2016-10-26 14:58:08'),(643,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-10-26 15:04:34'),(644,'Support Advika edit in album Item (title=Data Protection)',2,'2016-10-26 15:47:28'),(645,'Support Advika edit in album Item (title=Remediate)',2,'2016-10-27 10:18:19'),(646,'Support Advika edit in album Item (title=Forensics)',2,'2016-10-27 10:19:31'),(647,'Support Advika add new album (title=Real-time Data Protection - APT)',2,'2016-10-27 10:46:31'),(648,'Support Advika edit in album Item (title=Ransomware Prevention)',2,'2016-10-27 10:53:10'),(649,'Support Advika edit in album Item (title=Frictionless Security)',2,'2016-10-27 10:57:09'),(650,'Support Advika edit in post (title=In The News)',2,'2016-10-27 16:22:10'),(651,'Support Advika edit in post (title=Blog)',2,'2016-10-27 16:43:34'),(652,'Support Advika edit in post (title=In The News)',2,'2016-10-27 20:14:46'),(653,'Support Advika edit in post (title=In The News)',2,'2016-10-27 20:20:58'),(654,'Support Advika edit in album Item (title=Forensics)',2,'2016-10-28 09:27:33'),(655,'Support Advika edit in album Item (title=Application Communication Control)',2,'2016-10-28 09:36:07'),(656,'Support Advika edit in album Item (title=Protect Anywhere)',2,'2016-10-28 09:41:31'),(657,'Support Advika edit in album Item (title=Request for an enSilo Demo)',2,'2016-10-28 09:43:24'),(658,'Support Advika add new album (title=Insider Threats Management)',2,'2016-10-28 13:46:01'),(659,'Support Advika edit in album Item (title=Employee Monitoring)',2,'2016-10-28 14:05:07'),(660,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-10-28 14:13:30'),(661,'Support Advika edit in album Item (title=Prevention - Policy Enforcement)',2,'2016-10-28 14:19:27'),(662,'Support Advika edit in album Item (title=Investigation - Digital Forensics)',2,'2016-10-28 14:26:38'),(663,'Support Advika edit in album Item (title=Detection - User Behavior Analytics)',2,'2016-10-28 14:28:41'),(664,'Support Advika edit in album Item (title=Request for an OIT Demo)',2,'2016-10-28 14:30:23'),(665,'Support Advika edit in album Item (title=Managed WAF)',2,'2016-10-28 14:38:46'),(666,'Support Advika edit in album Item (title=Managed PAM)',2,'2016-10-28 14:39:31'),(667,'Support Advika edit in album Item (title=Outbound Clean Pipe)',2,'2016-10-28 14:40:14'),(668,'Support Advika edit in album Item (title=Managed NGFW)',2,'2016-10-28 14:40:45'),(669,'Support Advika edit in album Item (title=Managed UTM)',2,'2016-10-28 14:41:17'),(670,'Support Advika edit in album Item (title=Managed SOC)',2,'2016-10-28 14:41:58'),(671,'Support Advika edit in album Item (title=Information Security Maturity Assessment (ISMA))',2,'2016-10-28 14:42:47'),(672,'Support Advika edit in album Item (title=Network Architecture Assessment)',2,'2016-10-28 14:43:12'),(673,'Support Advika edit in album Item (title=Firewall Security Assessment)',2,'2016-10-28 14:43:42'),(674,'Support Advika edit in album Item (title=Penetration Testing / Ethical Hacking)',2,'2016-10-28 14:44:26'),(675,'Support Advika edit in album Item (title=Advanced Attack Simulation)',2,'2016-10-28 14:44:50'),(676,'Support Advika edit in album Item (title=Application Security Testing)',2,'2016-10-28 14:45:17'),(677,'Support Advika edit in album Item (title=Network & Host Security)',2,'2016-10-28 14:46:09'),(678,'Support Advika edit in gallery Item (title=Healthcare - A cyberattack that\'s only getting bigger)',2,'2016-10-28 18:36:35'),(679,'Support Advika edit in gallery Item (title=Vulnerable by Design)',2,'2016-10-28 18:38:09'),(680,'Support Advika edit in gallery Item (title=Security Tools : An attacker\'s Dream Come True)',2,'2016-10-28 18:39:21'),(681,'Support Advika edit in post (title=In The News)',2,'2016-10-31 12:36:15'),(682,'Support Advika add new post (title=Vaultup)',2,'2016-11-30 10:34:47'),(683,'Support Advika add new album Item (title=Liaz Mizrach)',2,'2016-11-30 10:38:38'),(684,'Support Advika edit in album Item (title=Liaz Mizrach)',2,'2016-11-30 10:42:45'),(685,'Support Advika add new album Item (title=Gatot Prihandono)',2,'2016-11-30 10:43:51'),(686,'Support Advika add new album Item (title=Sari Kurnia Dewi)',2,'2016-11-30 10:49:24'),(687,'Support Advika edit in post (title=Solutions)',2,'2016-11-30 11:02:31'),(688,'Support Advika add new post (title=Kahulabs)',2,'2016-11-30 11:33:30'),(689,'Support Advika edit in post (title=KahuLabs)',2,'2016-11-30 11:38:58'),(690,'Support Advika edit in post (title=Vaultup)',2,'2016-11-30 11:42:24'),(691,'Support Advika add new album (title=Managed Security Services)',2,'2016-11-30 13:05:01'),(692,'Support Advika add new album (title=Profesional Security Services)',2,'2016-11-30 13:07:28'),(693,'Support Advika add new album (title=Consulting Security Services)',2,'2016-11-30 13:07:51'),(694,'Support Advika edit in post (title=Kahu Labs)',2,'2016-12-01 09:58:21'),(695,'Support Advika edit in menu (title=Our Story)',2,'2016-12-23 09:09:18'),(696,'Support Advika add new post (title=Our History)',2,'2016-12-23 09:10:27'),(697,'Support Advika add new album (title=Our Values)',2,'2016-12-23 09:11:14'),(698,'Support Advika add new album Item (title=Excellent Service)',2,'2016-12-23 09:12:03'),(699,'Support Advika add new album Item (title=Latest Technology)',2,'2016-12-23 09:12:50'),(700,'Support Advika edit in menu (title=Beauty Blog)',2,'2016-12-23 09:58:13'),(701,'Support Advika edit in Menu (title=Beauty Lounge)',2,'2016-12-23 09:58:46'),(702,'Support Advika add new list (title=Beauty Blog)',2,'2016-12-23 09:59:27'),(703,'Support Advika add new Article (title=Aesthetic Treatment itu aman bagi Anda)',2,'2016-12-23 10:22:13'),(704,'Support Advika add new list (title=Beauty Blog)',2,'2016-12-23 10:23:43'),(705,'Support Advika add new list (title=Beauty Blog)',2,'2016-12-23 10:24:08'),(706,'Support Rifan edit in post (title=Aesthetic Solutions)',2,'2016-12-23 14:55:55'),(707,'Support Rifan edit in menu (title=Aesthetic Solutions)',2,'2016-12-23 14:56:48'),(708,'Support Rifan edit in post (title=Solutions)',2,'2016-12-23 14:57:08'),(709,'Support Rifan edit in menu (title=Aesthetic Solutions)',2,'2016-12-23 14:57:39'),(710,'Support Rifan edit in menu (title=Aesthetic Solutions)',2,'2016-12-23 14:58:33'),(711,'Support Rifan add new album (title=Beauty Treatment )',2,'2016-12-23 15:00:12'),(712,'Support Rifan add new album Item (title=Treatment A)',2,'2016-12-23 15:00:46'),(713,'Support Rifan edit in album Item (title=Treatment A)',2,'2016-12-23 15:05:41'),(714,'Support Rifan edit in post (title=History)',2,'2016-12-26 21:17:11'),(715,'Support Rifan add new list (title=Video)',2,'2016-12-26 21:48:34'),(716,'Support Rifan add new list (title=Video)',2,'2016-12-26 21:49:07'),(717,'Support Rifan edit in menu (title=What\'s New)',2,'2016-12-26 21:50:59'),(718,'Support Rifan add new list (title=News & Event)',2,'2016-12-26 21:52:52'),(719,'Support Rifan add new contactus (title=Contact Us)',2,'2016-12-27 15:19:15'),(720,'Support Rifan add new contactus (title=Contact Us)',2,'2016-12-27 15:20:18'),(721,'Support Rifan add new contactus (title=Contact Us)',2,'2016-12-27 15:33:52'),(722,'Support Rifan add new contactus (title=Contact Us)',2,'2016-12-27 15:35:18'),(723,'Support Rifan add new Article (title=Something Someday)',2,'2016-12-27 16:55:42'),(724,'Support Rifan add new list (title=News & Event)',2,'2016-12-27 17:00:14'),(725,'Support Rifan add new album (title=Testimonial)',2,'2016-12-31 20:57:22'),(726,'Support Rifan add new album Item (title=Nama)',2,'2016-12-31 21:00:51'),(727,'Support Rifan add new album Item (title=Nama 2)',2,'2016-12-31 21:01:39'),(728,'Support Rifan add new Article (title=Video 1)',2,'2016-12-31 21:14:33'),(729,'Support Rifan edit in Article (title=Video 1)',2,'2016-12-31 21:15:14'),(730,'Support Rifan add new list (title=Promo Of The Month)',2,'2016-12-31 21:21:10'),(731,'Support Rifan add new Article (title=Promo 1)',2,'2016-12-31 21:21:43'),(732,'Support Rifan add new list (title=Promo Of The Month)',2,'2016-12-31 21:25:15'),(733,'Support Rifan add new list (title=Promo Of The Month)',2,'2016-12-31 21:35:52'),(734,'Support Rifan add new list (title=sdf)',2,'2016-12-31 21:38:31'),(735,'Support Rifan edit in album Item (title=Treatment A)',2,'2017-01-05 23:24:56'),(736,'Support Rifan add new album Item (title=Treatment B)',2,'2017-01-05 23:26:19'),(737,'Support Rifan edit in menu (title=Faq)',2,'2017-01-05 23:40:48'),(738,'Support Rifan add new post (title=General Topic)',2,'2017-01-05 23:42:09'),(739,'Medikpro Admin edit in Menu (title=Our Story tes)',2,'2017-01-23 14:43:48'),(740,'Medikpro Admin edit in Menu (title=Our Story)',2,'2017-01-23 14:44:05'),(741,'Medikpro Admin add new Add category galery (title=tes)',2,'2017-01-23 14:44:54'),(742,'Medikpro Admin edit in gallery (title=tes en)',2,'2017-01-23 14:45:23'),(743,'Medikpro Admin add new gallery Item (title=tes)',2,'2017-01-23 14:48:16'),(744,'Medikpro Admin add new album Item (title=Tes Treatment sendiri)',2,'2017-01-23 15:32:45'),(745,'Medikpro Admin add new Article (title=Coba)',2,'2017-01-23 15:47:57'),(746,'Medikpro Admin add new contactus (title=Contact Us)',2,'2017-01-24 14:16:39'),(747,'Medikpro Admin edit in album Item (title=Treatment B)',2,'2017-01-24 21:23:59'),(748,'Medikpro Admin add new album (title=General Topic)',2,'2017-01-27 11:13:33'),(749,'Medikpro Admin add new album (title=General Topic)',2,'2017-01-27 11:16:46');
/*!40000 ALTER TABLE `log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `member`
--

DROP TABLE IF EXISTS `member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(50) NOT NULL,
  `full_name` varchar(50) NOT NULL,
  `phone_number` varchar(20) NOT NULL,
  `address` text DEFAULT NULL,
  `company_name` varchar(255) NOT NULL,
  `password` text NOT NULL,
  `password_hash` text NOT NULL,
  `status` int(1) NOT NULL,
  `type` varchar(20) NOT NULL,
  `last_login` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `member`
--

LOCK TABLES `member` WRITE;
/*!40000 ALTER TABLE `member` DISABLE KEYS */;
/*!40000 ALTER TABLE `member` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu`
--

DROP TABLE IF EXISTS `menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` varchar(255) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `parent` int(11) DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `type` varchar(256) DEFAULT NULL,
  `page_id` int(11) DEFAULT NULL,
  `active_link` int(1) DEFAULT 1,
  `quick_link` int(1) NOT NULL DEFAULT 0,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=114 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu`
--

LOCK TABLES `menu` WRITE;
/*!40000 ALTER TABLE `menu` DISABLE KEYS */;
INSERT INTO `menu` VALUES (109,'promo-of-the-month','Promo Of The Month','Promo Of The Month',105,2,'list',22,1,0,1),(44,'our-partners','Our Partners','Our Partners',7,11,'post',16,1,0,1),(15,'contact-us','Contact Us','Hubungi Kami',0,5,'contactus',1,1,0,1),(46,'services','Services','Services',45,1,'list',13,1,0,1),(33,NULL,'Industrial Petroleum','Industrial Petroleum',32,1,'post',15,1,0,1),(34,NULL,'Test List','Test List',32,2,'list',7,1,0,1),(113,'general-topic','General Topic','General Topic',111,2,'album',24,1,0,1),(106,'news-26-event','News & Event','News & Event',105,1,'list',20,1,0,1),(107,'testimonial','Testimonial','Testimonial',98,3,'album',23,1,0,1),(56,'press-release','Press Release','Press Release',67,1,'list',16,1,0,1),(111,'faq','Faq','Faq',98,2,'menu',0,1,0,1),(90,'technologies2','Technologies','Teknologi',59,7,'album',19,1,0,0),(78,'channel-partners','Channel Partners','Saluran Mitra',63,1,'post',31,1,0,0),(79,'technology-partners','Technology Partners','Rekan Teknologi',63,2,'post',32,1,0,1),(92,'resources','Resources','Sumber Daya',0,4,'gallery',5,1,1,0),(91,'join-design-partnership-program-28dppe284a2292','Join Design Partnership Program (DPP™)','Join Design Partnership Program (DPP™)',90,1,'album',20,1,0,1),(105,'what27s-new','What\'s New','What\'s New',0,4,'menu',0,1,0,1),(95,'our-story','Our Story','Our Story',0,1,'menu',0,1,0,1),(96,'history','History','History',95,1,'post',37,1,0,1),(104,'video','Video','Video',98,4,'list',19,1,0,1),(97,'our-values','Our Values','Our Values',95,2,'album',21,1,0,1),(98,'beauty-lounge','Beauty Lounge','Beauty Lounge',0,3,'menu',0,1,0,1),(99,'beauty-blog','Beauty Blog','Beauty Blog',98,1,'list',18,1,0,1),(102,'aesthetic-solutions','Aesthetic Solutions','Aesthetic Solutions',0,2,'menu',0,1,0,1),(103,'beauty-treatment-','Beauty Treatment ','Beauty Treatment ',102,1,'album',22,1,0,1);
/*!40000 ALTER TABLE `menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_album`
--

DROP TABLE IF EXISTS `page_album`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_album` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_album`
--

LOCK TABLES `page_album` WRITE;
/*!40000 ALTER TABLE `page_album` DISABLE KEYS */;
INSERT INTO `page_album` VALUES (8,0,'Managed Security Services','Managed Security Services','contents/album/8/8-managed-security-services-bg.jpg','<h3>Managed Security Services</h3>\n<p>Get the convenience of resilient data protection by having Managed Security Services. Control the configuration of critical security aspects including UTM, NGFW, PAM and WAF through centralized management.</p>','<h3>Managed Security Services</h3>\n<p>Dapatkan kenyamanan perlindungan data yang kokoh dengan menggunakan Layanan Pengelolaan Keamanan. Kendalikan konfigurasi aspek penting keamanan termasuk UTM, NGFW, PAM dan WAF melalui pengelolaan terpusat.</p>','Managed Security Services','Managed Security Services','','','','','','',2,'2016-11-30 13:05:01',NULL),(9,0,'Profesional Security Services','Profesional Security Services','contents/album/9/9-profesional-security-services-bg.jpg','<h3>Profesional Security Services</h3>\n<p>Assess your organisation&rsquo;s critical security functions through the help of automated scanning or validation from skilled personnel. Improve the resilience by having advanced attack simulation and penetration testing from the expert.</p>','<h3>Profesional Security Services</h3>\n<p>Lakukan penilaian terhadap fungsi kemananan krusial di perusahaan Anda dengan bantuan dari pemindaian otomatis atau validasi dari tenaga terampil.</p>','Profesional Security Services','Profesional Security Services (PSS)','','','','','','',2,'2016-11-30 13:07:28',NULL),(4,6,'Team','Team','contents/album/4/4-team-bg.png','<p>Emporia Digital Team consists of professional, creative, analytical &amp; talented people. Each individual team member contributes their own specialized talent, collectively making Emporia the great partner for your business. &nbsp;Our team brings significant eCommerce experience, combined with deep enterprise application development and integration know-how.</p>','<p>Emporia Digital Team consists of professional, creative, analytical &amp; talented people. Each individual team member contributes their own specialized talent, collectively making Emporia the great partner for your business. &nbsp;Our team brings significant eCommerce experience, combined with deep enterprise application development and integration know-how.</p>','Emporia Digital Team consists of professional, creative, analytical & talented people. Each individual team member contributes their own specialized talent, collectively making Emporia the great partner for your business.  Our team brings significant eCommerce experience, combined with deep enterprise application development and integration know-how.','Emporia Digital Team consists of professional, creative, analytical & talented people. Each individual team member contributes their own specialized talent, collectively making Emporia the great partner for your business.  Our team brings significant eCommerce experience, combined with deep enterprise application development and integration know-how.','','','','','','',2,'2016-02-15 18:06:20',NULL),(5,0,'Real-time Data Protection - APT','Proteksi Data Real-time (Real-time Data Protection – APT)','contents/album/5/5-real-time-data-protection-apt-bg.jpg','<h3>HE WHO RULES THE OS RULES THE APPLICATIONS</h3>\n<p>enSilo was built on the concept that if you take away the ability of bad actors to steal data then you remove the majority of your cyber security risk.</p>\n<p>To accomplish this, you must be able to silo that data away from those who want to take it. Data theft prevention has been one of the hardest things to accomplish in the cyber security industry for a great many reasons.</p>\n<p>These problems get very complex very quickly. It is very hard to know exactly where that data rests in a complex network. More and more complex security tools have been created to look at attack behavior and analysis.</p>\n<p>And worse yet they are false alert factories that crank out more and more time wasters for your security team. Which is to say these tools are neither easy to implement or configure. It takes time you don&rsquo;t really have.</p>\n<p>Instead of making things more complex, we make thing simpler by looking at the common denominator: the operating system.</p>\n<p>Anything that happens on an endpoint has to work through the OS.</p>\n<p>Sounds pretty simple, right? The OS runs everything so by controlling how applications behave, you control what data leaves your network.</p>\n<h3>GREAT IDEA. HOW DOES IT ACTUALLY WORK?</h3>\n<p>We&rsquo;re glad you asked.</p>\n<p>enSilo uses two components to prevent data theft and tampering: The Collector and the Core.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/4-STEPS.png\" alt=\"\" /></p>\n<h3>SNAPSHOTS &amp; ALBUMS:</h3>\n<p>The way it works is we install a Collector on the endpoint or servers. This is a one-time install. No user pop-ups. Nothing. No minimum criteria. It doesn&rsquo;t matter what you have to include Windows XP and macOS. Of course if you have Windows XP endpoints you already know how bad that is. We don&rsquo;t judge you. We just protect your data.</p>\n<p>Basically the Collector is like a camera that sits in the operating system. It starts taking snapshots on any process activity. If there&rsquo;s a new process it takes a snapshot. If a process talks to another process, it takes a snapshot. A process might initiate a thread and we&rsquo;ll get a snapshot.</p>\n<p>We make a family album of these snapshots of each process. We know everything about that process from the time it was born. We know everything about every process. We know the family of processes.</p>\n<p>When one of these processes requests to connect or modify a file, we know who they are by pulling the family album of that process. When this happens the Collector sends the particular request with its family album to the Core for evaluation.</p>\n<p>The Core is the brains of the system. The Core looks at the album in combination with the request and looks at the policies to make sure the request has a squeaky clean family album. If the process&rsquo; family album shows a violation, the policy will block that activity.</p>\n<p>When you have something sketchy in that family album, we know. And we block. We block the file modification or connection from establishing.</p>\n<h3>WE&rsquo;RE PROUD TO SAY WE HAVE TINY FEET</h3>\n<p>Our footprint is negligible. Sure. There&rsquo;s plenty of folks that say that but because we&rsquo;re focused on your business running we designed our product to have zero user impact. Because the Core does all the processing, the collector functions passively. And when we move the family album from the Collector, it\'s only a few kilobytes. The round trip from Collector to Core for album delivery, processing and return is measured in milliseconds.</p>\n<p>Click. Done.</p>\n<h3>WHY BLOCK JUST THE CONNECTION ESTABLISHMENT?</h3>\n<p>You need to keep the ongoing uptime. You need to get work done. Even in a compromised environment. How crazy is that? Unheard of, yes. But not crazy. We keep the bad stuff from happening, so your business runs. You can run any applications you need to. Because we&rsquo;re in the operating system, we don&rsquo;t care what applications you&rsquo;re running. We don&rsquo;t care what protocols are doing. We don&rsquo;t even care where you are: on premise or in the remote.</p>\n<p>Now you can forget tracking network monitoring and traffic activity. If the connection goes through then it is legit. If it was not legit, then you don&rsquo;t have to worry. Easy. We focus on the connection where it really matters.</p>\n<h3>AWKWARD FAMILY PHOTOS: WHO&rsquo;S UNCLE JOE?</h3>\n<p>Look at it this way. When we pull a family album, we can see the members of the family in photo after photo. If you mysteriously gain a new family member it&rsquo;s pretty obvious.</p>\n<p>You now have an Uncle Joe. Kind of creepy right?</p>\n<p>What happens if you gain extra children? Adoptions have records but someone just randomly appearing in photos is weird.</p>\n<p>Creepy Uncle Joe isn&rsquo;t a family member and he should certainly not be in all your photos. And he should certainly not be trying to connect to all the other families you know.</p>\n<p>Sure you can only carry the analogy so far but you get the point: when we have the history of the process from when it was born to connection request, we instantly know when something is squirrely.</p>\n<p><a class=\"btn btn-primary block m-t-xlg\">Request for an enSilo Demo</a></p>','<h3>DIA YANG MENGUASAI OS, DIA YANG MENGUASAI APLIKASI</h3>\n<p>enSilo telah dibuat dalam konsep dimana jika Anda mengambil alih kemampuan aktor jahat untuk mencuri data, berarti Anda meniadakan mayoritas resiko keamanan siber Anda.</p>\n<p>Untuk mencapai hal ini, Anda harus dapat untuk melakukan silo pada data tersebut dari mereka yang ingin mengambilnya. Pencegahan pencurian data telah menjadi salah satu hal tersulit untuk dicapai dalam industry keamanan siber untuk sangat banyak alasan.</p>\n<p>Permasalahan tersebut menjadi sangat kompleks secara cepat. Sangat sulit untuk mengetahui secara pasti dimana data tersebut beristidahat daam sebuah jaringan yang kompleks. Perangkat keamanan yang lebih kompleks telah diciptakan untuk memantau perilaku dan analisis serangan.</p>\n<p>Dan yang lebih buruk lagi, mereka adalah pabrik sinyal palsu yang menimbulkan lebih banyak waktu terbuang bagi tim keamanan Anda. Dalam hal ini dapat dikatakan bahwa perangkat ini tidak mudah untuk diimplementasikan dan dikonfigurasikan. Ini membutuhkan waktu yang sebenarnya tidak Anda miliki.</p>\n<p>Dengan tidak membuat hal ini jadi lebih rumit, kami membuatnya menjadi lebih simple dengan melihat pada yang paling umum: sistem operasi.</p>\n<p>Setiap hal yang terjadi pada endpoint harus bekerja dalam sistem operasi.</p>\n<p>Terdengar sangat simpel bukan? Sistem Operasi menggerakkan segalanya, jadi dengan mengendalikan bagaimana sebuah aplikasi berperilaku, Anda mengendalikan data apa yang meninggalkan jaringan Anda.</p>\n<h3>IDE HEBAT. BAGAIMANA SEBENARNYA INI BEKERJA?</h3>\n<p>Kami senang Anda bertanya.</p>\n<p>enSilo menggunakan dua komponen untuk mencegah pencurian dan perusakan data: Kolektor (Collector) dan Pusat (Core).</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/4-STEPS.png\" alt=\"\" /></p>\n<h3>SNAPSHOT &amp; ALBUM:</h3>\n<p>Cara bekerjanya adalah kami menginstall sebuah Collector pada endpoint tau server. Ini adalah install yang hanya sekali terjadi, tanpa pop up user dan tanpa kriteria minimum. Tidak peduli apa yang Anda miliki untuk Windows XP dan macOS. Tentu saja bila Anda memiliki endpoint Windows XP Anda sudah tahu seberapa buruk endpoint tersebut. Kami tidak menghakimi Anda. Kami hanya melindungi data Anda.</p>\n<p>Pada dasarnya sebuah Collector bekerja seperti kamera yang ditempatkan di sistem iperasi. Alat ini mulai mengambil snapshot pada tiap aktivitas proses. Apabila ada proses baru, alat ini akan mengambil snapshot-nya Sebuah proses mungkin akan memulai sebuah ancaman dan kami akan mendapat sebuah snapshot.</p>\n<p>Kami membuat sebuah album keluarga dari snapshot-snapshot setiap proses. Kami mengetahui setiap hal tentang proses dari saat mulai muncul. Kami mengetahi segalanya tentang setiap proses. Kami mengetahui keluarga dari proses tersebut.</p>\n<p>Ketika salah satu dari proses ini meminta untuk terhubung atau memodifikasi sebuah file, kamu mengetahui siapa mereka dengan menarik album keluarga dari proses tersebut. Saat ini terjadi Pengumpul (Collector) mengirim permintaan khusus dengan album keluarganya kepada Pusat (Core) untuk evaluasi.</p>\n<p>Ketika Anda memiliki sesuatu yang samar dalam album keluarga , kami mengetahui dan kami memblokir. Kami memblokir terjadinya modifikasi file atau koneksi.</p>\n<h3>KAMI BANGGA MENGATAKAN KAMI MEMILIKI KAKI KECIL</h3>\n<p>Jejak kami tidaklah penting. Tentu saja. Ada banyak orang yang mengatakannya tap karena kami terfokus pada berjalannya bisnis Anda, kami mendesain produk kami untuk tidak memiliki pengaruh sama sekali terhadap user. Karena Pusat (the Core) melakukan segala proses, sementara pengumpul (the Collector) berfungsi secara pasif. Dan ketika kami memindahkan album kelurga dari Core, datanya hanyalah sedikit kilobyte. Perjalanan bolak balik dari Collector menuju Core untuk pengiriman album, proses dan pengembalian diperkirakan terjadi dalam seperseribu detik.</p>\n<p>Klik. Selesai.</p>\n<h3>KENAPA HANYA MEMBLOKIR PEMBENTUKAN KONEKSI?</h3>\n<p>Anda harus menjaga keberlangsungan suatu fungsi. Anda harus menyelesaikan pekerjaan. Meskipun dalam lingkungan yang terkompromi. Segila apakah itu? Terdengar tidak lazim, tapi tidak gila. Kami mencegah hal buruk terjadi, agar bisnis Anda berjjalan. Anda dapat menjalankan aplikasi manapun yang Anda butuhkan. Karena kami berada di sistem operasi, kami tidak peduli aplikasi apa yang Anda jalankan. Kami tidak peduli protokol apa yang Anda lakukan. Kami bahkan tidak peduli dimana Anda berada, on-premise ataupun jauh.</p>\n<p>Sekarang Anda dapat melupakan pelacakan pengawasan jaringan dan aktivitas trafik. Bila koneksi dapat melaluinya, maka koneksi tersebut sah. Apabila tidak sah, Anda tidak perlu khawatir. Mudah. Kami focus pada koneksi dimana koneksi tersebut benar-benar berarti.</p>\n<h3>FOTO KELUARGA YANG ANEH: SIAPAKAH PAMAN JOE?</h3>\n<p>Lihat dengan cara ini. Kami menarik sebuah album keluarga, kami dapat melihat anggota keluarga dalam setiap foto. Apabila Anda secara misterius mendapatkan anggota keluarga baru maka itu menjadi sangat jelas.</p>\n<p>Sekarang Anda memiliki seorang Paman Joe. Cukup menyeramkan bukan?</p>\n<p>Apa yang terjadi bila Anda mendapatkan ekstra anak? Adopsi memiliki catatan tapi seseorang tiba-tiba secara acak muncul dalam foto itu sangatlah aneh.</p>\n<p>Paman Joe yang menyeramkan bukanlah anggota keluarga dan ia seharusnya tidak berada dalam seluruh foto Anda. Dan dia seharusnya dengan yakin tidak mencoba untuk terhubung dengan keluarga lain yang Anda tahu.</p>\n<p>Tentu Anda hanya dapat menerima analogi sejauh ini tapi Anda mendapatkan poin-nya: ketika kami memiliki sejarah proses semenjak proses itu dibentuk untuk meminta koneksi, kami secara instan mengetahui ketika suatu hal yang ganjil terjadi.</p>\n<p><a class=\"btn btn-primary block m-t-xlg\">Request for an enSilo Demo</a></p>',' Real-time Data Protection - APT','Proteksi Data Real-time (Real-time Data Protection – APT)','','','','','','',2,'2016-10-27 10:46:31',NULL),(7,0,'Insider Threats Management','Deteksi Insider Threat','contents/album/7/7-insider-threats-management-bg.jpg','<h3>Insider Threat Detection</h3>\n<p>ObserveIT is the world&rsquo;s leading enterprise insider threat detection software solution. When dealing with insider threats, detection is key. Our software solution enables you to reduce the risk of insider threat and ensure employees stay compliant with company policy.</p>\n<p><img style=\"float: right;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit-1.png\" alt=\"\" /></p>\n<ul class=\"list-style\">\n<li>Complete Visibility of All Employee Activity</li>\n<li>Stack-Ranked View of Your Riskiest Users</li>\n<li>Enforce Company Policies with Notifications</li>\n</ul>\n<p><a class=\"btn btn-primary\" href=\"#\">Instant Trial</a> <a class=\"btn btn-primary\" href=\"#\">Request Demo</a></p>\n<p>ObserveIT\'s award-winning insider threat management software is complete with monitoring, detection, prevention and investigation.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit_insider_threat_management_award_1.jpg\" alt=\"\" /></p>\n<ul class=\"oit-list\">\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/Employee_Monitoring_-_live_session.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Employee Monitoring</h4>\n<p>Know who&rsquo;s doing what with confidence.</p>\n<p>ObserveIT\'s employee monitoring provides visibility into all user activity within any user session, whether they are performed through remote access or console access, and on most operating systems spanning all version of windows, Linux and UNIX.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/0_-_Behavior_Analytics.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Detection - Continuous Risk Monitoring</h4>\n<p>See who&rsquo;s putting you at risk in minutes.</p>\n<p>ObserveIT\'s continuous risk monitoring constantly performs real-time analysis of exactly what the user does during the session, exposing suspicious user actions, unauthorized behavior and malicious activity.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/USB_-_hard.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Prevention - Policy Enforcement</h4>\n<p>Enforce company policy across enterprise.</p>\n<p>ObserveIT mitigates insider risks by adding corporate security policy enforcement capabilities to the security team&rsquo;s arsenal of effective countermeasures.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/7_-_Forensic_Recordings.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Investigation - Digital Forensics</h4>\n<p>Determine intent of high risk activity with digital forensics.</p>\n<p>ObserveIT initiates forensic recording for high-risk activity, which makes it easy to watch exactly what users are doing and reduce investigations to minutes instead of months.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit-architecture_v2_1.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">ObserveIT Deployment</h4>\n<p>ObserveIT can be deployed in under one hour.</p>\n<ul class=\"list-style\">\n<li>Highly scalable beyond 100,000 devices</li>\n<li>Only collects 100 MB per user, per week</li>\n<li>Less than 0.1% impact on network</li>\n<li>Less than 1% CPU, only at the point of capture</li>\n</ul>\n<p>*These sizing specs are based on a multiple site, metadata only deployment. Sizing values may vary based on needs.</p>\n</div>\n</div>\n</div>\n</li>\n</ul>','<h3>Deteksi Insider Threat</h3>\n<p>ObserveIT adalah perusahaan terkemuka di dunia yang membeikan solusi software deteksi ancaman yang berasal dari dalam/orang dalam. Ketika menghadapi ancaman dari dalam, deteksi adalah kuncinya. Software kami membuat Anda dapat mengurangi resiko ancaman dari dalam dan memastikan pegawai tetap mematuhi kebijakan perusahaan.</p>\n<p><img style=\"float: right;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit-1.png\" alt=\"\" /></p>\n<ul class=\"list-style\">\n<li>Visibilitas Lengkap Seluruh Aktivitas Pegawai</li>\n<li>Daftar Ranking User Paling Berbahaya</li>\n<li>Memperkuat Kebijakan Perusahaan dengan Notifikasi</li>\n</ul>\n<p><a class=\"btn btn-primary\" href=\"#\">Instant Trial</a> <a class=\"btn btn-primary\" href=\"#\">Request Demo</a></p>\n<p>Manajemen ancaman dari dalam milik ObserveIT yang telah memenangkan penghargaan dilengkapi dengan pengawasan, deteksi, pencegahan dan investigasi.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit_insider_threat_management_award_1.jpg\" alt=\"\" /></p>\n<ul class=\"oit-list\">\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/Employee_Monitoring_-_live_session.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Pengawasan Pegawai</h4>\n<p>Ketahui siapa yang melakukan apa dengan keyakinan</p>\n<p>Pengawasan pegawai milik ObserveIT\'s menyediakan visibilitas seluruh aktivitas user didalam sesi user apapum, baik saat mereka bekerja melalui akses jarak jauh maupun akses konsol. ObserveIT bekerja pada sebagian besar sistem operasi yang mencakup seluruh versi Windowsm Linux dan UNIX.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/0_-_Behavior_Analytics.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Detection - Continuous Risk Monitoring</h4>\n<p>See who&rsquo;s putting you at risk in minutes.</p>\n<p>ObserveIT\'s continuous risk monitoring constantly performs real-time analysis of exactly what the user does during the session, exposing suspicious user actions, unauthorized behavior and malicious activity.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/USB_-_hard.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Prevention - Policy Enforcement</h4>\n<p>Enforce company policy across enterprise.</p>\n<p>ObserveIT mitigates insider risks by adding corporate security policy enforcement capabilities to the security team&rsquo;s arsenal of effective countermeasures.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/7_-_Forensic_Recordings.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Investigation - Digital Forensics</h4>\n<p>Determine intent of high risk activity with digital forensics.</p>\n<p>ObserveIT initiates forensic recording for high-risk activity, which makes it easy to watch exactly what users are doing and reduce investigations to minutes instead of months.</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/observeit-architecture_v2_1.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">ObserveIT Deployment</h4>\n<p>ObserveIT can be deployed in under one hour.</p>\n<ul class=\"list-style\">\n<li>Highly scalable beyond 100,000 devices</li>\n<li>Only collects 100 MB per user, per week</li>\n<li>Less than 0.1% impact on network</li>\n<li>Less than 1% CPU, only at the point of capture</li>\n</ul>\n<p>*These sizing specs are based on a multiple site, metadata only deployment. Sizing values may vary based on needs.</p>\n</div>\n</div>\n</div>\n</li>\n</ul>','Insider Threats Management','Deteksi Insider Threat','','','','','','',2,'2016-10-28 13:46:01',NULL),(10,0,'Consulting Security Services','Consulting Security Services','contents/album/10/10-consulting-security-services-bg.jpg','<h3>Consulting Security Services</h3>\n<p>Review, audit, and validate your company protection against the cyber threat and other specific security function through Firewall Security Assessment, Network Architecture Assessment, and Information Security Assessment (ISMA)</p>','<h3>Consulting Security Services</h3>\n<p>Periksa ulang, audit dan validasi perlindungan perusahaan Anda terhadap ancaman siber serta fungsi keamanan spesifk lainnya melalui <em>Firewall Security Assessment, Network Architecture Assessment, dan Information Security Assessment (ISMA)</em>.</p>','Consulting Security Services','Consulting Security Services (CSS)','','','','','','',2,'2016-11-30 13:07:51',NULL),(23,0,'Testimonial','Testimonial','contents/album/23/23-testimonial-bg.jpg','','','','','','','','','','',2,'2016-12-31 20:57:22',NULL),(17,0,'Join Design Partnership Program (DPP™)','Join Design Partnership Program (DPP™)','contents/album/17/17-join-design-partnership-program-dpp-bg.jpg','<p>Need help testing marketing demand in Asia? DPP&trade; provides a platform to connect with Asian design partners, providing feedback from the top levels of enterprises to help refine your product.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Test market demand</li>\n<li>Protect your intellectual property</li>\n<li>Develop your product for the commercial market</li>\n<li>Network with startups and enterprise customers</li>\n<li>Access the Asian market</li>\n</ul>\n<div id=\"mauticform_wrapper_formstartups\" class=\"mauticform_wrapper\"><form id=\"mauticform_formstartups\" action=\"https://arimtech.mautic.net/form/submit?formId=22\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formstartups\">\n<div id=\"mauticform_formstartups_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formstartups_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formstartups_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_name\">Name</label> <input id=\"mauticform_input_formstartups_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formstartups_contact\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_contact\">Contact</label> <input id=\"mauticform_input_formstartups_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_company\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_company\">Company</label> <input id=\"mauticform_input_formstartups_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_designation\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_designation\">Designation</label> <input id=\"mauticform_input_formstartups_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formstartups_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_business_email\">Business Email</label> <input id=\"mauticform_input_formstartups_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_subject\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_subject\">Subject</label> <input id=\"mauticform_input_formstartups_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formstartups_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_message\">Message</label> <textarea id=\"mauticform_input_formstartups_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formstartups_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formstartups_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"22\" /> <input id=\"mauticform_formstartups_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formstartups_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formstartups\" /></div>\n</form></div>','<p>Membutuhkan bantuan untuk menguji permintaan pasar di Asia? DPP&trade; menyediakan sebuah platform untuk terhubung denfan partner desain Asia, memberikan feedback dari level teratas perusahaan untuk membantu menyempurnakan produk Anda</p>\n<h3><strong>Keuntungan&nbsp;: </strong></h3>\n<ul>\n<li>Menguji perintaan pasar</li>\n<li>Melindungi kekayaan intelektual Anda</li>\n<li>Mengembangkan produk Anda untuk asar komersil</li>\n<li>Terjaring bersama startup dan pelanggan perusahaan</li>\n<li>Mengakses pasar Asia</li>\n</ul>\n<div id=\"mauticform_wrapper_formstartups\" class=\"mauticform_wrapper\"><form id=\"mauticform_formstartups\" action=\"https://arimtech.mautic.net/form/submit?formId=22\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formstartups\">\n<div id=\"mauticform_formstartups_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formstartups_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formstartups_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_name\">Name</label> <input id=\"mauticform_input_formstartups_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formstartups_contact\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_contact\">Contact</label> <input id=\"mauticform_input_formstartups_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_company\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_company\">Company</label> <input id=\"mauticform_input_formstartups_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_designation\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_designation\">Designation</label> <input id=\"mauticform_input_formstartups_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formstartups_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_business_email\">Business Email</label> <input id=\"mauticform_input_formstartups_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_subject\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_subject\">Subject</label> <input id=\"mauticform_input_formstartups_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formstartups_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_message\">Message</label> <textarea id=\"mauticform_input_formstartups_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formstartups_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formstartups_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"22\" /> <input id=\"mauticform_formstartups_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formstartups_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formstartups\" /></div>\n</form></div>','Join Design Partnership Program (DPP™)','Join Design Partnership Program (DPP™)','','','','','','',2,'2016-10-25 14:57:10',NULL),(19,0,'Technologies','Teknologi','contents/album/19/19-technologies-bg.jpg','','','Technologies','Teknologi','','','','','','',2,'2016-10-20 20:15:11',NULL),(20,0,'Join Design Partnership Program (DPP™)','Join Design Partnership Program (DPP™)','contents/album/20/20-join-design-partnership-program-dpp-bg.jpg','','','Join Design Partnership Program (DPP™)','Join Design Partnership Program (DPP™)','','','','','','',2,'2016-10-18 13:42:14',NULL),(21,0,'Our Values','Our Values','contents/album/21/21-our-values-bg.jpg','','','','','','','','','','',2,'2016-12-23 09:11:14',NULL),(22,0,'Beauty Treatment ','Beauty Treatment ','contents/album/22/22-beauty-treatment-bg.jpg','','','','','','','','','','',2,'2016-12-23 15:00:12',NULL),(24,0,'General Topic','General Topic','contents/album/24/24-general-topic-bg.jpg','','','','','','','','','','',2,'2017-01-27 11:16:46',NULL);
/*!40000 ALTER TABLE `page_album` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_album_item`
--

DROP TABLE IF EXISTS `page_album_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_album_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_album` int(11) DEFAULT NULL,
  `order` int(10) NOT NULL DEFAULT 0,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `headline` varchar(500) DEFAULT NULL,
  `headline_bahasa` varchar(500) DEFAULT NULL,
  `short_description` text DEFAULT NULL,
  `short_description_bahasa` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `thumbnail_location` text DEFAULT NULL,
  `additional_title` varchar(255) NOT NULL,
  `additional_description` text NOT NULL,
  `meta_title` text NOT NULL,
  `meta_title_bahasa` text NOT NULL,
  `meta_keyword` text NOT NULL,
  `meta_keyword_bahasa` text NOT NULL,
  `meta_description` text NOT NULL,
  `meta_description_bahasa` text NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_album_item`
--

LOCK TABLES `page_album_item` WRITE;
/*!40000 ALTER TABLE `page_album_item` DISABLE KEYS */;
INSERT INTO `page_album_item` VALUES (20,5,0,'Data Protection','Proteksi Data','Data Protection','Proteksi Data','Data Protection','Proteksi Data','<p>Even when data theft is happening at a high speed, enSilo stops the malicious attack before it begins. Users&rsquo; security defense can be in depth fails, that&rsquo;s where enSilo works to make sure user&rsquo;s data stays where it belongs. The users can just keep working away without even noticing enSilo stopped malicious threats. Your security team gets a single alert detailing the action but the malicious behavior has already been blocked.</p>\n<h3>GRAND THEFT DATA</h3>\n<p>Data theft is happening at a record pace. There are plenty of folks in denial that it won&rsquo;t happen to them. Almost any security team will tell you it is a matter of time before someone makes it through your defenses.</p>\n<p>You&rsquo;ve hopefully had tools in place to detect them but those fail too because once you detect them it is a race against time to keep them isolated and not let them exfiltrate your data. With dwell time of infiltrators measured in days or months, there&rsquo;s a good chance they&rsquo;ve already taken what they want and just seeing what else you&rsquo;ll give them.</p>\n<h3>HOW WE STOP GRAND THEFT DATA</h3>\n<p>enSilo stops grand theft data before it begins. When your defense in depth fails, we&rsquo;re there to make sure your data stays where it belongs. There&rsquo;s no worries. After that it only matters if you want to figure out how they got in.</p>\n<p>We respond when someone tries to take something. You see, when an application wants to connect outside your network they have to go through the operating system on that pc or server. Want to change a file remotely? Go through the OS.</p>\n<p>The is the common denominator throughout every single case. You can&rsquo;t hide from enSilo because we&rsquo;re already there. They won&rsquo;t see us and even if they did it wouldn&rsquo;t matter because trying to effect the operating system remotely is a big no-no for enSilo. Heck, we even protect Windows XP and with no impact on the device.</p>\n<p>Regardless if adversaries are trying to take a 17k file or 100GB, enSilo keeps grand theft data from becoming a reality.</p>\n<h3>TAKE AWAY YOUR GREATEST RISK</h3>\n<p>When you take away the ability of adversaries to take or tamper with your data you not only gain the warm fuzzy of knowing your operational risk and threat surface is down to the radar reflection of an African swallow in flight, but you also get the value back in cold hard cash.</p>\n<p>Okay so maybe not cash specifically but your operating expenses will now be going down instead of up.</p>\n<p>Sure, the threat level is going to keep everyone busy but with enSilo there&rsquo;s a lot you gain in keeping not only costs in line but everyone&rsquo;s morale pointed in the right direction.</p>\n<div class=\"hightlight\">\n<p><strong>Zero Day Malware: Not Tested On Animals. You&rsquo;re the First.</strong></p>\n<p>Zero days. They&rsquo;re the bane of cyber security. Unfortunately, they&rsquo;re going to continue no matter how much we&rsquo;d like them to stop.</p>\n<p>The problem with zero days is that someone has to be first to find them (hence the name). So if you&rsquo;re the first then it will probably walk right through your defenses until behavioral or signature-based applications or highly-trained cyber security professionals catch them. Even if you torture your staff with sandboxing solutions it might just walk right on through.</p>\n<p>Once caught then it is up to the various folks like operating systems manufacturers or plug-in writers to fix it and send out a patch. Not naming names here but you probably know them well. Then you have to struggle to get all your endpoints patched. That struggle is real.</p>\n<p>At the very least, signature-based detection platforms have to be updated and sent out with dire warnings. Behavioral detection platforms might catch them. Might not. &ldquo;It depends,&rdquo; is the answer you&rsquo;ll get when you ask about them being found on your network. What you do get is hundreds of &ldquo;maybe&rdquo; alerts. Go chase those down for fun.</p>\n<p>In the meantime, bad actors can have field day. And they&rsquo;re pretty good at that. They don&rsquo;t have change management boards or working groups. They just use it as soon as they figure it out.</p>\n<p>Hence, you might not be the first exactly but it might not matter. Unless you have enSilo.</p>\n<p>We&rsquo;re not going to say that we&rsquo;ll stop zero days. We don&rsquo;t. We don&rsquo;t because they don&rsquo;t matter to enSilo. We stop data exfiltration. We already assume you&rsquo;re compromised and work backwards from there. If you stop the bad guys from taking your data you&rsquo;ve already won. The rest of that testing is not exactly moot but it sure takes the stress out of the whole process.</p>\n</div>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>\"Vulnerable By Design\" Research Report : Learn how attackers appear legitimate in face of security tools by exploiting design vulnerabilities.</h4>\n<a class=\"btn btn-primary\">Download<br /> the Report</a></div>\n</div>\n</div>','<p><strong>Proteksi Data</strong></p>\n<p>Meskipun saat pencurian data sedang terjadi dalam kecepatan tinggi, enSilo menghentikan serangan berbahaya bahkan sebelum serangan tersebut sempat dimulai. Pertahanan keamanan user dapat mengalami kegagalan dalam kedalaman, itulah dimana enSilo bekerja untuk memastikan bahwa data user tetap berada pada tempat yang seharusnya. User dapat hanya terus bekerja tanpa menyadari bahwa enSilo telah menghentikan ancaman berbahaya. Tim keamanan Anda mendapat sebuah pemberitahuan tentang detail aksi, tapi perilaku berbahaya telah berhasil diberhentikan.</p>\n<h3>PENCURIAN DATA BESAR-BESARAN (GRAND THEFT DATA)</h3>\n<p>Pencurian data terjadi dalam kecepatan tinggi. Ada banyak orang yang percaya bahwa hal ini tidak akan terjadi pada mereka. Hampir seluruh tim keamanan akan memberi tahu Anda bahwa hanya masalah waktu sebelum seseorang berhasil menerobos pertahanan Anda.</p>\n<p>Anda diharapkan memiliki alat untuk mendeteksi mereka tapi hal tersebut juga gagal karena begitu Anda mendeteksi mereka, yang terjadi adalah perlombaan dengan waktu untuk tetap membuat mereka terisolasi dan tidak membiarkan mereka mencuri data Anda. Dengan waktu tinggal penyusup diperkirakan berhari-hari atau berbulan-bulam, ada kemungkinan besar mereka telah mengambil apa yang mereka inginkan dan hanya melihat-lihat apa lagi hal lain yang bisa didapat dari Anda.</p>\n<h3>BAGAIMANA KAMI MENGHENTIKAN GRAND THEFT DATA</h3>\n<p>enSilo menghentikan pencurian data besar-besaran sebelum hal itu terjadi. Saat pertahanan Anda gagal, kami ada disana untuk memastikan bahwa data Anda tetap berada pada tempatnya. Tidak ada kecemasan. Setelah itu, yang penting jika Anda ingin mecari tahu bagaimana mereka bisa masuk kedalam jaringan Anda.</p>\n<p>Kami merespon ketika seseorang mencoba untuk mengambil sesuatu. Anda melihat, saat sebuah aplikasi ingin untuk terhubung keluar dari jaringan Anda, mereka harus melewati sistem operasi dalam PC atau server tersebut. Ingin mengganti file dari jarak jauh? Lakukan melalui sistem operasi.</p>\n<p>Sistem operasi adalah hal fraksi paling utama dalam setiap kasus. Anda tidak dapat bersembunyi dari enSilo karena kami telah berada disana. Mereka tidak dapat melihat kita, dan meskipun mereka bisa, itu bukanlah masalah karena berusaha mempengaruhi sistem operasi dari jarak jauh adalah hal yang tidak ingin dilakukan enSilo. Bahkan kami dapat melindungi Windows XP dan tidak menimbulkan dampak apapun pada perangkat.</p>\n<p>Meskipun bila saingan ingin mencoba mengambil file berukuran 17k ataupun 100GB, enSilo tetap mencegah pencurian data besar-besaran terjadi.</p>\n<h3>SINGKIRKAN RESIKO TERBESAR ANDA</h3>\n<p>Ketika Anda menyingkirkan kemampuan kompetitor Anda untuk mengambil atau merusak data Anda, Anda tidak hanya mendapat kenyamanan saat mengetahui resiko operasional Anda dan permukaan ancaman Anda telah terdeteksi, tapi Anda juga mendapat hasilnya dalam bentuk kas keras.</p>\n<p>Baiklah, mungkin bukan kas secara spesifik, tapi pengeluaran operasi Anda akan menurun dan bukan naik.</p>\n<p>Tentu saja level ancaman akan terus membuat semua orang sibuk, tapi dengan enSilo, ada banyak hal yang Anda dapat, bukan hanya pengeluaran yang semakin sedikit tapi juga optimisme tiap orang ini tertuju pada arah yang benar.</p>\n<p>&nbsp;</p>\n<p><strong>Malware Zero Day: Tidak Diujicobakan Pada Binatang. Anda-lah yang Pertama.</strong></p>\n<p>Zero days. Mereka adalah kutukan dalam keamanan siber. Sayangnya mereka akan terus berlangsung tanpa peduli seberapa banyak kita mencoba untuk menghentikan mereka.</p>\n<p>Permasalahan dengan zero days adalah bahwa seseorang harus jadi yang pertama untuk menemukan mereka. Jadi bila Anda adalah yang pertama, maka malware ini mungkin akan berjalan menembus pertahanan Anda hingga aplikasi berbasis perilaku atau signature atau profesional keamanan siber yang sangat ahli menangkap mereka. Bahkan jika Anda menyiksa staf Anda dengan solusi sandboxing, malware ini mungkin saja tetap dapat berjalan menembusnya.</p>\n<p>Setelah ditangkap, maka kemudian hal ini tergantung pada beragam pihak seperti manufaktur sistem operasi atau pembuat plug-in untuk memperbaikinya dan mengirim sebuah patch. Kami tidak berusaha menamai mereka, tapi pasti Anda mengenal mereka dengan baik. Kemudian Anda harus berusaha untuk menambal seluruh endpoint Anda. Usaha itu tentu benar-benar berat.</p>\n<p>Pada akhirnya, platform deteksi berbasis signature harus di-update dan dikirim dengan peringatan penting. Deteksi perilaku mungkin dapat menangkap mereka, tapi juga mungkin tidak. &ldquo;Tergantung&rdquo; adalah jawaban yang Anda dapat ketika Anda bertanya tentang keberadaan malware ini dalam jaringan ANda. Apa yang Anda dapat adalah ratusan pemberitahuan &ldquo;mungkin&rdquo;.</p>\n<p>Sementara itu, aktor jahat dapat bersenang-senang diluar sana. Mereka langsung menggunakannya setelah mereka menemukannya.</p>\n<p>Maka dari itu, Anda mungkin bukan yang pertama tapi itu bukan ha penting. Kecuali Anda memiliki enSilo.</p>\n<p>Kami tidak akan mengatakan bahwa kami akan menghentikan zero days. Kami tidak melakukannya. Kami tidak melakukannya karena malware ini bukanlah masalah bagi enSilo. Kami menghentikan pencurian data. Kami telah mengasumsikan Anda telah terkena masalah dan kami bekerja secara mundur mulai dari sana. Jika Anda menghentikan aktor jahat mencuri data Anda, Anda telah menang. Sisa dari uji coba tersebut tidaklah dapat diperdebatkan tapi yang pasti dapat menghilangkan stress dari keseluruhan proses</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>\"Kerentanan oleh Desain\" Laporan Riset : Pelajari bagaimana penyerang tampak sah di depan peralatan keamanan dengan cara mengeksploitasi kerentanan desain.</h4>\n<a class=\"btn btn-primary\">Download<br /> the Report</a></div>\n</div>\n</div>','contents/album/5/20-data-protection.jpg','contents/album/5/thumb/20-data-protection-thumb.jpg','','','','','','','','',2,'2016-10-26 15:47:28','2016-10-26 15:47:28',1),(21,5,0,'Ransomware Prevention','Pencegahan Ransomware','Ransomware Prevention','Pencegahan Ransomware','Ransomware Prevention','Pencegahan Ransomware','<p>enSilo does more than many popular enterprise level antivirus systems that can&rsquo;t successfully lock down a ransomware attack, an increasingly popular tactic used to steal data and disrupt a system&rsquo;s operations, before it&rsquo;s already done its damage. enSilo protects data deep in the operating system level so it doesn\'t let file tampering start. When the malicious modify file request comes through our system, enSilo\'s policies don&rsquo;t let it happen. The system immediately captures the malicious communication and locks it down.</p>\n<h3>Ransomware is a Trend You Can Prevent</h3>\n<p>Ransomware is an increasingly popular tactic used to steal data and disrupt a system&rsquo;s operations.</p>\n<p>Essentially, ransomware is malware used by attackers to infect a device, hijack files on that device and lock them, via encryption.</p>\n<p>These maliciously encrypted files can no longer be accessed by users, and are held hostage by the attacker until a ransom is paid.</p>\n<p>Ransomware is a trend not a fad anymore but you can prevent it from happening.</p>\n<h3>RANSOMWARE HAS COME OF AGE. AND THAT&rsquo;S A REALLY BAD THING.</h3>\n<p>Some security experts are calling 2016 &ldquo;The year of ransomware&rdquo; &ndash; and they&rsquo;re probably not far from wrong. Ransomware is an increasingly popular software based malware attack that takes a computer, or its data hostage &ndash; and then attempts to extort the system&rsquo;s owner into paying for its release.</p>\n<p>Increasingly effective and simple to deploy, there are more than 250,000 known unique kinds of ransomware in the wild, and you can count on there being more soon. The ease with which these attacks can be developed and distributed and the incredibly lucrative return rates on successful attacks almost guarantees that if you haven&rsquo;t been targeted by ransomware &ndash; you will be.</p>\n<blockquote>\n<p>Never before in the history of human kind have people across the world been subjected to extortion on a massive scale as they are today.</p>\nInternet Security Threat Report Internet Report, Volume 21, April 2016</blockquote>\n<div id=\"accordion\" class=\"panel-group panel-accordion\">\n<div class=\"panel panel-grey\">\n<div id=\"acc1\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col1\" data-toggle=\"collapse\" data-parent=\"#accordion\"> What does it do? </a></h4>\n</div>\n<div id=\"col1\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>In its simplest form, ransomware attacks can lock a user out of their personal computer by either via encryption or rewriting its Master Boot Record. But the scary stuff, the most advanced attacks, can crawl across wide area networks and traverse file shares looking for data. What it finds, it encrypts.</p>\n<p>Confused users have perfectly functioning computer systems, but no data. Or at least no data they can read. Except for the attacker&rsquo;s calling card which is usually left behind on the affected disks. This file is often a friendly message from the attacker explaining exactly how the user can regain access to their files &ndash; and how much it&rsquo;s going to cost them.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"acc2\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col2\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Who Gets Attacked? </a></h4>\n</div>\n<div id=\"col2\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>Pretty much everyone is a target. Your neighbors, your family, the business you work for, even your hospital. Anyone can &ldquo;get&rdquo; ransomware and that includes highly resilient and capably defended enterprises.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"acc3\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col3\" data-toggle=\"collapse\" data-parent=\"#accordion\"> This works? </a></h4>\n</div>\n<div id=\"col3\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>It does &ndash; and people are paying up. Losses to ransomware were up to were up to <a href=\"http://cyberthreatalliance.org/cryptowall-report.pdf\" target=\"_blank\">$325 million</a> for just one version of Ransomware. What it doesn&rsquo;t take into consideration though, is the time and business productivity lost to these attacks or the possible data theft that could have occurred in parallel with the ransomware attack.</p>\n</div>\n</div>\n</div>\n</div>\n<h3>Prevention is the Key</h3>\n<p>We stop the malicious encryption before it starts. But we work at the operating system level so we don&rsquo;t let file tampering start. There are only a few ways to encrypt files and guess what&hellip; they all require the operating system. Ding.</p>\n<p>So when the malicious modify file request comes through our system, our policies don&rsquo;t let it. Pretty simple. Pretty powerful.</p>\n<p>Researchers have found that many popular enterprise level antivirus systems can&rsquo;t successfully lock down a ransomware attack before it&rsquo;s already done its damage.</p>\n<p>Others have found that ransomware payloads are coming in packages that look like real applications and include developer signed certificates. Worse, attackers don&rsquo;t care what operating system you run.</p>\n<p>Ransomware comes in through the endpoint. Which is running an operating system of usually Windows or macOS. We operate in that operating system in real time. enSilo watches the operating system in a way that does not affect the user experience to look for outbound communications, file tampering and encryption.</p>\n<div class=\"hightlight\">\n<p>A successful ransomware attack points to a possible security vulnerability that needs to be effectively remediated. Additionally, when dealing with hackers, there are no guarantees the data will actually be released in fact, it will likely lead to another attack that is nastier and more expensive than the first.</p>\n</div>\n<h3>Your Defense needs enSilo</h3>\n<p>The number one factor with ransomware is that you&rsquo;re vulnerable. Somewhere. Infiltration is inevitable. The sad truth is that your defense in depth and layered security will never get 100% of the threats 100% of the time. Your organization will eventually be compromised and the rest of your security tools come into play. Maybe. You hope.</p>\n<p>Ransomware is an attack on your data. enSilo protects data where it lives &ndash; deep in the operating system.</p>\n<p>When ransomware attacks it may make system calls in order to start the file encryption process. All of these communications are with the operating system. enSilo captures this communication and locks it down &ndash; stopping malicious file tampering before it can get started.</p>\n<p>We ensure that when that happens the consequences of the infiltration are prevented. Your data is safe with us.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa1.png\" alt=\"\" /></p>','<p>enSilo melakukan lebih dari banyak sistem antivirus leverl perusahaan popular yang tidak bisa dengan sukses menghentikan serangan ransomware, sebuah taktik yang semakin popular digunakan untuk mencuri data dan mengganggu operasi sistem, sebelum ransomware ini berhasil melakukan kerusakan. enSilo melindungi data secara mendalam di evel sistem operasi sehingga dia tidak membiarkan kerusakan file terjadi. Ketika serangan berbahaya ini memodifikasi permintaan file melalui sistem kita, kebijakan enSilo tidak akan membiarkannya terjadi. Sistem secara seketika menangkap komunikasi berbahaya dan memenjarakannya. &nbsp;</p>\n<h3><strong>Ransomware adalah Tren yang Bisa Anda Cegah</strong></h3>\n<p>Ransomware adalah taktik yang semakin popular digunakan untuk mencuri data dan mengganggu operasi sistem.</p>\n<p>Secara esensial, ransomware adalah malware yang digunakan oleh penyerang untuk menginfeksi perangkat, membajak file dalam perangkat tersebut kemudian menguncinya melalui enkripsi. \\</p>\n<p>File enkriosi yang berbahaya ini tidak lagi dapat diakses oleh user dan dijadikan tawanan oleh penyerang sampai tebusannya dibayarkan.</p>\n<p>Ransomware adalah tren yang bukan lagi tren tapi Anda bisa mencegahnya untuk terjadi.</p>\n<h3><strong>RANSOMWARE Telah Berkembang. Dan Itu Adalah Hal yang Sangat Buruk.</strong></h3>\n<p>Beberapa ahli keamanan mengatakan bahwa 2016 adalah &ldquo;Tahunnya Ransomware&rdquo; &ndash; dan mereka kemugkinan tidaklah salah. Ransomware adalah serangan malware berbasis software yang semakin popular digunakan untuk menyerang dan menjadikan computer atau data di dalamnya sebagai tawanan &ndash; dan kemudian mencoba untuk memaksa pemilik sistem untuk membayar agar data itu terbebaskan.</p>\n<p>Semakin efektif dan simple untuk digunakan, ada lebih dari 250.000 jenis unik ransomware diluar sana, dan Anda bisa berada disana dalam waktu dekat. Kemudahan serangan ini untuk dikembangkan dan didistribusikan dan hasilnya yang menguntungkan bila serangan berhasil hampir menjamin kemungkinan bila Anda belum ditargetkan oleh ransomware hari ini, Anda akan ditargetkan di waktu selanjutnya.</p>\n<blockquote>\n<p>Belum pernah sebelumnya dalam sejarah manusia orang-orang dalam skala besar dipaksa untuk membayar tebusan semerti yang terjadi saat ini.</p>\n<p>Internet Security Threat Report Internet Report, Volume 21, April 2016</p>\n</blockquote>\n<div id=\"accordion\" class=\"panel-group panel-accordion\">\n<div class=\"panel panel-grey\">\n<div id=\"acc1\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col1\" data-toggle=\"collapse\" data-parent=\"#accordion\">Apa yang dilakukannya?</a></h4>\n</div>\n<div id=\"col1\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>Dalam bentuknya yang paling simple, serangan ransomware dapat membuat user tidak dapat mengakses komputer mereka sendriri dengan memanfaatkan enkripsi atau menulis ulang Master Boot Record. Namun hal yang menakutkan, serangan paling canggih, dapat merangkak melalui area jaringan yang luas dan melintasi pembagian files untuk mencari data. Apa yang ditemukannya akan dienkripsi.</p>\n<p>User yang bingung telah memfungsikan sistem komputer tapi bukan data. Atau dalam sedikitnya tidak ada data yang bisa mereka baca. Kecuali untuk kartu panggilan milik penyerang biasanya ditinggalkan di disk yang terpengaruh. File ini seringkali berbentuk pesan ramah dari penyerang yang menjelaskan bagaimana user dapat mendapatkan kembali akses file mereka &ndash; dan seberapa mahal mereka harus membayarnya.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"acc2\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col2\" data-toggle=\"collapse\" data-parent=\"#accordion\">Siapa yang diserang?</a></h4>\n</div>\n<div id=\"col2\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>Semua orang adalah targetnya. Tetangga Anda, keluarga Anda, bisnis tempat Anda bekerja, bahkan rumah sakit Anda. Semuanya bisa &ldquo;terkena&rdquo; ransomware dan itu termasuk perusahaan yang memilliki ketahanan kokoh.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"acc3\" class=\"panel-heading panel-grey\">\n<h4 class=\"panel-title\"><a href=\"#col3\" data-toggle=\"collapse\" data-parent=\"#accordion\">Ini bekerja?</a></h4>\n</div>\n<div id=\"col3\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p>Ya, ini bekerja &ndash; dan orang-orang tengah membayarnya. Kerugian akibat ransomware mencapai hingga $325 juta hanya untuk satu versi Ransomware. Apa yang tidak termasuk adalah waktu dan produktivitas bisnis yang terbuang untuk serangan ini atau kemungkinan pencurian data yang mungkin terjadi secara paralel dengan serangan ransomware.</p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n</div>\n<h3>Pencegahan adalah Kunci</h3>\n<p>Kami menghentikan enkripsi berbahaya sebelum ia memulainya. Tapi kami bekerja pada level sistem operasi sehingga kami tidak membiarkan kerusakan file terjadi. Hanya ada sedikit cara untuk mengenkripsi file dan tahukah Anda, semua ransomware membutuhkan sistem operasi.</p>\n<p>Jadi ketika permintaan file modifikasi berbahaya datang melalui sistem kami, kebijakan kami tidak membiarkannya. Sangat simpel. Sangat kuat.</p>\n<p>Riset telah menemukan bahwa banyak sistem antivirus level perusahaan popluler tidak dapat secara sukses memenjarakan ransomware sebelum ia berhasil mengakibatkan kerusakan.</p>\n<p>Orang lain telah menemukan bahwa muatan ransomware datang dalam paket yang terlihat seerti aplikasi sebenarnya dan termasuk dengan sertifikat yang ditandatangani oleh developer. Lebih buruk lagi, penyerang tidak peduli sistem operasi apa yang Anda jalankan.</p>\n<p>Ransomware datang melalui endpoint yang biasa menjalankan sistem operasi, yang biasanya adalah Windows atau macOS. Kami beroperasi dalam sistem operasi tersebut secara real time. enSilo mengawasi sistem operasi dengan cara yang tidak mempengaruhi user experience untuk mencari komunikasi outbonund, kerusakan file dan enkripsi.</p>\n<p>Serangan ransomware yang sukses mengarah pada kemungkinan kerentanan keamanan yang butuh untuk diperbaiki secara efektif. Sebagai tambahan, saat berkutat dengan hackers, tidak ada garansi bahwa data akan benar-benar dibebaskan, kemungkinan hal ini akan mengarah pada serangan selanjutnya yang lebih merepotkan dan lebih mahal dari yang pertama</p>\n<h3>Pertahanan Anda membutuhkan enSilo</h3>\n<p>Faktor utama ransomware adalah bahwa Anda memiliki kerentanan di suatu tti. Infiltrasi menjadi tidak terhindarkan. Kenyataan paling menyedihkan adalah bahwa pertahanan Anda si kedalaman dan lapisan keamanan tidak akan pernah mendapat 100% ancaman dalam 100% waktu. Perusahaan Anda akan pada akhirnya sepakat dan peralatan keamanan Anda akan mulai bekerja. Mungkin.</p>\n<p>Ransomware adalah serangan pada data Anda. enSilo melidungi data dimana data itu berada &ndash; begitu dalam di sistem operasi.</p>\n<p>Ketika ransomware menyerang, ia mungkin membuat panggilan sistem untuk memulai proses enkripsi file. Seluruh komunikasi ini ada bersama sistem operasi. enSilo menangkap komunikasi ini dan memenjarajannya, menghentikan kerusakan file yang berbahaya sebelum hal tersebut terjadi.</p>\n<p>Kami memastikan bahwa ketika itu tersjadi, konsekuensi dari infiltrasi telah dicegah. Data Anda aman dengan kami.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa1.png\" alt=\"\" /></p>','contents/album/5/21-ransomware-prevention.jpg','contents/album/5/thumb/21-ransomware-prevention-thumb.jpg','','','','','','','','',2,'2016-10-27 10:53:10','2016-10-27 10:53:10',1),(23,8,1,'Managed WAF','Pengelolaan WAF','Managed Web Application Firewall (WAF)','Pengelolaan Web Application Firewall ','Fine-tune your Web Application Firewall configurations by controlling input and output data, therefore virtual patch your web app from OWASP Top 10','Mengoptimalkan konfigurasi Web Application Firewall Anda dengan mengendalikan data masukan dan keluaran ke arah aplikasi web, sehingga memberikan perlindungan berupa virtual patching terhadap aplikasi web Anda dari OWASP Top 10','<ul class=\"list-style\">\n<li>Helps you fine-tune your Web Application Firewall (WAF) configurations to protect your web application by eliminating the risks of OWASP Top Ten weaknesses</li>\n<li>What is WAF? - WAF combines blacklist and whitelist mechanisms to control the input and output data, and the access to and from a web application</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-waf.png\" alt=\"\" /></p>\n<h3>Virtual patch your web app from OWASP Top 10 (2013)</h3>\n<ul class=\"list-style\">\n<li>Injection</li>\n<li>Broken Authentication and Session Management</li>\n<li>Cross-Site Scripting (XSS)</li>\n<li>Insecure Direct Object References</li>\n<li>Security Misconfiguration</li>\n<li>Sensitive Data Exposure</li>\n<li>Missing Function Level Access Control</li>\n<li>Cross Site Request Forgery (CSRF)</li>\n<li>Using Known Vulnerable Components</li>\n<li>Un-validated Redirects and Forwards</li>\n</ul>\n<p>{{brochure-mss-detail}}</p>','<ul class=\"list-style\">\n<li>Membantu memperbaiki konfigurasi Web Application Firewall (WAF) untuk melindungi aplikasi web Anda dengan cara menghilangkan resiko kelemahan OWASP Top 10.</li>\n<li>Apa yang dimaksud dengan WAF? &ndash; WAF menggabungkan mekanisme blacklist dan whitelist untuk mengendalikan data input dan output, serta akses dari dan ke sebuah aplikasi web.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-waf.png\" alt=\"\" /></p>\n<h3>Tambal Virtual Aplikasi Web Anda dari OWASP Top 10 (2013)</h3>\n<ul class=\"list-style\">\n<li>Injection</li>\n<li>Broken Authentication and Session Management</li>\n<li>Cross-Site Scripting (XSS)</li>\n<li>Insecure Direct Object References</li>\n<li>Security Misconfiguration</li>\n<li>Sensitive Data Exposure</li>\n<li>Missing Function Level Access Control</li>\n<li>Cross Site Request Forgery (CSRF)</li>\n<li>Using Known Vulnerable Components</li>\n<li>Un-validated Redirects and Forwards</li>\n</ul>','contents/album/8/23-managed-waf.jpg','contents/album/8/thumb/23-managed-waf-thumb.jpg','','','','','','','','',2,'2016-10-28 14:38:46','2016-10-28 14:38:46',1),(24,9,0,'Penetration Testing / Ethical Hacking','Percobaan Penyusupan / Etika Hacking','Penetration Testing / Ethical Hacking','Percobaan Penyusupan / Etika Hacking','Web Application Penetration Test, Internal/External Network Penetration Test, Wireless Network Penetration Test','Penetration Test terhadap aplikasi web, Penetration test terhadap jaringan Internal/Eksternal, Penetration test terhadap jaringan Wireless','<h3>Web Application Penetration Testing</h3>\n<p>Validate and verify the effectiveness of the application security controls against OWASP Top 10 Vulnerabilities</p>\n<h3>Internal/External Network Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Validate and verify the effectiveness of the network security controls</li>\n<li>Ascertain that the IT infrastructure is able to defend against exploits</li>\n</ul>\n<h3>Wireless Network Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Discover of both known and unauthorized Wi-Fi networks and access points</li>\n<li>Gather information on network strength, security protocols and connected devices</li>\n<li>Validate and verify the strength of your encrypted Wi-Fi</li>\n</ul>\n<h3>Web Application Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Reveal weaknesses in web applications security controls before hackers do</li>\n<li>Demonstrate potential business impact when weaknesses are exploited</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 11.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/icon-penetration-testing.jpg\" alt=\"\" /> Eliminate the latest OWASP Top 10</h3>\n<ul class=\"list-style\">\n<li>Injection</li>\n<li>Broken Authentication and Session Management</li>\n<li>Cross-Site Scripting (XSS)</li>\n<li>Insecure Direct Object References</li>\n<li>Security Misconfiguration</li>\n<li>Sensitive Data Exposure</li>\n<li>Missing Function Level Access Control</li>\n<li>Cross Site Request Forgery (CSRF)</li>\n<li>Using Known Vulnerable Components</li>\n<li>Un-validated Redirects and Forwards</li>\n</ul>\n<h3>Leveraging OWASP Testing Framework</h3>\n<div class=\"row\">\n<div class=\"col-xs-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Before development</a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definition &amp; Design</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Development</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Deployment</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Maintenance</a></li>\n</ul>\n</div>\n<div class=\"col-xs-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Review SDLC Process</li>\n<li>Policy Review</li>\n<li>Standards Review</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Requirements Review</li>\n<li>Design &amp; Architecture Review</li>\n<li>Create &amp; Review UML Models</li>\n<li>Create &amp; Review Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li>Code Review</li>\n<li>Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li class=\"active\">Penetration Testing</li>\n<li>Configuration Management Reviews</li>\n<li>Unit &amp; System Tests</li>\n<li>Acceptance Tests</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Chance Verifications</li>\n<li>Health Checks</li>\n<li>Operational Management Reviews</li>\n<li>Regression Tests</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Passive Phase</h3>\n<ul class=\"list-style\">\n<li>Understand the application logic by &ldquo;playing&rdquo; with the features</li>\n<li>Observe network traffic between browser &amp; server</li>\n<li>Compiles information on attack surfaces, including URL, HTTP headers, parameters, cookies</li>\n</ul>\n<h3>2. Active Phase</h3>\n<ul class=\"list-style half-list\">\n<li>Information Gathering</li>\n<li>Identity Management Testing</li>\n<li>Authentication Testing</li>\n<li>Authorization Testing</li>\n<li>Session Management Testing</li>\n<li>Input Validation Testing</li>\n<li>Error Handling</li>\n<li>Cryptography</li>\n<li>Business Logic Testing</li>\n<li>Client Side Testing</li>\n<li>Configuration and Deployment Management Testing</li>\n</ul>\n<h3>Internal/External Network Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Reveal weaknesses in the network security controls before hackers do</li>\n<li>Demonstrate how hackers can take advantage of the weakest links to compromise your business applications and data</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 11.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing-2.jpg\" alt=\"\" /></p>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Reconnaissance</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Find targets by enumerating all IP addresses on the network and fingerprinting host types, OS installed, services running, etc..</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. Weaponization</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Select relevant plugins from toolbox to test for vulnerabilities for each targeted host</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. Delivery</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Send specially crafted network packets using plugins to targeted hosts</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>4. Exploit</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Exploit targeted host vulnerabilities, e.g. buffer overflow, weak cipher, etc.</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>5. Installation</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Send payload, such as Remote Administration Tool, over to exploited host</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Command &amp; Control</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Explore network around the compromised host</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7. Actions</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Search for critical data such as credit card numbers, login credentials, etc. and document findings in Final Report</p>\n</div>\n</li>\n</ul>\n<h3>Wireless Network Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Reveal weaknesses in the wireless security controls before hackers do</li>\n<li>Demonstrate how hackers can find loopholes in your wireless infrastructure to gain access to your critical business applications and data</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 11.1)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing-3.jpg\" alt=\"\" /></p>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Reconnaissance</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Discover available networks (BSSID) in the vicinity, look for poorly configured Access Point, determine encryption used and capture network traffic Crack Wi- Fi password using Rainbow and/or brute-force attack Set up fake Access Point to find poorly configured client endpoints Document findings in Final Report</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>2. Weaponization</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>3. Delivery</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4. Exploit</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5. Installation</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Command &amp; Control</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>7. Actions</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n</ul>\n<p>{{brochure-pss-detail}}</p>','<h3>Uji Coba Penetrasi Aplikasi Web</h3>\n<p>Validasi dan verifikasi efektivitas dari kendali keamanan aplikasi dalam melawan kerentanan terhadap OSWASP Top 10</p>\n<h3>Uji Coba Penetrasi Jaringan Internal/External</h3>\n<ul class=\"list-style\">\n<li>Validasi dan verifikasi efektivitas dari kendali keamanan jaringan</li>\n<li>Memastikan bahwa infrastruktur IT dapat melindungi sistem Anda dari eksploitasi</li>\n</ul>\n<h3>Uji Coba Penetrasi Jaringan Nirkabel</h3>\n<ul>\n<li>Menemukan baik jaringan WIFI atau poin akses yang diketahui maupun yang tidak memiliki otorisasi.</li>\n<li>Mengumpulkan informasi mengenai kekuatan jaringan, protokol keamanan dan perangkat yang terhubung.</li>\n<li>Validasi dan verivikasi kekuatan dari WIFI terenkripsi milik Anda</li>\n</ul>\n<h3>Uji Coba Penetrasi Aplikasi Web</h3>\n<ul>\n<li>Mengungkap kelemahan dalam kendali keamanan aplikasi web sebelum hackers yang melakukannya</li>\n<li>Mendemonstrasikan dampak bisnis potensial ketika kelemahan tersebut dieksploitasi. Demonstrate potential business impact when weaknesses are exploited</li>\n<li>Menggabungkan kedalam ISMS Anda untuk memenuhi standar kepatuhan (PCI DSS 3.1 Requirement 11.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/icon-penetration-testing.jpg\" alt=\"\" /> Menyingkirkan OSWASP Top 10 Terbaru</h3>\n<ul>\n<li><em>Injection</em></li>\n<li><em>Broken Authentication and Session Management</em></li>\n<li><em>Cross-Site Scripting (XSS)</em></li>\n<li><em>Insecure Direct Object References</em></li>\n<li><em>Security Misconfiguration</em></li>\n<li><em>Sensitive Data Exposure</em></li>\n<li><em>Missing Function Level Access Control</em></li>\n<li><em>Cross Site Request Forgery (CSRF)</em></li>\n<li><em>Using Known Vulnerable Components</em></li>\n<li><em>Un-validated Redirects and Forwards</em></li>\n</ul>\n<h3>Leveraging OWASP Testing Framework</h3>\n<div class=\"row\">\n<div class=\"col-xs-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Sebelum Pengembangan </a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definisi dan Desain</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Pengembangan</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Penyebaran</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Pemeliharaan</a></li>\n</ul>\n</div>\n<div class=\"col-xs-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Review SDLC Process</li>\n<li>Policy Review</li>\n<li>Standards Review</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Requirements Review</li>\n<li>Design &amp; Architecture Review</li>\n<li>Create &amp; Review UML Models</li>\n<li>Create &amp; Review Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li>Code Review</li>\n<li>Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li class=\"active\">Penetration Testing</li>\n<li>Configuration Management Reviews</li>\n<li>Unit &amp; System Tests</li>\n<li>Acceptance Tests</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Chance Verifications</li>\n<li>Health Checks</li>\n<li>Operational Management Reviews</li>\n<li>Regression Tests</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Fase Pasif</h3>\n<ul>\n<li>Memahami logika aplikasi dengan cara &ldquo;bermain&rdquo; dengan fitur-fitur yang ada.</li>\n<li>Mengamati network traffic antara browser &amp; server</li>\n<li>Mematuhi informasi pada permukaan serangan, termasuk URL, HTTP headers, parameter, cookies</li>\n</ul>\n<h3>2. Fase Aktif</h3>\n<ul class=\"list-style half-list\">\n<li>Pengumpulan Informasi</li>\n<li>Pengujian Manajemen Identitas</li>\n<li>Pengujian Autentik</li>\n<li>Pengujian Otorisasi</li>\n<li>Pengujian Session Management</li>\n<li>Pengujian Validasi Input</li>\n<li>Penanganan Eror</li>\n<li>Cryptography</li>\n<li>Pengujian Logika Bisnis</li>\n<li>Pengujian Sisi Klien</li>\n<li>Pengujian Manajemen Konfigurasi dan Penyebaran</li>\n</ul>\n<h3>Uji Coba Penetrasi Jaringan Internal/External</h3>\n<ul>\n<li>Mengungkap kelemahan dalam kendali keamanan jaringan internal/eksternal sebelum hackers yang menemukannya</li>\n<li>Mendemonstrasikan bagaimana hacker dapat mengambil celah dari link terlemah untuk mengatur aplikasi dan data bisnis Anda.</li>\n<li>Menggabungkan kedalam ISMS Anda untuk memenuhi standar kepatuhan (PCI DSS 3.1 Requirement 11.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing-2.jpg\" alt=\"\" /></p>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. <span lang=\"EN-US\">Pengintaian</span></p>\n<p><span lang=\"EN-US\">Menemukan target dengan menghitung seluruh alamat IP dalam jaringan dan tipe host </span><em>fingerprinting</em>, OS yang terinstal, <span lang=\"EN-US\">layanan yang tengah berlangsung dan lain sebagainya</span>.</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. <span lang=\"EN-US\">Persenjataan</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Memilih plugin relevan dari toolbox untuk menguji coba kerentanan dari tiap host yang ditargetkan</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. <span lang=\"EN-US\">Pengiriman</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Mengirimkan khususnya paket jaringan yang dibuat menggunakann plugin untuk host yang ditargetkan.</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>4. <span lang=\"EN-US\">Eksploitasi</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p><span lang=\"EN-US\">Mengeksploitasi kerentanan dari host yang ditargetkan. Misanya</span> <em>buffer overflow, weak cipher,</em> <span lang=\"EN-US\">dsb</span>.</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>5. <span lang=\"EN-US\">Instalasi</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p><span lang=\"EN-US\">Mengirim</span> <em><span lang=\"EN-US\">payload</span></em>, <span lang=\"EN-US\">semisal</span> <em>Remote Administration Tool</em>, <span lang=\"EN-US\">pada host yang tereksploitasi</span></p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\"><br /></span><span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">6. <span class=\"m_2613308614314245544m_-8862034199096310858gmail-cyber-kill\"><span lang=\"EN-US\">Pengendalian dan Perintah</span></span></span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n<p><span class=\"m_2613308614314245544m_-8862034199096310858gmail-cyber-kill\">E<span lang=\"EN-US\">ksplorasi jaringan disekitar host yang disepakati</span></span></p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7.&nbsp;Aksi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Mencari data krusial seperti nomor kartu kredit, data login, dsb seta penemuan dokumen di <em>Final Report.</em></p>\n</div>\n</li>\n</ul>\n<h3>Wireless Network Penetration Testing</h3>\n<ul class=\"list-style\">\n<li>Mengungkap kelemahan dalam kendali keamanan jaringan internal/eksternal sebelum hackers yang menemukannya</li>\n<li>Mendemonstrasikan bagaimana hackers dapat menemukan lubanng dalam infrastruktur nirkabel untuk mendapatkan akses ke data dan aplikasi penting milik perusahaan Anda.</li>\n<li>Menggabungkan kedalam ISMS Anda untuk memenuhi standar kepatuhan (PCI DSS 3.1 Requirement 11.1)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/penetration-testing-3.jpg\" alt=\"\" /></p>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1.&nbsp;Pengintaian</p>\n</div>\n<div class=\"media-body media-middle\">\n<p><span lang=\"EN-US\">Menemukan jaringan yang tersedia </span>(BSSID) di<span lang=\"EN-US\"> sekitarnya, mencari Access Point yang tidak terkonfigurasi dengan baik, menentukan enkripsi yang digunakan dan memperoleh password WiFI Crack trafik jaringan dengan menggunakan Rainbow dan/atau secara brutal menyerang Access Point palsu untuk mrnrmukan endpoint klien yang tidak terkonfigurasi dengan baik serta mendokumenkan penemuan-penemuan ini dalam Report Final.</span></p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>2.&nbsp;Persenjatann</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>3.&nbsp;Pengiriman</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4.&nbsp;Eksploitasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5.&nbsp;Instalasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\"><br /></span><span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">6. Kendali dan Perintah</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>7.&nbsp;Aksi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n</ul>\n<p>{{brochure-pss-detail}}</p>','contents/album/9/24-penetration-testing-ethical-hacking.jpg','contents/album/9/thumb/24-penetration-testing-ethical-hacking-thumb.jpg','','','','','','','','',2,'2016-10-28 14:44:26','2016-10-28 14:44:26',1),(26,8,2,'Managed PAM','Pengelolaan PAM','Managed Privileged Access Management (PAM)','Pengelolaan Privileged Access Management (PAM)','Prevent internal data breaches by managing lifecycle of privileged credentials that includes identifying critical IT assets, enforcing rules for password, delegating access to privileged credentials and auditing.','Mencegah kebocoran data internal melalui pengelolaan siklus otorisasi suatu kredensial yang ternasuk juga di dalamnya mengidentifikasikan aset IT yang penting, penerapan pengaturan terhadap password, delegasi akses terhadap kredensial dan auditing','<ul class=\"list-style\">\n<li>Helps you fine-tune your Privileged Access Management (PAM) solution to help you meet compliance regulations and prevent internal data breaches through the use of privileged accounts</li>\n<li>What is PAM? &ndash; PAM is a platform to manage lifecycle of privileged credentials of Windows, Linux/UNIX, mainframes, network appliances, databases, business applications, hypervisors, etc.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-pam.jpg\" alt=\"\" /></p>\n<ul class=\"list-style\">\n<li>Discover: Identify and document critical IT assets, privileged accounts, and their interdependencies.</li>\n<li>Remediate: Enforce rules for password complexity, diversity, and change frequency, and synchronize changes across all dependencies.</li>\n<li>Delegate: Delegate access to privileged credentials so that only appropriate personnel, using the least privilege required, can login to IT assets</li>\n<li>Track: Audit and alert so that the requester, purpose, and duration of each privileged access request is documented and monitored.</li>\n</ul>\n<p>{{brochure-mss-detail}}</p>\n<p>&nbsp;</p>','<ul class=\"list-style\">\n<li>Membantu menyempurnakan solusi Privileged Access Management (PAM) Anda untuk memenuhi regulasi pelaksanaan dan mencegah pelanggaran data internal melalui penggunaan akun eksklusif.</li>\n<li>Apa yang dimaksud dengan PAM?&mdash;PAM adalah sebuah platform yang berfungsi untuk mengelola siklus kredensial eksklusif dari Windows, Linux/UNIX, mainframes, network appliances, databases, business applications, hypervisors, dan lain sebagainya.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-pam.jpg\" alt=\"\" /></p>\n<ul class=\"list-style\">\n<li>Temukan: Identifikasi dan dokumenkan aset IT krusial, akun eksklusif, dan hubungan keterkaitan antar akun eksklusif.</li>\n<li>Remediasi: Perkuat peraturan untuk kompleksitas password, keanekaragaman dan frekuensi perubahan, serta sinkronasikan perubahan dalam setiap dependensi.</li>\n<li>Delegasi: Delegasikan akses untuk kredensial eksklusif agar hanya personil yang tepat, dengan menggunakan hak istimewa terkecil yang diwajibkan, dapat masuk ke dalam aset IT.</li>\n<li>Lacak: Audit dan berikan peringatan agar tiap permohonan akses eksklusif termasuk data pemohon, maksud tujuan serta durasi dapat didokumentasikan dan diawasi.</li>\n</ul>\n<p>{{brochure-mss-detail}}</p>','contents/album/8/26-managed-pam.jpg','contents/album/8/thumb/26-managed-pam-thumb.jpg','','','','','','','','',2,'2016-10-28 14:39:31','2016-10-28 14:39:31',1),(27,8,3,'Outbound Clean Pipe','Outbound Clean Pipe','Outbound Clean Pipe','Outbound Clean Pipe','Protect your company’s reputation and investmen by having real-time, exfiltration prevention platform, virtual patching, ransomware prevention, and botnets/spam servers blocker.','Melindungi reputasi dan investasi perusahaan anda dengan memiliki platform untuk pencegahan terhadap eksfiltrasi data secara real-time, virtual patching, pencegahan terhadap ransomware, dan botnet/spam','<ul class=\"list-style\">\n<li>Provides you with an outbound clean pipe to prevent misuse of your network resources as botnets or spam servers; hence protecting your company&rsquo;s reputation and investment</li>\n<li>What is Outbound Clean Pipe? &ndash; Where Internet Clean Pipe (inbound), prevents DDoS traffic from entering your network, our Outbound Clean Pipe protects you from adversaries who attempt to use your network to launch a DDoS attack on others</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/outbound-clean-pipe.jpg\" alt=\"\" /></p>\n<h3>Protect your assets &amp; reputation</h3>\n<ul class=\"list-style\">\n<li>Real-time, exfiltration prevention platform</li>\n<li>Virtual patching against advanced targeted threats</li>\n<li>Ransomware prevention</li>\n<li>Stops botnets and spam servers</li>\n</ul>\n<p>{{brochure-mss-detail}}</p>','<ul class=\"list-style\">\n<li>Menyediakan outbound clean pipe untuk mencegah penyalahgunaan aset network Anda sebagai botnets atau spam server; pada akhirnya melindungi reputasi serta investasi perusahaan Anda</li>\n<li>Apa yang dimaksud dengan outbound clean pipe? --- Ketika Internet Clean Pipe (inbound) mencegah traffic DDoS memasuki network Anda, Outbound Clean Pipe kami melindungi Anda dari lawan yang mencoba menggunakan jaringan Anda untuk meluncurkan serangan DDoS ke pihak lain.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/outbound-clean-pipe.jpg\" alt=\"\" /></p>\n<h3>Lindungi aset dan reputasi Anda</h3>\n<ul class=\"list-style\">\n<li>Platfotrm pencegahan exfiltration yang bersifat real-time</li>\n<li>Penambalan virtual untuk mencegah ancaman tingkat lanjut</li>\n<li>Pencegahan ransomware</li>\n<li>Menghentikan botnets dan spam servers</li>\n</ul>\n<p>{{brochure-mss-detail}}</p>','contents/album/8/27-outbound-clean-pipe.jpg','contents/album/8/thumb/27-outbound-clean-pipe-thumb.jpg','','','','','','','','',2,'2016-10-28 14:40:14','2016-10-28 14:40:14',1),(49,8,4,'Managed NGFW','Pengelolaan NGFW','Managed Next Generation Firewall (NGFW)','Pengelolaan Next Generation Firewall (NGFW)','Get higher throughput than UTM by using Next Generation Firewall that suits the needs of large enterprise by enforcing security policies at the application level, as well as at the port and protocol level','Dapatkan performa yang lebih tinggi dari UTM dengan menggunakan Next Generation Firewall yang sesuai dengan kebutuhan perusahaan dengan ukuran menengah ke atas dengan kemampuan untuk menerapkan pengaturan keamanan pada level aplikasi, termasuk juga pada level port dan protokol.','<ul class=\"list-style\">\n<li>Helps you manage your Next Generation Firewall (NGFW) configurations to detect and block sophisticated attacks by enforcing security policies at the application level, as well as at the port and protocol level</li>\n<li>What is NGFW? &ndash; NGFW provides the same capabilities as a UTM but with a higher throughput to suit the needs of large enterprise</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/NGFW.jpg\" alt=\"\" /></p>\n<p>{{brochure-mss-detail}}</p>','<p>Dapatkan output yang lebih tinggi dari UTM menggunakan Next Generation Firewall yang sesuai dengan kebutuhan perusahaan besar dengan menguatkan kebijakan keamanan pada level aplikasi dan juga level port dan protocol.</p>\n<p>Pengelolaan Next Generation Firewall (NGFW)</p>\n<ul class=\"list-style\">\n<li>Membantu Anda mengatur konfigurasi NGFW untuk mendeteksi dan memblokir serangan tingkat tinggi dengan cara memperkuat kebijakan keamanan pada level aplikasi dan juga level port dan protocol</li>\n<li>Apa yang dimaksud dengan NGFW? &ndash; NGFW menyediakan kapabilitas yang sama dengan UTM tapi dengan kuantitas yang lebih tinggi dimana kuantitas output tersebut sesuai dengan kebutuhan perusahaan besar.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/NGFW.jpg\" alt=\"\" /></p>\n<p>{{brochure-mss-detail}}</p>','contents/album/8/49-managed-ngfw.jpg','contents/album/8/thumb/49-managed-ngfw-thumb.jpg','','','','','','','','',2,'2016-10-28 14:40:45','2016-10-28 14:40:45',1),(30,9,0,'Advanced Attack Simulation','Simulasi Penyerangan Tingkat Lebih Lanjut',' Advanced Attack Simulation','Simulasi Penyerangan Tingkat Lebih Lanjut','Social Engineering and Phishing Attack Simulation, DDoS Attack Simulation, Advanced Persistent Threat (APT) Attack Simulation','Simulasi Social Engineering dan serangan Phishing, simulasi serangan DDoS, Simulasi serangan Advanced Persistent Threat (APT)','<h3>Social Engineering and Phishing Attack Simulation</h3>\n<ul class=\"list-style\">\n<li>Simulate a social engineering attack on elements of your organisation</li>\n<li>Gauge the effectiveness of information security awareness training</li>\n<li>Improve the resilience of your organisation</li>\n</ul>\n<h3>DDoS Attack Simulation</h3>\n<ul class=\"list-style\">\n<li>Battle-test your current DDoS solution to verify their effectiveness</li>\n<li>Highlight where the weaknesses in your network and servers are</li>\n</ul>\n<h3>Advanced Persistent Threat (APT) Attack Simulation</h3>\n<p>Get a realistic and evidence-based assessment of your most serious risks from attacks born from cyber threats</p>\n<h3>Social Engineering and Phishing Attack Simulation</h3>\n<ul class=\"list-style\">\n<li>Raise cyber security awareness through simulated phishing emails</li>\n<li>Train users on deceptive methods used to exploit your network</li>\n<li>Reduce susceptibility to Phishing emails in your organization, by creating ongoing Phishing Campaigns.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation.jpg\" alt=\"\" /></p>\n<h3>DDOS Attack Simulation</h3>\n<ul class=\"list-style\">\n<li>Battle-test your current DDoS solution to verify their effectiveness</li>\n<li>Highlight where the weaknesses in your network and servers are</li>\n<li>Get prepared to mitigate the next waves of attack campaigns</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation-2.jpg\" alt=\"\" /></p>\n<h3>APT Attack Simulation</h3>\n<ul class=\"list-style\">\n<li>Get a realistic and evidence-based assessment of your most serious risks from attacks born from cyber threats</li>\n<li>Validate and verify your security defenses through realistic simulated attacks from APTs using OSINT and common hackers&rsquo; tools</li>\n<li>Identify the \'low-hanging fruit&rsquo; so as to better focus your security investments</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation-3.jpg\" alt=\"\" /></p>\n<p>{{brochure-pss-detail}}</p>','<h3><span lang=\"EN-US\">Simulasi </span><em>Social Engineering</em> <span lang=\"EN-US\">dan</span> <span lang=\"EN-US\">Serangan </span><em>Phishing</em></h3>\n<ul>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpFirst\"><span lang=\"EN-US\">Mensimulasikan serangan <em>social engineering</em></span></li>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpMiddle\"><span lang=\"EN-US\">Menilai efektivitas dari training terkait <em>information security awareness.</em></span></li>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpLast\"><span lang=\"EN-US\">Meningkatkan ketahanan perusahaan Anda.</span></li>\n</ul>\n<h3>Simulasi Serangan DDoS</h3>\n<ul>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpFirst\"><span lang=\"EN-US\">Menguji coba dan membandingkan solusi DDoS Anda yang sekarang untuk membuktikan keefektifannya</span></li>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpLast\"><span lang=\"EN-US\">Menyorot titik dimana kelemahan jaringan dan kelemahan server Anda berada</span></li>\n</ul>\n<h3>Simulasi Serangan <em>Advanced Persistent Threat (APT)</em></h3>\n<p>Temukan resiko terkuat dari ancaman siber melalui evaluasi realistis yang didasarkan oleh bukti.</p>\n<h3>Social Engineering dan Simulasi Serangan Phishing</h3>\n<ul>\n<li>Tingkatkan kesadaran <em>cyber security</em> melalui simulasi email phising.</li>\n<li>Melatih <em>user</em> untuk menghadapi metode tipuan <em>(deceptive method)</em> yang digunakan untuk mengeksploitasi jaringan Anda.</li>\n<li>Kurangi kerentanan perusahaan Anda terhadap <em>email phising</em> dengan menciptakan <em>Phising Campaigns.</em></li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation.jpg\" alt=\"\" /></p>\n<h3>Simulasi Serangan DDOS</h3>\n<ul>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpFirst\"><span lang=\"EN-US\">Menguji coba dan membandingkan solusi DDoS Anda yang sekarang untuk membuktikan keefektifannya</span></li>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpMiddle\"><span lang=\"EN-US\">Menyorot titik dimana kelemahan jaringan dan kelemahan server Anda berada</span></li>\n<li class=\"m_7010306596164385126m_6794314694925187349gmail-MsoListParagraphCxSpLast\"><span lang=\"EN-US\">Mempersiapkan untuk mengatasi rangkaian serangan <em>campaign</em> selanjutnya</span></li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation-2.jpg\" alt=\"\" /></p>\n<h3>Simulasi Serangan APT</h3>\n<ul>\n<li>Dapatkan penilaian yang realistis dan sesuai bukti terkait resiko paling serius yang Anda dapat dari serangan siber.</li>\n<li>Validasi dan verifikasi pertahanan keamanan Anda melalui simulasi serangan yang bersifat realistis yaitu simulasi serangan dari APTs mengggunakan OSINT dan peralatan yang digunakan hacker secara umum.</li>\n<li>Mengidentifikasi hal-hal lain yang mudah ditemukan agar lebih terfokus pada investasi keamanan Anda</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/advanced-attack-simulation-3.jpg\" alt=\"\" /></p>\n<p>{{brochure-pss-detail}}</p>','contents/album/9/30-advanced-attack-simulation.jpg','contents/album/9/thumb/30-advanced-attack-simulation-thumb.jpg','','','','','','','','',2,'2016-10-28 14:44:49','2016-10-28 14:44:49',1),(31,9,0,'Application Security Testing','Uji Coba Keamanan Aplikasi','Application Security Testing','Uji Coba Keamanan Aplikasi','Source Code Peer Review, Source Code Automated Analysis','Pemeriksaan terhadap source code, analisa source code secara otomatis','<h3>Source Code Peer Review</h3>\n<p>Gain access to our skilled personnel who can help you identify software defects before they lead to security vulnerabilities</p>\n<h3>Source Code Automated Analysis</h3>\n<ul class=\"list-style\">\n<li>Use automated tools and manual expert validation to discover software programming flaws before they lead to security vulnerabilities</li>\n<li>Identify software design and programming flaws before they become security vulnerabilities</li>\n<li>Rectify the flaws at design and development phases before they become too costly to fix in production</li>\n</ul>\n<h3>Source Code Peer Review</h3>\n<ul class=\"list-style\">\n<li>Gain access to our skilled personnel who can help you identify software defects before they lead to security vulnerabilities</li>\n<li>Correct defects early in the SDLC when problems are cheaper and easier to fix</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 6.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing.jpg\" alt=\"\" /></p>\n<h3>Flag out common programming mal-practices</h3>\n<ul class=\"list-style\">\n<li>All subroutines are commented in clear language.</li>\n<li>Complex algorithms are explained and justified</li>\n<li>Unit tests are added for new code paths or behaviors</li>\n<li>Unit tests cover errors and invalid parameter cases</li>\n<li>Possible null pointers always checked before use.</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Leveraging OWASP Testing Framework</h3>\n<div class=\"row\">\n<div class=\"col-md-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Before development</a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definition &amp; Design</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Development</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Deployment</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Maintenance</a></li>\n</ul>\n</div>\n<div class=\"col-md-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Review SDLC Process</li>\n<li>Policy Review</li>\n<li>Standards Review</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Requirements Review</li>\n<li>Design &amp; Architecture Review</li>\n<li>Create &amp; Review UML Models</li>\n<li>Create &amp; Review Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li>Code Review</li>\n<li class=\"active\">Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li>Penetration Testing</li>\n<li>Configuration Management Reviews</li>\n<li>Unit &amp; System Tests</li>\n<li>Acceptance Tests</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Chance Verifications</li>\n<li>Health Checks</li>\n<li>Operational Management Reviews</li>\n<li>Regression Tests</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Set Objectives</h3>\n<ul class=\"list-style\">\n<li>Understand application design and deployment scenario</li>\n<li>Prioritize modules to review</li>\n</ul>\n<h3>2. Manual Analysis</h3>\n<p>Deep-dive review of the following components:</p>\n<ul class=\"list-style\">\n<li>User authentication and authorization</li>\n<li>Data protection routines</li>\n<li>Code that receives and handles data from untrusted sources</li>\n<li>Data validation routines</li>\n<li>Code involved in handling error conditions</li>\n<li>Usage of operating system resources and networks</li>\n<li>Low-level infrastructure code (e.g. memory I/O)</li>\n<li>Embedded software components (e.g. open source libraries)</li>\n<li>Usage of problematic/deprecated APIs</li>\n</ul>\n<h3>3. Review &amp; Rectify</h3>\n<p>Review with developers to fix identified defects</p>\n<h3>Source Code Automated Analysis</h3>\n<ul class=\"list-style\">\n<li>Use automated tools and manual expert validation to discover software programming flaws before they lead to security vulnerabilities</li>\n<li>Fix problems early in the SDLC when it is cheaper and easier to fix</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 6.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing-2.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing-3.jpg\" alt=\"\" />Eliminate SANS Top 25 Most Dangerous Software Errors</h3>\n<ul class=\"list-style\">\n<li>Missing Authentication for Critical Function</li>\n<li>Use of Hard-coded Credentials</li>\n<li>Reliance on Untrusted Inputs in a Security Decision</li>\n<li>Missing Encryption of Sensitive Data</li>\n<li>Use of a Broken or Risky Cryptographic Algorithm</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Leveraging OWASP Testing Framework</h3>\n<div class=\"row\">\n<div class=\"col-md-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Before development</a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definition &amp; Design</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Development</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Deployment</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Maintenance</a></li>\n</ul>\n</div>\n<div class=\"col-md-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Review SDLC Process</li>\n<li>Policy Review</li>\n<li>Standards Review</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Requirements Review</li>\n<li>Design &amp; Architecture Review</li>\n<li>Create &amp; Review UML Models</li>\n<li>Create &amp; Review Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li class=\"active\">Code Review</li>\n<li>Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li>Penetration Testing</li>\n<li>Configuration Management Reviews</li>\n<li>Unit &amp; System Tests</li>\n<li>Acceptance Tests</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Chance Verifications</li>\n<li>Health Checks</li>\n<li>Operational Management Reviews</li>\n<li>Regression Tests</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Set Objectives</h3>\n<ul class=\"list-style\">\n<li>Understand application design and deployment scenario</li>\n<li>Proritize modules to scan</li>\n</ul>\n<h3>2. Automated Analysis</h3>\n<ul class=\"list-style\">\n<li>Run automated scan on compilable codes</li>\n<li>Tool will perform analysis such as data flow analysis, control flow analysis, taint analysis, and lexical analysis</li>\n</ul>\n<h3>3. Manual Verification</h3>\n<p>Review of findings by expert to filter out false positives</p>\n<h3>4. Review &amp; Rectify</h3>\n<p>Review with developers to fix identified defects</p>\n<p>{{brochure-pss-detail}}</p>','<h3>Penelaahan Sejawat Kode Sumber</h3>\n<p>Dapatkan akses bantuan dari personil terlatih kami yang dapat membantu Anda mengidentifikasi masalah dalam software sebelum terjadi bahaya pada keamanan Anda.</p>\n<h3>Analisis Otomatis Kode Sumber</h3>\n<ul>\n<li>Menggunakan sarana otomatis dan validasi manual dari ahli untuk menemukan kekurangan dalam programming software sebelum hal tersebut merambah pada permasalahan keamanan</li>\n<li>Mengidentifikasi desain software dan kekurangan programming sebelum hal-hal tersebut menjadi kerentanan dalam keamanan Anda</li>\n<li>Memperbaiki kekurangan pada fase desaind an pengembangan sebelum penanganan tersebut membutuhkan biaya membengkak untuk memperbaiki produksi.</li>\n</ul>\n<h3>Penelaahan Sejawat Kode Sumber</h3>\n<ul>\n<li>Dapatkan akses bantuan dari personil terlatih kami yang dapat membantu Anda mengidentifikasi masalah dalam software sebelum terjadi bahaya pada keamanan Anda.</li>\n<li>Memperbaiki kerusakan lebih awal dalam SDLC ketika permasalahan masih lebih mudah dan lebih terjangkau untuk diperbaiki</li>\n<li>Menggabungkan dengan ISMS Anda untuk memenuhi compliance standards (PCI DSS 3.1 Requirement 6.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing.jpg\" alt=\"\" /></p>\n<h3>Temukan Malpraktik Programming yang Paling Umum Terjadi</h3>\n<ul>\n<li>Seluruh subrutin diperiksa dalam bahasa yang jelas</li>\n<li>Alogaritma kompleks dijelaskan dan dijustifikasi</li>\n<li>Tes Unit ditambahkan untuk perilaku atau code path baru</li>\n<li>Tes Unit menutup eror dan kasus parameter yang invalid</li>\n<li>Pointer yang mungkin tidak berfungsi selalu diperiksa sebelum digunakan</li>\n<li>Dsb.,</li>\n</ul>\n<h3>Memanfaatkan Framework Testing OWASP</h3>\n<div class=\"row\">\n<div class=\"col-md-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Sebelum Pengembangan</a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definisi dan Desain</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Pengembangan</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Penyebaran</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Pemeliharaan</a></li>\n</ul>\n</div>\n<div class=\"col-md-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Pemeriksaan Proses SDLC &nbsp;</li>\n<li>Pemeriksaan Kebijakan</li>\n<li>Pemeriksaan Standar</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Pemeriksaan Persyaratan &nbsp;&nbsp;</li>\n<li>Pemeriksaan Desain dan Arsitektur</li>\n<li>Pembuatan dan Pemeriksaan UML Models</li>\n<li>Pembuatan dan Pemeriksaan Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li>Pemeriksaan KodeCode Review</li>\n<li class=\"active\">Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li>Uji Coba Penetrasi &nbsp;&nbsp;</li>\n<li>Pemeriksaan Manajemen Konfigurasi</li>\n<li>Uji Coba Unit dan Sistem</li>\n<li>Uji Coba Penerimaan</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Verifikasi Kesempatan &nbsp;&nbsp;</li>\n<li>Cek Kesehatan</li>\n<li>Pemeriksaan Manajemen Operasional</li>\n<li>Uji Coba regresi</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Menentukan Objektif</h3>\n<ul>\n<li>Memahami desain aplikasi dan scenario penyebaran</li>\n<li>Memprioritaskan moduk untuk pemerikasaan</li>\n</ul>\n<h3>2. Analisis Manual</h3>\n<p>Pemeriksaan mendalam untuk komponen berikut ini:</p>\n<ul>\n<li>Keaslian User dan Otorisasi</li>\n<li>Rutinitas Proteksi Data</li>\n<li>Kode yang menerima dan menagani data dari sumber yang belum dipercaya</li>\n<li>Rutinitas Validasi Data</li>\n<li>Kode yang diikutkan dalam menangani kondisi eror</li>\n<li>Penggunaan sumber sistem operasi dan jaringan</li>\n<li>Kode infrastruktur Low-level (misal memory I/O)</li>\n<li>Komponen software tertanam (misal <em>open source libraries</em>)</li>\n<li>Penggunaan API bermasalah/ditinggalkan</li>\n</ul>\n<h3>3. Pemeriksaan dan Perbaikan</h3>\n<p>Memeriksa bersama dengan developer untuk memperbaiki kerusakan yang teridentifikasi</p>\n<h3>Analisi Otomatis Kode Sumber</h3>\n<ul>\n<li>Menggunakan sarana otomatis dan validasi manual dari ahli untuk menemukan kekurangan dalam programming software sebelum hal tersebut merambah pada permasalahan keamanan</li>\n<li>Memperbaiki kerusakan lebih awal dalam SDLC ketika permasalahan masih lebih mudah dan lebih terjangkau untuk diperbaiki</li>\n<li>Menggabungkan dengan ISMS Anda untuk memenuhi compliance standards (PCI DSS 3.1 Requirement 6.3)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing-2.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-security-testing-3.jpg\" alt=\"\" />Mengeliminasi 25 Software Error Paling Berbahaya dari SANS</h3>\n<ul>\n<li>Otentikasi yang Hilang untuk Fungsi Kritikal</li>\n<li>Penggunaan <em>Hard-coded Credentials</em></li>\n<li>Kepercayaan Pada Input yang Belum Dipercaya dalam sebuah Keputusan Keamanan</li>\n<li>Enkripsi yang Hilang pada Data Sensitif</li>\n<li>Penggunaan Alogaritma Kriptografi yang Beresiko atau Rusak</li>\n<li>Dsb.,</li>\n</ul>\n<h3>Memanfaatkan Testing Framework OSWASP</h3>\n<div class=\"row\">\n<div class=\"col-md-4\">\n<ul class=\"nav nav-tabs tabs-left sideways\">\n<li class=\"active\"><a href=\"#before\" data-toggle=\"tab\">Sebelum Pengembangan</a></li>\n<li><a href=\"#definition\" data-toggle=\"tab\">Definisi dan Desain</a></li>\n<li><a href=\"#development\" data-toggle=\"tab\">Pengembangan</a></li>\n<li><a href=\"#deployment\" data-toggle=\"tab\">Penyebaran</a></li>\n<li><a href=\"#maintenance\" data-toggle=\"tab\">Pemeliharaan</a></li>\n</ul>\n</div>\n<div class=\"col-md-8\">\n<div class=\"tab-content tab-content\">\n<div id=\"before\" class=\"tab-pane active fade in\">\n<ul>\n<li>Review SDLC Process</li>\n<li>Policy Review</li>\n<li>Standards Review</li>\n</ul>\n</div>\n<div id=\"definition\" class=\"tab-pane\">\n<ul>\n<li>Requirements Review</li>\n<li>Design &amp; Architecture Review</li>\n<li>Create &amp; Review UML Models</li>\n<li>Create &amp; Review Threat Models</li>\n</ul>\n</div>\n<div id=\"development\" class=\"tab-pane\">\n<ul>\n<li class=\"active\">Code Review</li>\n<li>Code Walkthroughs</li>\n<li>Unit &amp; System Tests</li>\n</ul>\n</div>\n<div id=\"deployment\" class=\"tab-pane\">\n<ul>\n<li>Penetration Testing</li>\n<li>Configuration Management Reviews</li>\n<li>Unit &amp; System Tests</li>\n<li>Acceptance Tests</li>\n</ul>\n</div>\n<div id=\"maintenance\" class=\"tab-pane\">\n<ul>\n<li>Chance Verifications</li>\n<li>Health Checks</li>\n<li>Operational Management Reviews</li>\n<li>Regression Tests</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<h3>1. Penentuan Objektif</h3>\n<ul>\n<li>Memahami aplikasi desain dan scenario penyebaran</li>\n<li>Memprioritaskan modul untuk scan</li>\n</ul>\n<h3>2. Analisis Otomatis</h3>\n<ul>\n<li>Menjalankan scan otomatis pada kode yang dapat dikumpulkam</li>\n<li>Alat akan melakukan analisis seperti analisis data flow, analisis control flow, analisis pencemaran dan analisis leksikal</li>\n</ul>\n<h3>3. Verifikasi Manual</h3>\n<p>Pemeriksaan penemuan oleh ahli untuk memfilter hasil positif yang salah</p>\n<h3>4. Pemeriksaan dan Perbaikan</h3>\n<p>Pemeriksaan bersama developer untuk memperbaiki kerusakan yang teridentifikasi</p>\n<p>{{brochure-pss-detail}}</p>','contents/album/9/31-application-security-testing.jpg','contents/album/9/thumb/31-application-security-testing-thumb.jpg','','','','','','','','',2,'2016-10-28 14:45:17','2016-10-28 14:45:17',1),(32,9,0,'Cyber Security Forensics And Incident Response','Forensik Sekuriti Keamanan Siber dan Respon Kecelakaan','Cyber Security Forensics And Incident Response','Forensik Sekuriti Keamanan Siber dan Respon Kecelakaan','Investigate and remediate security incidents: Malware Intrusions, Web Defacements, Data Corruption & other catastrophic events','Menginvestigasi dan meremediasi insiden keamanan: Intrusi Malware, Perusakan Web, Data Corruption & kejadian berbahaya lainnya','<ul class=\"list-style\">\n<li>Gain access to our skilled personnel who can help you investigate and remediate computer security incidents</li>\n<li>Augment your ability to identify attack actions, scope of the breach, data loss, and steps required to re-secure the network</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 12.10)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/cyber-security-forensics.jpg\" alt=\"\" /></p>\n<p>{{brochure-pss-detail}}</p>','<ul>\n<li>Dapatkan akses bantuan dari personil terlatih kami yang dapat membantu Anda menginvestigasi dan meremediiasi insiden keamanan komputer</li>\n<li>Menambah kemampuan Anda untuk mengidentifikasi aksi serangan, cakupan dari penerobosan, kehilangan data serta langkah yang dibutuhkan untuk mengembalikan keamanan jaringan.</li>\n<li>Menggabungkan dengan ISMS Anda untuk memenuhi compliance standards (PCI DSS 3.1 Requirement 12.10)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/cyber-security-forensics.jpg\" alt=\"\" /></p>\n<p>{{brochure-pss-detail}}</p>','contents/album/9/32-cyber-security-forensics-and-incident-response.jpg','contents/album/9/thumb/32-cyber-security-forensics-and-incident-response-thumb.jpg','','','','','','','','',2,'2016-10-25 13:24:27','2016-10-25 13:24:27',1),(33,9,0,'Network & Host Security','Keamanan Jaringan dan Host','Network & Host Security','Keamanan Jaringan dan Host','Network Vulnerability Assessment, Host Vulnerability Assessment','Pengkajian terhadap tingkat keamanan dari jaringan, pengkajian terhadap tingkat keamanan dari PC/Workstation/Server','<h3>Network Vulnerability Assessment</h3>\n<p>Assess the security strength of your networks through automated scanning and manual expert validation of your network services, operating systems, routers/switches, mail servers, web servers, firewalls and applications</p>\n<h3>Host Vulnerability Assessment</h3>\n<p>Assess the policy compliance and identify vulnerable software installed in your hosts through automated scans and manual expert validation</p>\n<h3>Network Vulnerability Assessment</h3>\n<ul class=\"list-style\">\n<li>Assess the security strength of your networks through automated scanning and manual expert validation of your network services, operating systems, routers/switches, mail servers, web servers, firewalls and applications</li>\n<li>Find &amp; fix network vulnerabilities fast, before hackers can attack</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 11.2, ISO 27001:2013 A.12.6.1)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security-icon.jpg\" alt=\"\" /> Scan your networks for the latest vulnerabilities</h3>\n<ul class=\"list-style\">\n<li>Cisco IOS and IOS XE Software \'IKEv2\' Module Multiple Denial of Service Vulnerabilities</li>\n<li>Network Time Protocol CVE-2014-9295 Multiple Stack Based Buffer Overflow Vulnerabilities</li>\n<li>Palo Alto Networks Firewall Interface \'editUser.esp\' HTML Injection Vulnerability</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Reconnaissance</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Find targets by enumerating all IP addresses on the network and fingerprinting host types, OS installed, services running, etc..</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. Weaponization</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Select relevant plugins from toolbox to test for vulnerabilities for each targeted host</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. Delivery</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Send specially crafted network packets to targeted hosts</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4. Exploit</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5. Installation</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Command &amp; Control</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7. Actions</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Finalize list of vulnerabilities and associated risks, and document findings in Final Report</p>\n</div>\n</li>\n</ul>\n<h3>Host Vulnerability Assessment</h3>\n<ul class=\"list-style\">\n<li>Assess the policy compliance and identify vulnerable software installed in your hosts through automated scans and manual expert validation</li>\n<li>Find &amp; fix host vulnerabilities fast, before hackers can attack</li>\n<li>Incorporate into your ISMS to meet compliance standards (PCI DSS 3.1 Requirement 11.2, ISO 27001:2013 A.12.6.1)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security-icon.jpg\" alt=\"\" /> Scan your hosts for the latest vulnerabilities</h3>\n<ul class=\"list-style\">\n<li>Oracle Java SE CVE-2015-4893 Remote Security Vulnerability</li>\n<li>OpenSSL NULL Pointer Dereference CVE-2014-5139 Local Denial of Service Vulnerability</li>\n<li>Mozilla Network Security Services CVE-2016-1938 Weak Encryption Multiple Security Weaknesses</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Leveraging The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Reconnaissance</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Login to each targeted host to determine OS installed, security policies, services running, applications installed, etc..</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. Weaponization</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Select relevant plugins from toolbox to test for vulnerabilities in OS, installed applications and system services</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. Delivery</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Execute plugins on targeted hosts</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4. Exploit</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5. Installation</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Command &amp; Control</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7. Actions</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Finalize list of vulnerabilities and associated risks, and document findings in Final Report</p>\n</div>\n</li>\n</ul>\n<p>{{brochure-pss-detail}}</p>','<h3>Keamanan Jaringan dan Host</h3>\n<p>Menilai kekuatan keamanan dari jaringan anda melalui Scan secara otomatis dan validasi manual dari ahli untuk layanan jaringan, sistem operasi, router/switcher, server mail, sever web, firewall dan aplikasi</p>\n<h3>Penilaian Kerentanan Host</h3>\n<p>Menilai pelaksanaan kebijakan dan mengidentifikasi software rentan yang terinstal dalam host Anda melalui scan otomatis dan validasi manual dari ahli.</p>\n<ul>\n<li>Penilaian Kerentanan Jaringan</li>\n<li>Menganalisa kekuatan keamanan jaringan Anda melalui scan otomatis dan validasi manual dari ahli untuk layanan jaringan, sistem operasi, router/switcher, server mail, sever web, firewall dan aplikasi Anda</li>\n<li>Menemukan dan memperbaiki kerentanan jaringan secara cepat, sebelum hacker dapat menyerang.</li>\n<li>Menggabungkan dengan ISMS Anda untuk memenuhi compliance standards (PCI DSS 3.1 Requirement 12.10)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security-icon.jpg\" alt=\"\" /> Scan jaringan Anda untuk kerentanan yang paling baru.</h3>\n<ul class=\"list-style\">\n<li>Cisco IOS and IOS XE Software \'IKEv2\' Module Multiple Denial of Service Vulnerabilities</li>\n<li>Network Time Protocol CVE-2014-9295 Multiple Stack Based Buffer Overflow Vulnerabilities</li>\n<li>Palo Alto Networks Firewall Interface \'editUser.esp\' HTML Injection Vulnerability</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Memanfaatkan The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Pengintaian</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Menemukan target dengan cara menyebutkan satu persatu seluruh IP address dalam jaringan dan melakukan fingerprinting tipe host, OS yang terinstal, servis yang berjalan, dsb..</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. Persenjataan</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Pilih plugin relevan dari toolbox untuk uji coba kerentanan dari setiap host yang ditargetkan</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. Pengiriman</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Mengirim paket jaringa yang secara khusus dibuat untuk host yang ditargetkan packets to targeted hosts</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4. Eksploitasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5. Instalasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Kontrol dan Perintah</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7. Aksi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Memfinalisasikan daftar kerentanan dan resiko yang berhubungan serta mendokumenkan penemuan ini dalam Laporan Final</p>\n</div>\n</li>\n</ul>\n<h3>Penliaian Kerentanan Host</h3>\n<ul>\n<li>Menilai pelaksanaan kebijakan dan mengidentifikasi software rentan yang terinstal dalam host Anda melalui scan otomatis dan validasi manual dari ahli.</li>\n<li>Menemukan dan memperbaiki kerentanan jaringan secara cepat, sebelum hacker dapat menyerang.</li>\n<li>Menggabungkan dengan ISMS Anda untuk memenuhi compliance standards (PCI DSS 3.1 Requirement 11.2, ISO 27001:2013 A.12.6.1)</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security.jpg\" alt=\"\" /></p>\n<h3><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-host-security-icon.jpg\" alt=\"\" /> Scan jaringan Anda untuk kerentanan yang paling baru.</h3>\n<ul class=\"list-style\">\n<li>Oracle Java SE CVE-2015-4893 Remote Security Vulnerability</li>\n<li>OpenSSL NULL Pointer Dereference CVE-2014-5139 Local Denial of Service Vulnerability</li>\n<li>Mozilla Network Security Services CVE-2016-1938 Weak Encryption Multiple Security Weaknesses</li>\n<li>Etc., &hellip;</li>\n</ul>\n<h3>Memanfaatkan The Cyber Kill Chain</h3>\n<ul class=\"media-list list-addon\">\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>1. Pengintaian</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Login pada tiap host yang ditargetkan untuk menentukan OS yang terisntal, kebijakan keamaan, servis yang berjalan, aplikasi yang terisnstal, dsb..</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>2. Persenjataan</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Pilih plugin relevan dari toolbox untuk uji coba kerentanan dalam OS, aplikasi tang terisnstal dan layanan keamanan.</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>3. Pengiriman</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Memmberlakukan plugin pada host yang ditargetkan</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>4. Eksploitasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p>5.&nbsp;Instalasi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle addon-off\">\n<p style=\"display: table-cell;\"><span style=\"display: table-cell;\">6.</span> <span class=\"cyber-kill\" style=\"vertical-align: middle; display: table-cell; padding-left: 2px;\">Kontrol dan Perintah</span></p>\n</div>\n<div class=\"media-body media-middle\">\n<p>&nbsp;</p>\n</div>\n</li>\n<li class=\"media\">\n<div class=\"media-left media-middle\">\n<p>7.&nbsp;Aksi</p>\n</div>\n<div class=\"media-body media-middle\">\n<p>Menyelesaikan daftar kerentanan dan resiko yang berhubungan, kemudian mendokumenkan penemuan ini dalam laporan final</p>\n</div>\n</li>\n</ul>\n<p>{{brochure-pss-detail}}</p>','contents/album/9/33-network-host-security.jpg','contents/album/9/thumb/33-network-host-security-thumb.jpg','','','','','','','','',2,'2016-10-28 14:46:09','2016-10-28 14:46:09',1),(34,5,0,'Frictionless Security','Geseran Keamanan','Frictionless Security','Geseran Keamanan','Frictionless Security','Geseran Keamanan','<p>With Frictionless Security, we silo your data but break down the artificial silos in your organization. enSilo prevent the malicious attacker from stealing your valuable data with minimum effort on your part by controlling what happens at the operating system level. enSilo keeps you working normally because we can target the specific malicious process or application running on your system and block its outbound communication or keep it from tampering with files that it shouldn&rsquo;t be touching.</p>\n<h3>Never Stop Business: Frictionless Security</h3>\n<p>Are you running a business or a cyber security business? This isn&rsquo;t a trick question or question of tools and processes but rather a deeper question of when does cyber security take higher priority than business operations. Cyber security should not negatively impact business. It should not take more and more operational expense to run your business.</p>\n<p>enSilo is based on the belief that we can take control of spiraling alerts, operating expenses and labor hours by looking at things differently. Malicious actors (read bad guys) want to take your hard earned property or your customers\' property. Your intellectual property. Your credit card numbers. Your stuff. This is not new. It shouldn&rsquo;t be shocking to anyone that people want to steal no matter what their reasons.</p>\n<p>We keep bad guys from stealing your stuff with minimum effort on your part. Simple.</p>\n<p>And more importantly you can keep working no matter what happens.</p>\n<p>We do this by controlling what happens at the operating system level. Basically we keep you working because we can target the specific malicious process or application running on your system and block its outbound communication. Or keep it from tampering with files that it shouldn&rsquo;t be touching.</p>\n<p>The great news is that since we&rsquo;re only pinpointing the bad processes then everything else continues seamlessly. The users don&rsquo;t even notice we stopped something bad. They just keep working away. Your security team gets a single alert detailing the action but the malicious behavior has already been stopped.</p>\n<p>This gets technically complicated but from a business perspective it&rsquo;s as simple as it gets: no one steals or messes with your data and you keep working. There&rsquo;s just a single alert to let you know what happened with plenty of forensic data to keep your IR team happy. But you can take your time because your data isn&rsquo;t going anywhere.</p>\n<div class=\"hightlight\">\n<h3><em class=\"material-icons\">notifications_active</em> ALERT CHASERS</h3>\n<p>We all know the issue. Too many alerts. We chase them. They multiply beyond our wildest hopes of processing them all. False positives. IDS or IPS update giving the SOC team fits. A poorly tuned behavioral engine. A SIEM that wants you to look at EVERYTHING RIGHT NOW.</p>\n<p>Yep. So everyone is talking about less alerts. Like they weren&rsquo;t the ones causing the problem. Huh. Why didn&rsquo;t they do that earlier? That&rsquo;s the state of the industry based on old thinking.</p>\n<p>We do everything differently. We alert you when we&rsquo;ve stopped a real malicious outbound communication process. Something that wasn&rsquo;t supposed to be connecting just started wanting to broadcast your data. Nope. Stopped it and alerted you that we&rsquo;ve stopped it.</p>\n<p>False positives, right? Nope. We live in the operating system. We know what is really going on. And we stop only what needs to be stopped.</p>\n</div>\n<h3>DATA PROTECTION PLATFORM</h3>\n<ul class=\"frictionless-list\">\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-11.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\"><strong>Continuous Operations</strong></h4>\n<p>Never stop working even on a compromised machine</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-2.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\"><strong>One alert</strong></h4>\n<p>per live threat</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-3.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\"><strong> Zero user impact</strong></h4>\n<p>We don&rsquo;t hog the computer</p>\n</div>\n</div>\n</div>\n</li>\n</ul>\n<h3>Oh look. Everyone&rsquo;s Happy. This Never Happens. Mind Blown Right?</h3>\n<p>IT management. SOC managers. The IR Team. The CIO. Heck even the CEO. AND the all the users. All happy. Well about this at least.</p>\n<p>Users can run the applications they want. Those unauthorized applications just won&rsquo;t communicate outbound.</p>\n<p>IT Management doesn&rsquo;t worry about exceptions or massive application control overhead. Whichever apps they do not authorize to communicate simply won&rsquo;t connect outbound.</p>\n<p>SOC managers alert levels are all way down to almost nothing.</p>\n<p>The IR team now has an easy job. Since the attack communications are already blocked, they don&rsquo;t have the time crunch that they used to have. Now they can follow enSilo&rsquo;s evidence trail right to the issue.</p>\n<p>The CISO and CIO smile because all the data is safe.</p>\n<p>The CEO is ecstatic because security tools are not getting in the way of business.</p>\n<p>Sound good so far?</p>\n<p>You see with Frictionless Security we silo your data but break down the artificial silos in your organization. There is one team and it is everyone in your business. We simply bring the team together by removing the danger of data theft.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa2.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>\"Vulnerable By Design\" Research Report : Learn how attackers appear legitimate in face of security tools by exploiting design vulnerabilities.</h4>\n<a class=\"btn btn-primary\">Download<br /> the Report</a></div>\n</div>\n</div>','<p>Bersama dengan Keamanan Tanpa Gesekan (Frictionless Security), kami silo data Anda tapi memecah silo artifisial di perusahaan Anda. enSilo mencegah penyerang berbahaya mencuru data berharga Anda dengan usaha minimum dari pihak Anda dengan mengontrol apa yang terjadi pada level sistem operasi. enSilo membuat Anda tetap bekerja secara normal karena kami dapat menargetkan proses berbahaya spesifik atau aplikasi yang bekerja dlam sistem Anda dam memblokis komunikasi outbound-nya atau mencegahnya mengubah file yang seharusnya tidak disentuh.</p>\n<h3>Bisnis yang Tidak Pernah Berhenti: Frictionless Security</h3>\n<p>Apakah Anda menjalankan bisnis atau bisnis keamanan siber? Ini bukan pertanyaan menjebak atau pertanyaan alat dan proses melainkan pertanyaan yang lebih mendalam engenai kapan keamanan siber mendapat prioritas lebih tinggi dari operasi bisnis Keamanan siber seharusnya tidak mempengaruhi bisnis secara negatif. Keamanan siber seharusnya tidak mengambil pengeluaran operasional lebih banyak untuk menjalankan bisnis Anda.</p>\n<p>enSilo berdasar pada kepercayaan bahwa kami dapat mengambil kendali dari peringatan yang spiral, pengeuaran operasi dan jam kerja dengan melihat sesuatu secara berbeda. Aktor jahat ingin mengambil properti yang Anda dapat dengan kerja keras atau properti dari pelanggan Anda. Kekayaan intelektual Anda. Nomor kartu kredit Anda. Barang-barang penting Anda. Ini bukan hal baru. Seharusnya bukanlah hal yang mengejutkan bagi siapapun bahwa seseorang ingin mencuri, tanpa paeduli apapun alasannya.</p>\n<p>Kami mencegah orang-orang tidak bertanggung jawab ini mencuri barang Anda dengan usaha kecil dari pihak Anda. Simpel.</p>\n<p>Dan yang paling penting Anda dapat tetap bekerja apapun yang terjadi.</p>\n<p>Kami melakukan ini dengan cara mengendalikan apa yang ada pada level sistem operasi. Pada dasarnya kami membuat Anda tetap bekerja karena kami dapat menarketkan proses berbahaya spesifik atau aplikasi yang berlangsung dalam sistem Anda dan memblokir komunikasi outboundnya. Atau encegahnya mengubah data yang seharusnya tidak boleh disentuh.</p>\n<p>Kabar baiknya adalah bahwa sejak kami hanya menentukan proses buruk kemudian hal berlanjut secara mulus. User bahkan tidak perl menyadari kami menghentikan sesuatu yang buruk. Mereka terus melanjutkan pekerjaan mereka. Tim eamanan Anda mendapat satu pemberitahuan yang menjelaskan aksi namun perilaku berbahaya telah berhasil dihentikan.</p>\n<p>Ini menjadi rumit secara teknikal namun dari sudut pandang bisnis ini sederhana: tidak ada yang mencuri ada berulad dengan data Anda dan Anda tetap bekerja seperti biasa. Yang ada hanyalah satu pemberitahuan yang membuat ANda tahu apa yang terjadi dengan banyak data forensic untuk membuat tim IR Anda puas. Namun Anda dapat bersantai karena data Anda tidak pergi kemanapun.</p>\n<div class=\"hightlight\">\n<h3><em>notifications_active</em> PEMBURU PEMBERITAHUAN</h3>\n<p>Ya. Jadi semua orang sedang membicarakan tentang pemberitahuan yang lebih sedikit. Seperti mereka bukan yang menyebabkan masalah ini. Kenapa mereka tidak melakukannya lebih awal? Itulah kondisi industri yang didasarkan pada pemikiran lama.</p>\n<p>Kami melakukan semuanya secara berbeda. Kami memberitahu Anda ketika kami menghentikan proses komunikasi outbound yang benar-benar membahayakan. Sesuatu yang tidak seharusnya terhubung mulai ingin menyebarkan data Anda. Tidak. Kami menghentikan ini dan memberitahu Anda saat kami sudah menghentikannya.</p>\n<p>False positive? Bukan. Kami tinggal dalam sistem operasi. Kami tahu aa yang sebenarnya sedang terjadi dan kami menghentikan yang butuh untuk dihentikan.</p>\n</div>\n<h3>PLATFORM PROTEKSI DATA</h3>\n<ul class=\"frictionless-list\">\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-11.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Operasi Berkelanjutan</h4>\n<p>Tidak pernah berhenti bekerja bahkan pada mesin yang telah terkompromi</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-2.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Satu pemberitahuan</h4>\n<p>per ancaman langsung</p>\n</div>\n</div>\n</div>\n</li>\n<li>\n<div class=\"list-item\">\n<div class=\"media\">\n<div class=\"media-left media-middle\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/frictionless-3.png\" alt=\"\" /></div>\n<div class=\"media-body media-middle\">\n<h4 class=\"media-heading\">Tanpa Pengaruh Pada User</h4>\n<p>Kami tidak mengambil alih komputer</p>\n</div>\n</div>\n</div>\n</li>\n</ul>\n<h3>Semuanya Senang. Ini Tidak Pernah Terjadi. Luar Biasa Bukan?</h3>\n<p>Manajemen IT. Manajer SOC. Tim IR. CIO. Bahkan CEO. DAN semua user. Semuanya puas dengan hasilnya.</p>\n<p>User dapat menjalankan aplikasi yang mereka inginkan. Aplikasi yang tidak terotorisasi tersebut tidak melakukan komunikasi outbound.</p>\n<p>Manajaman IT tidak mencemaskan tentang pengecualian atau kendali aplikasi skala besar diatas. Aplikasi manapun yang tidak mereka otorisasi untuk berkomunikasi tidak akan terhubung keluar.</p>\n<p>Level pemberitahuan manajer SOC diturunkan hingga hamper tidak ada.</p>\n<p>Tim IR sekarang memiliki pekerjaan yang mudah. Semenjak komunikasi serangan telah terblokir, mereka tidak perlu memiliki saat-saat genting yang mereka biasa hadapi. Sekarang mereka bisa mengikuti jejak pembuktian enSilo untuk masalah yang benar.</p>\n<p>CSIO dan CIO tersenyum karena seluruh data menjadi aman.</p>\n<p>CEO pun gembira karena alat keamanan tidak menghadang bisnis.</p>\n<p>Sejauh ini terdengar bagus?</p>\n<p>Anda melihat dengan Frictionless Security kami silo data Anda tapi memecah silo palsu di perusahaan Anda. Ada satu tim dan itu adalah semua orang dalam bisnis Anda. Secara sederhana kami membuat tim menjadi bersama dengan cara menghapuskan bahaya dari pencurian data.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa2.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>\"Kerentanan oleh Desain\" Laporan Riset : Pelajari bagaimana penyerang tampak sah di depan peralatan keamanan dengan cara mengeksploitasi kerentanan desain.</h4>\n<a class=\"btn btn-primary\">Download<br /> the Report</a></div>\n</div>\n</div>','contents/album/5/34-frictionless-security.jpg','contents/album/5/thumb/34-frictionless-security-thumb.jpg','','','','','','','','',2,'2016-10-27 10:57:09','2016-10-27 10:57:09',1),(35,5,0,'Remediate','Remediasi','Remediate','Remediasi','Remediate','Remediasi','<p>Remediate involves eliminating threats, patching systems and dealing with complex vulnerabilities. Annihilate malware from infected systems often includes reimaging a system via old style methods, nuking and paving. The remediation presented by enSilo is much easier to deal with because the risk has been lifted since the beginning. No data was harmed on your endpoints. It is secure from data exfiltration and tampering. Nothing was stolen or ransomed because it was stopped in real time.</p>\n<h3>Clean Up in Aisle 3</h3>\n<p>Remediation can be ugly work. Eliminating threats, patching systems and dealing with complex vulnerabilities. Wiping out malware from infected systems often involves reimaging a system just to be safe via old school nuking and paving.</p>\n<p>But it doesn&rsquo;t have to be like this. In all likelihood you know this and you&rsquo;re waiting for us to talk about the good stuff.</p>\n<h3>Hold My Beer &amp; Watch This.</h3>\n<p>Our remediation is much easier to deal with because nothing happened. Well something happened, but there were no consequences. Obviously not the same thing but when you&rsquo;re doing remediation with enSilo we blocked the outbound exfiltration as it happened. So nothing bad happened.</p>\n<p>We stopped the bad behavior before anyone got hurt. This isn&rsquo;t precognition or some science fiction mumbo jumbo. As we work inside the operating system, we have a pretty good idea when something&rsquo;s not right.</p>\n<p>And we do something about it. Sure it isn&rsquo;t &ldquo;prediction&rdquo; but it&rsquo;s better than that because we acted on it right when someone tried to take your data.</p>\n<h3>What Do I Do Now? Hint: Click Remediate</h3>\n<p>Once we&rsquo;ve done our forensics, then we&rsquo;ve confirmed what we already know: someone was trying to do something bad. And they weren&rsquo;t able to succeed.</p>\n<p>Cool. Let&rsquo;s do the cleanup. Terminate the process, remove the executable or both. Nothing shocking here.</p>\n<p>enSilo reaches into the endpoint and poof it&rsquo;s gone.</p>\n<h3>AND WE&rsquo;RE DONE HERE.</h3>\n<p>The key thing is that no data was harmed on your endpoints. Nothing was stolen. Nothing was ransomed because it was stopped in real time. So remediation is great, but that executable can keep whining about whatever it wants. It&rsquo;s in permanent timeout and not going out to play. Ever. All without bothering the user. They&rsquo;re still working despite being on an infected machine.</p>\n<p>That endpoint is secure from data exfiltration and tampering, but if you want to nuke and pave then you can do it when the user can give up the PC since their data is safe. This is about as easy as remediation gets. It is a different way of doing business. If you want to work harder than this, we understand being through. We&rsquo;re okay with that. But you really don&rsquo;t have to. Seriously, take your time, your data isn&rsquo;t going anywhere.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa3.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','<p>Remediasi termasuk menghapus ancaman, menambal sistem dan berhadapan dengan kerentanan yang kompleks. Memusnahkan malware dari sistem yang terinfeksi seringkali mengikutkan reimage sistem dengan menggunakan metode lama, nuking and paving. Remediasi yang diberikan oleh enSilo lebih mudah untuk digunakan karena resiko telah diangkat sejak awal. Tidak ada data yang dirugikan di endpoin Anda. Remediasi kami aman dari pengubahan dan pencurian data. Tidak ada yang tercuri atau tertaawan karena telah dihentikan secara real tme.</p>\n<h3>Pembersihan di Aisle 3</h3>\n<p>Remediasi bisa menjadi pekerjaan yang buruk. Menghilangkan ancaman, menambal sistem dan berhadapan dengan kerentanan yang kompleks. Menghapus malware dari sisrem yang terinfeksi seringkali membutuhkan reimage &nbsp;sistem agar menjadi aman dengan menggunakan cara lama yaitu <em>nuking and paving.</em></p>\n<p>Tapi tidak perlu seperti itu. Kemungkinan besar Anda mengetahuinya dan menunggu kami berbicara tentang hal bagus.</p>\n<h3>Inilah Penjelasannya</h3>\n<p>Remediasi kami lebih mudah untuk digunakan karena tidak ada yang terjadi. Sesuatu memang terjadi tapi tidak ada konsekuensinya. Secara jelas bukan hal yang sama namun saat Anda melakukan remediasi dengan enSilo kami menghentikan eksfiltrasi outbond saat itu terjadi. Jadi tidak ada hal buruk yang terjadi.</p>\n<p>Kami menghentikan perilaku berbahaya sebelum seseorang dirugikan. Ini bukanlah prekognisi atau fiksi ilmiah. Kami bekerja di dalam sistem operasi, kami memiliki gagasan yang sangat bagus saat sesuatu yang tidak benar terjadi.</p>\n<p>Dan kami melakukan sesuatu untuk menyelesaikannya. Tentu saja ini bukanlah prediksi tapi ini lebih baik dari itu karena kami beraksi secara tepat saat seseorang mencoba mengambil alih data Anda.</p>\n<h3>Apa yang harus saya lakukan sekarang? Petunjuk: Klik Remediasi</h3>\n<p>Saat kami selesai melakukan forensik, kami mengkonfirmasi bahwa kami telah mengetahui: seseorang sedang mencoba untuk melakukan hal yang buruk. Dan mereka tidak berhasil melakukannya.</p>\n<p>Mari lakukan pembersihan. Hentikan proses, hapuskan yang dapat dieksekusi atau lakukan keduanya. Tidak ada yang mengejutkan disini.</p>\n<p>enSilo mencapai endpoint dan kemudian ancaman itu hilang.</p>\n<h3>DAN KAMI SELESAI DISINI</h3>\n<p>Kuncinya adalah tidak ada data yang dirugikan pada endpoint Anda. Tidak ada yang dicuri. Tidak ada yang ditawan karena dihentikan secara real time. Jadi remediasi sangatlah bagus, tapi hal yang bisa dieksekusi itu akan terus meminta apapun yang diinginkannya. Ini berada dalam jangka waktu permanen dan tidak akan berhenti. Selamanya. Keseluruhan tanpa mengganggu user. Mereka tetap bekerja meskipun berada dalam mesin yang terinfeksi.</p>\n<p>Endpoint tersebut aman dari perubahan dan pencurian data, tapi bila Anda ingin menghancurkan dan menambal, maka Anda dapat melakukannya ketika user dapat merelakan PC selama data mereka aman. Ini tentang semudah remediasi berjalan. Ini berbeda dari melakukan bisnis. Jika Anda ingin bekerja lebih keras dari ini, kami memahaminya. Tapi sebenarnya Anda tidak perlu melakukannya karena data Anda tidak pergi kemanapun.</p>\n<p>&nbsp;</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa3.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>Lihat Demo platform proteksi data real time enSilo melawan serangan tingkat lanjut</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','contents/album/5/35-remediate.jpg','contents/album/5/thumb/35-remediate-thumb.jpg','','','','','','','','',2,'2016-10-27 10:18:19','2016-10-27 10:18:19',1),(36,5,0,'Forensics','Forensik','Forensics ','Forensik','Forensics','Forensik','<p>enSilo only send the users an alert when it has successfully stopped something because too many alerts is a common problem, and with enSilo, the users are free from that problem. You can promptly know what process was misbehaving and what damade were going to happen before enSilo blocked them from communicating or tampering. Remember, the blocked communication happened in real time so there was no outbound connection established.</p>\n<h3>FORENSICS HAS NEVER BEEN THIS STRESS FREE</h3>\n<p>Traditionally forensics means something bad has happened. Someone snuck through your layers of defense and it&rsquo;s now your job to find out how bad it is. Did they get something? What did they get? How much did they take?</p>\n<p>We believe your defense-in-depth will fail. We prevent the consequences when it does. They might be able to get in but they&rsquo;re not taking anything once they&rsquo;re in. So you already know the answer to the biggest question: What did they take? Nothing.</p>\n<p>Now that&rsquo;s a pretty bold statement but it&rsquo;s what we do. And we do it very well.</p>\n<h3>ONE ALERT PER STOPPED THREAT</h3>\n<p>Alerts. Too many alerts is a common problem. We don&rsquo;t want to add to the problem so we only send you an alert when we&rsquo;ve stopped something. We&rsquo;ve caught someone red-handed and you need to know</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensics-events.png\" alt=\"\" /></p>\n<p><strong>When you get an alert you get:</strong></p>\n<ul class=\"list-style\">\n<li>The process that was stopped from communicating or encrypting</li>\n<li>The endpoint that was infected</li>\n<li>The specific violating process and path</li>\n<li>Destination IP it was trying to communicate to.</li>\n<li>Time of event</li>\n<li>Why it was stopped</li>\n</ul>\n<h3>THIS IS AGAINST POLICIES.</h3>\n<p>Policies are the set of rules used to determine when bad things are happening and when we stop them. For example, Dynamic Code can be used by malware to run their payload. See. Bad Things. How about an unmapped executable? Nope. Not a good idea to let it free to do what it wants.</p>\n<p>Great so now you have some data. What do I do with it?</p>\n<p>You want the memory from the endpoint directly? Click. The content on the memory is yours. Now you can inspect to understand what is does. If you want to take the file itself from the disk then you can get that too. Or take the entire memory. Then it&rsquo;s yours to deconstruct, sandbox or whatever.</p>\n<h3>CLICK THE FORENSICS TAB</h3>\n<p>You can quickly see what process was misbehaving and what bad things were going to happen before enSilo blocked them from communicating or tampering. This is helpful for a very high level view.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensics-chain.png\" alt=\"\" /></p>\n<h3>YOU&rsquo;VE GOT PLENTY OF TIME</h3>\n<p>Note that the blocked communication happened in real time so there was no outbound connection established. You have time to get into the weeds if you want to. But if you take a look at our <a href=\"http://cobaweb.co/project/arimtechV2/myadmin/contents/contents-album-form/edit/5/remediation.html\">Remediation</a> you&rsquo;ll see that you don&rsquo;t have to if you don&rsquo;t want to. No worries.</p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','<p>enSilo hanya mengirim pemberitahuan pada user ketika telah berhasil menghentikan sesuatu karena terlalu banyak pemberitahuan adalah masalah yang seringkali terjadi. Anda dapat dengan segera mengetahui proses apakah yang melakukan tindakan buruk dan kerusakan apa yang akan terjadi sebelum enSilo menghentikan mereka dari pengkoneksian atau pengubahan. Ingat, komunikasi yang terblokir terjadi secara real time sehingga tidak adak koneksi outbound yang terbentuk.</p>\n<h3>FORENSIK SEBELUMNYA TIDAK PERNAH BEBAS STRES SEPERTI INI</h3>\n<p>Secara tradisioal, forensic berate sesuatu yang buruk telah terjadi. Seseorang menyusup kedalam lapisan pertahana Anda dan sekarang ini tugas Anda untuk menemukan separah apakah kondisi yang terjadi. Apakah mereka mendapatkan sesuatu? Apa yang mereke dapatkan? Seberapa banyak yang mereka dapatkan?</p>\n<p>Kami percaya bahwa kedalaman pertahanan Anda akan gagal. Kami mencegah konsekuensinya apabila hal itu terjadi. Mereka mingkin dapat masuk tapi mereka tidak aka mengambil apapun ketika mereka berhasil masuk. Jadi Anda sudah tahu jawaban dari pertanyaan terbesar: Apa yang mereka ambil? Tidak ada.</p>\n<p>Ini merupakan pernyataan yang berani namun inilah yang kami lakukan, dan kami melakukannya dengan sangat baik.</p>\n<h3>SATU PEMBERITAHUAN TANDA WASPADA UNTUK TIAP ANCAMAN YANG DIHENTIKAN</h3>\n<p>Pemberitahuan tanda waspada. Terlalu banyak pemberitahuan adalah permasalahan yang umum. Kami tidak ingin menambah masalah jadi kami hanya akan mengirimkan pemberitahuan ketika kami berhasil menghentikan sesuatu. Kami menangkap basah seseorang dan Anda perlu untuk mengetahuinya.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensics-events.png\" alt=\"\" /></p>\n<p><strong>Ketika Anda pendapatkan pemberitahuan tanda waspada, Anda mendapatkan:</strong></p>\n<ul>\n<li>Proses yang telah dihentikan dari komunikasi atau enkripsi</li>\n<li>Endpoint yang telah terinfeksi</li>\n<li>Proses atau path yang telah dilanggar secara spesifik</li>\n<li>Tujuan IP yang dicoba untuk dihubungi</li>\n<li>Waktu kejadian</li>\n<li>Alasan dihentikan</li>\n</ul>\n<h3>INI MELAWAN KEBIJAKAN</h3>\n<p>Kebijakan adalah seperangkat peraturan yang digunakan untuk menentukan kapan hal buruk terjadi dan kapan kami menghentikannya. Sebagai contoh, Kode Dinamis dapat digunakan oleh malware untuk merusak muatan mereka. Bagaimana dengan objek yang belum dipetakan? Tidak. Bukan ide bagus untuk membiarkanya bebas melakukan apa yang diinginkan.</p>\n<p>Jadi searang Anda memiliki beberapa data. Apa yang harus saya lakukan dengan data tersebut?</p>\n<p>Anda ingin memori dari endpoint secara langsung? Klik. Konten dalam memori adalah milik Anda. Sekarang Anda dapan menginspeksi untuk memahami apa yang dilakuan. Jika Anda ingin mengambil file dari disk, maka Anda bisa mendapatkannya juga atau ambil keseluruhan memori. Jadi terserah Anda bila ingin melakukan dekonstruksi, sandbox atau apapun.</p>\n<h3>KLIK TAB FORENSIK</h3>\n<p>Anda dapat dengan cepat meihat proses apa yang tengah berperilaku buruk dan hal tidak baik apa yang akan terjadi sebelum enSilo memblokir mereka dari komunikasi atau perusakan. Ini berguna untuk pandangan level yang sangat tinggi.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensics-chain.png\" alt=\"\" /></p>\n<h3>ANDA MEMILIKI BANYAK WAKTU</h3>\n<p>Ingat bahwa komunikasi yang terblokir terjadi secara real time sehingga tidak adak koneksi outbound yang dibentuk. Anda memiliki waktu untuk melihat secara detail jika Anda menginginkannya. Tapi jika Anda melihat <a href=\"http://cobaweb.co/project/arimtechV2/myadmin/contents/contents-album-form/edit/5/remediation.html\">Remediasi</a> kami, Anda akan mengetahui bahwa Anda tidak perlu melakukannya jika Anda tidak ingin. Tidak perlu khawatir.</p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>Lihat demo platform proteksi data real time enSilo melawan serangan tingkat lanjut</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','contents/album/5/36-forensics.jpg','contents/album/5/thumb/36-forensics-thumb.jpg','','','','','','','','',2,'2016-10-28 09:27:33','2016-10-28 09:27:33',1),(37,5,0,'Application Communication Control','Pengaturan Aplikasi Komunikasi','Application Communication Control ','Pengaturan Aplikasi Komunikasi','Application Communication Control','Pengaturan Aplikasi Komunikasi','<p>Stay away from unproductiveness that happens when unauthorized application is blocked from running. With enSilo, a misbehaving application can keep running because we block the outbound communication of the exact process so the users can keep working without worries. The essence lies on the eradication of consequences from the attack. Users can control exactly whether the application or processes can communicate which in the end block any hijacking efforts by malicious attackers.</p>\n<h3>The Secret Lives of Applications</h3>\n<p>Business runs on applications. From the simplest calculator to the most complex industrial controls, your business can&rsquo;t run without them. Sure we&rsquo;re all comfortable with text documents, spreadsheets, and presentation software. Browsers and email programs.</p>\n<p>When you add 10,000 PCs running different versions and different applications the number of variables gets huge. Crazy huge. So application whitelisting is very tough to do.</p>\n<p>Some organizations combat this by using only images with most common software. Well that not only ticks off your valuable employees who want that music app and your IT staff who has to deal with the exception list for groups that need CAD to do their job.</p>\n<p>With traditional application control, if an application is unauthorized then the policy is to block the application from running. So now the user is not able to work if the application is blocked right? This is the sad truth of application control: productivity killer.</p>\n<p>The whole concept is a hopeless jumble of workarounds that never address the real problem: application control is horrible. But that&rsquo;s the way the industry been doing it so by all means let&rsquo;s keep banging our heads against the wall. Let&rsquo;s fix it. Right now.</p>\n<p>With enSilo, a misbehaving application can keep running because we block the outbound communication of the exact process so you can keep working. We don\'t mess with the application we just prevent it from communicating. Simple. Users keep working and your data stays secure.</p>\n<div class=\"hightlight\">\n<p><strong>You&rsquo;ve Been Compromised. And That&rsquo;s Okay.</strong></p>\n<p>YOU&rsquo;VE BEEN COMPROMISED! Meh. You know it happens. We know it happens. Did they get what they came in for is the real question. With enSilo it is never even a question. The answer is no. No they did not get your data. No they did not tamper with your data. No. So someone&rsquo;s in your network. You should probably do something about it on an emotional level. But when it comes to risk, they&rsquo;re not taking anything so worry about it on your own time.</p>\n</div>\n<div class=\"hightlight\">\n<p>IT&rsquo;S 10 A.M. DO YOU KNOW WHERE YOUR APPS ARE?</p>\n<p>There are 4,000,000+ Windows Applications.</p>\n<p>Whitelisting? Really?</p>\n</div>\n<h3>Stop Making It Difficult</h3>\n<p>enSilo enables only authorized applications to communicate outbound. Pretty simple right?</p>\n<p>Users need to work, which means applications need to work regardless of security holes in a given application.</p>\n<p>We don&rsquo;t care if any application has more holes than lacy Swiss cheese because it doesn&rsquo;t matter. Cringing yet? Yep. Doesn&rsquo;t matter because that application can&rsquo;t communicate outbound. If the application is malicious or not authorized then it can\'t communicate.</p>\n<h3>You Control Your Applications.</h3>\n<p>The point is you take away the consequences of the attack.</p>\n<p>You&rsquo;ve prevented data theft. You&rsquo;ve prevented ransomware. You&rsquo;ve taken away the catastrophic risk from the attacker. Your applications work for you. No matter how much bad actors want to hijack those applications to do their dirty work, you can control exactly whether these applications or processes can communicate. Doesn&rsquo;t that make sense?</p>\n<h3>WHAT IT MEANS:</h3>\n<ul class=\"list-style\">\n<li>Focus on the real risk</li>\n<li>Authorized applications can communicate</li>\n<li>Unauthorized applications can run but not communicate</li>\n</ul>\n<h3>HOW IT WORKS</h3>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-how-it-works.png\" alt=\"\" /> <img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa4.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','<p>Jauhi ketidakproduktifan yang terjadi ketika aplikasi yang tidak terotorisasi diblokir untuk bekerja. Dengan enSilo, aplikasi yang menyimpang dapat tetap bekerja karena kami memutuskan komunikasi outbound dari proses tersebut agar user dapat tetap bekerja tanpa perlu cemas. Esensinya berada pada pembasmian konsekuensi serangan. User dapat mengendalikan baik aplikasi maupun proses yang dapat berkomunikasi dimana ada akhirnya memblokir setiap aksi pembajakan dari penyerang berbahaya.</p>\n<h3>Rahasia Kehidupan Aplikasi</h3>\n<p>Bisnis berjalan pada aplikasi. Dari kalkulator paling sederhana sampai kendali industry yang paling rumit, bisnis Anda tidak dapat berjalan tanpa aplikasi-aplikasi tersebut. Tentu saja kami semua nyaman dengan dokumen tulisan, spreadsheet, dan software aplikasi. Browser dan program email.</p>\n<p>Ketika Anda menambag 10.000 PC menjalankan versi berbeda dan aplikasi berbeda, angka variable menjadi besar. Jadi mendaftar-putihkan aplikasi adalah tugas yang sangat berat</p>\n<p>Beberapa organisasi melawan ini denganhana menggunakan image dengan software yang paling umum. Memang ini tidak hanya menandai pekerja andalan Anda yang menginginkan aplikasi music dan IT staf Anda yang harus behadapan dengan daftar pengecualian untuk grup yang membutuhkan CAD untuk melakukan pekerjaan mereka.</p>\n<p>Dengan kendali aplikasi tradisional, bila sebuah aplikasi tidak terotorisasi maka kebijakannya adalah untuk memblokir aplikasi tersebut. Sekarang user tidak dapat bekerja apabila aplikasi diblokir bukan? Inilah kenyataan menyedihkan dari kendali aplikasi: pembunuhan terhadap produktivitas.</p>\n<p>Seluruh konsep adalah campur aduk dari perilaku yang tidak pernah menyasar pada permasalahan yang sebemarnya: control aplikasi sangatlah buruk. Tapi itulah cara yang selama ini diakukan industry yang berarti sangat membuang waktu. Mari menyelesaikannya sekarang juga.</p>\n<p>Bersama enSilo, aplikasi yang menyimpang dapat tetap berjalan karena kami memblokir komunikasi outbound dari proses yang tepat sehingga Anda dapat tetap bekerja, Kami tidak menggaggu aplikasi, kami hanya mencegahnya untuk melakukan komunikasi. Sederhana. User tetap bekerja dan data Anda tetap aman.</p>\n<div class=\"hightlight\">\n<p><strong>Anda telah diretas. Dan Itu Bukan Masalah.</strong></p>\n<p>ANDA TELAH DIRETAS! Anda tahu ini telah terjadi. Apakah mereka mendapatkan apa yang mereka cari adalah pertanyaan yang paling penting. Bersama enSilo itu tidak akan jadi pertanyaan lagi. Jawabannya adalah tidak. Tidak mereka tidak mendapatkan data Anda. Tidak mereka tidak mengubah data Anda. Tidak. Jadi seseorang berada dalamm jaringan Anda. Anda seharusnya mungkin melakukan sesuatu tentang itu dengan level emosional. Tapi ketika berbicara tentang resiko, mereka tidak mengambil apapun jadi Anda tidak perlu mencemaskannya.</p>\n</div>\n<div class=\"hightlight\">\n<p>SEKARANG PUKUL 10 PAGI. APAKAH ANDA TAHU DIMANA APLIKASI ANDA?</p>\n<p>Ada 4 uta lebih Aplikasi Windows</p>\n<p>Melakukan whitelist? Yakinkah Anda?</p>\n</div>\n<h3><strong>Berhenti Membuatnya Sulit</strong></h3>\n<p>enSilo hanya membiarkan aplikasi terotorisasi yang melakukan komunikasi outbound. Sangat sederhana bukan?</p>\n<p>User butuh untuk bekerja, dimana berarti aplikasi membutuhkan waktu untuk bekerja meskipun terdapat lubang keamanan dalam aplikasi tersebut.</p>\n<p>Kami tidak peduli apabila aplikasi manapun memiliki lebih banyak lubang dibandingan keju swiss karena itu bukanlah masalah. Bukan masalah karena aplikas tersebut tidak dapat melakukan komunikasi outbound. Jika aplikasi tersebut berbahaya maupun tidak terotorisasi maka komunikasi tidak dapat terjadi.</p>\n<h3>Anda Mengendalikan Aplikasi Anda</h3>\n<p>Intinya adalah Anda menyingkirkan konsekuensi serangan.</p>\n<p>Anda mencegah pencurian data. Anda mencegah ransomware, Anda menyingkirkan resiko kersakan dari penyerang. Aplikasi Anda bekerja untuk Anda. Tidak pedulu seberapa banyak aktor jahat yang ingin menyerang aplikasi-aplikasi tersebut untuk niat jahat mereka, Anda dapat mengendalikan secara tepat bisa atau tidaknya aplikasi dan proses melakukan komunikasi. Masuk akal bukan?</p>\n<h3><strong>APAKAH MAKSUDNYA:</strong></h3>\n<ul class=\"list-style\">\n<li>Fokus pada resiko yang sebenarnya</li>\n<li>Aplikasi yang terotorisasi dapat berkomunikasi</li>\n<li>Aplikasi yang tidak terotorisasi dapat berjalan tapi tidak dapat berkomunikasi</li>\n</ul>\n<h3>BAGAIMANA INI BEKERJA</h3>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/application-how-it-works.png\" alt=\"\" /> <img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/aaa4.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','contents/album/5/37-application-communication-control.jpg','contents/album/5/thumb/37-application-communication-control-thumb.jpg','','','','','','','','',2,'2016-10-28 09:36:07','2016-10-28 09:36:07',1),(38,5,0,'Protect Anywhere','Perlindungan Dimana Saja','Protect Anywhere ','Perlindungan Dimana Saja','Protect Anywhere','Perlindungan Dimana Saja','<p>Let your employees work where and when they need to work. enSilo enables it to happen by removing almost all of your true threat surface and risk. PROTECTANYWHERE&reg; facilitates the protection that goes beyond the ogranization&rsquo;s area, it also protects the devices that is located in the outside of organization. Users get the exact same protection they do no matter where they go or what they do. When an employee connects from outside the corporate network, the enSilo Collector communicates with the enSilo Core in the Cloud.</p>\n<h3>YOU WORK OUTSIDE THE OFFICE. YOUR SECURITY SHOULD TOO</h3>\n<p>One constant of the modern workplace it that many of your endpoints move. Laptops and the remote workforce. Meetings at the coffee shop. Conferences. Telecommuting. Sales. Third Parties.</p>\n<p>PROTECTANYWHERE&reg; enables the protection of devices that reside also outside the organization (i.e., off-premise protection). Users get the exact same protection they do wherever they go, and more importantly, what they do.</p>\n<h3>MALWARE WITH A PURPOSE</h3>\n<p>Most of that malware has a purpose. Usually that purpose is a toehold into your network. But the end goal is stealing your data or ransoming it. That&rsquo;s why we skip to the end. If the bad actor cannot perform actions on target (stealing your stuff), then you&rsquo;ve already won.</p>\n<p>The bad guys know that it&rsquo;s tougher to go right after your network directly. If they can find a vector that gets them through a user&rsquo;s personal email or website then they&rsquo;ll do. They know your employees occasionally (or more) work from home. That&rsquo;s their goal in life and most of them are pretty sneaky. Which is why we think it is better to take their end goal away from them.</p>\n<div class=\"hightlight\">\n<p><strong>WHEN ALL ELSE FAILS: BLAME THE USER.</strong></p>\n<p>Your end users will click things they shouldn&rsquo;t. Phishing and malware hackers will convince your users that they should click or install something they shouldn&rsquo;t. They&rsquo;re really good at it. In fact, they&rsquo;re going to be better than you at convincing them not to click on things they shouldn&rsquo;t. It&rsquo;s okay. Really.</p>\n<p>enSilo protects your users and your network not only from malicious applications but also lateral movement. While the rest of the industry is focused on the network, behavior, signatures or whatever, we&rsquo;re protecting the data through the operating system. So really you can relax and know that whatever your folks do, they&rsquo;re still protected. It&rsquo;s what we do.</p>\n</div>\n<h3>SO HOW DOES THIS MIRACLE OF MODERN TECHNOLOGY WORK?</h3>\n<p>enSilo uses two components to prevent data theft and tampering: The Collector and the Core.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/protectanywhere-step.png\" alt=\"\" /></p>\n<p>When an employee connects from outside the corporate network, the enSilo Collector communicates with the enSilo Core in the Cloud. When connecting from within the corporate network, the enSilo Collector communicates with the enSilo on-premise Core.</p>\n<p>Your employees need to work where and when they need to work. enSilo removes those barriers to business and removes almost all of your true threat surface and risk. If they can&rsquo;t take your data. If they can&rsquo;t tamper with your data. If they can&rsquo;t ransom your data. Then the bad guys did all that work for nothing. Yeah. We&rsquo;re not real popular with them. We like it that way.</p>\n<div class=\"hightlight\">\n<p><strong>WE&rsquo;RE PROUD TO SAY WE HAVE TINY FEET</strong></p>\n<p>Our footprint is negligible. Sure. There&rsquo;s plenty of folks that say that but because we&rsquo;re focused on your business running we designed our product to have zero user impact. Because the Core does all the processing, the collector functions passively. And when we move the family album from the Collector, it\'s only a few kilobytes. The round trip from Collector to Core for album delivery, processing and return is measured in milliseconds. Click. Done.</p>\n</div>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/infographic-proposition.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','<p>Biarkan pegawai Anda bekerja dimanapun dan kapanpun mereka butuh untuk bekerja. enSilo memungkinkan itu untuk terjadi dengan menghilangkan hamper seluruh permukaann ancaman dan resiko. PROTECTANYWHERE&reg; memfasilitasi proteksi yang dapat bekerja diluar area perusahaan Anda dan juga melindungi perangkat yang berlokasi diluar perusahaan. User mendapatkan proteksi yang sama tanpa peduli kemanapun mereka pergi dan apapun yang mereka lakukan. Ketika seornag pegawai terhubungg dari luar jaringan korporat, Collector enSilo berkomunikasi dengan Core enSilo melalui Cloud.</p>\n<h3>ANDA BEKERJA DILUAR KANTOR. KEAMANAN ANDA SEHARUSNYA JUGA MENGIKUTI</h3>\n<p>Satu kesamaan dari tempat kerja modern adalah bahwa banyak dari endpoint Anda bergerak. Laptop dan pekerja jarak jauh. Meeting di kedai kopi. Konferensi. Telecommuting. Sales, Pihak Ketiga.</p>\n<p>PROTECTANYWHERE&reg; membiarkan proteksi perangkat yang berada diuar perusahaan. User mendapatkan proteksi yang benar-benar sama kemanapun mereka pergi, dan yang terpenting, apapun yang mereka lakukan.</p>\n<h3>MALWARE DENGAN MAKSUD</h3>\n<p>Hampir setiap malware memiliki maksud. Biasanya maksud tersebut bertumpuan pada jaringan Anda. Tapi hasil akhirnya adalah mencuri data Anda dan menawannya. Itulah alasan kami melangkahinya hingga akhir. Apabila aktor jahat tidak bisa melakukan aksi pada target maka Anda telah menang.</p>\n<p>Pihak yang tidak bertanggung jawab ini tahu bahwa lebih sulit untuk mengikuti jaringan Anda secara langsung. Jika mereka dapat menemukan vektor yang dapat membuat mereka menembus email personal user atau website maka mereka akan melakukannya. Mereka tahu bahwa pegawai Anda sering melakukan pekerjaan dari rumah. Itulah tujuan mereka dan sebagian besar dari merka sangatlah licik. Itulah mengapa kami berpikir bahwa lebih baik untuk menyingkirkan tujuan akhir mereka.</p>\n<div class=\"hightlight\">\n<p><strong>KETIKA YANG LAIN GAGAL: SALAHKAN USER</strong></p>\n<p>End User Anda akan meng-klik hal-hal yang seharusnya tidak mereka klik. Hacker malware dan phising akan meyakinkan user Anda bahwa mereka seharusnya meng-klik atau menginstall sesuatu yang seharusnya tidak mereka lakukan. Hacker sangat terlatih untuk melakukannya. Kenyataan, mereka akan lebih baik dari Anda dalam hal meyakinkan user. Itu bukan masalah.</p>\n<p>EnSilo melindungi user Anda dan jaringan Anda tidak hanya dari aplikasi berbahaya namun juga pergerakan lateral. Apabila yang lain terfokus pada jaringan, perilaku, tanda tangan, atau apapun, kami melindungi data melalui sistem operasi. Jadi Anda dapat bersantai dan mengetahui bahwa apapun yang dilakukan orang-orang Anda, mereka tetap terproteksi. Itulah yang kami lakukan.</p>\n</div>\n<h3>JADI BAGAIMANA KEAJAIBAN TEKNOLOGI MODERN INI BEKERJA?</h3>\n<p>enSilo menggunakan dua komponen untuk mencegah pencurian data: Kolektor (The Collector) and Pusat (the Core)..</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/protectanywhere-step.png\" alt=\"\" /></p>\n<p>Ketika seorang pegawai terkoneksi dari uar jaringan perusahaan, Kolektor enSilo berkomunikasi dengan Pusat enSilo melalui Cloud. Ketika terkoneksi dari dalam jaringan korporat, Kolektor enSilo berkomunikasi dengan Pusat on-premise enSilo.</p>\n<p>Pegawai Anda butuh untuk bekerja dimanapun dan kapanpun mereka butuh untuk bekerja. enSilo menyingkirkan halangan bagi bisnis dan menghapus hampir keseluruhan permukaan ancaman dan resiko Anda. Apabila mereka tidak dapat mengambil data Anda, apabila mereka tidak bisa mengubah data Anda, apabila mereka tidak bisa menawan data Anda, maka pihak yang jahat ini melakukan usaha yang sia-sia. Ya, mereka tidak menyukai kami, dan kami senang dengan hal itu.</p>\n<div class=\"hightlight\">\n<p><strong>KAMI BANGGA MENGATAKAN BAHWA KAMI MEMILIKI KAKI KECIL</strong></p>\n<p>Jejak kami tidaklah penting. Tentu saja. Ada banyak orang yang mengatakannya tapi karena kami terfokus pada berjalannya bisnis Anda, kami mendesain produk kami untuk tidak memiliki pengaruh sama sekali terhadap user. Karena Pusat (the Core) melakukan segala proses, sementara pengumpul (the Collector) berfungsi secara pasif. Dan ketika kami memindahkan album kelurga dari Core, datanya hanyalah sedikit kilobyte. Perjalanan bolak balik dari Collector menuju Core untuk pengiriman album, proses dan pengembalian diperkirakan terjadi dalam seperseribu detik.</p>\n</div>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/infographic-proposition.png\" alt=\"\" /></p>\n<div class=\"cta-demo\">\n<div class=\"panel panel-blue\">\n<div class=\"panel-body\">\n<h4>See a Demo of enSilo\'s real-time data protection platform against advanced attacks</h4>\n<a class=\"btn btn-primary\">See a Demo</a></div>\n</div>\n</div>','contents/album/5/38-protectanywhere.jpg','contents/album/5/thumb/38-protectanywhere-thumb.jpg','','','','','','','','',2,'2016-10-28 09:41:31','2016-10-28 09:41:31',1),(39,5,0,'Request for an enSilo Demo','Permintaan Untuk Demonstrasi enSilo','Request for an enSilo Demo','Permintaan Untuk Demonstrasi enSilo','Request for an enSilo Demo','Permintaan Untuk Demonstrasi enSilo','<p>You can get the demo of a real-time exfiltration prevention platform from enSilo. Experience various advantages of using enSilo as the part of your business. Please enter accurate email and phone information so we can contact you to arrange your free trial as quickly as possible.</p>\n<p><strong>Experience the benefits of a real-time exfiltration prevention platform</strong></p>\n<p>In this step-by-step demo you will:</p>\n<ul class=\"list-style\">\n<li>See how a watering hole attack infects a victim&rsquo;s device</li>\n<li>Understand how advanced threats bypass up-to-date defenses</li>\n<li>Watch a live threat actor&rsquo;s dashboard controlling the victim&rsquo;s device</li>\n<li>Learn how malicious communications are blocked by enSilo</li>\n<li>Observe how, using enSilo, legitimate communications continue as usual albeit the infected device</li>\n</ul>\n<p><strong>Complete the form below and we\'ll get back to you to schedule a 1x1 demo.</strong></p>\n<div id=\"mauticform_wrapper_formrequestforanensilodemo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formrequestforanensilodemo\" action=\"https://arimtech.mautic.net/form/submit?formId=5\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formrequestforanensilodemo\">\n<div id=\"mauticform_formrequestforanensilodemo_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formrequestforanensilodemo_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formrequestforanensilodemo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_full_name\">Full Name</label> <input id=\"mauticform_input_formrequestforanensilodemo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formrequestforanensilodemo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_business_email\">Business Email</label> <input id=\"mauticform_input_formrequestforanensilodemo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_company_name\">Company Name</label> <input id=\"mauticform_input_formrequestforanensilodemo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formrequestforanensilodemo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_phone_number\">Phone Number</label> <input id=\"mauticform_input_formrequestforanensilodemo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_designation\">Designation</label> <input id=\"mauticform_input_formrequestforanensilodemo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_country\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"country\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_country\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_country\">Country</label> <input id=\"mauticform_input_formrequestforanensilodemo_country\" class=\"mauticform-input\" name=\"mauticform[country]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_submit\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formrequestforanensilodemo_submit\" class=\"mauticform-button btn btn-default\" name=\"mauticform[submit]\" type=\"submit\" value=\"1\">Submit</button></div>\n<input id=\"mauticform_formrequestforanensilodemo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"5\" /> <input id=\"mauticform_formrequestforanensilodemo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formrequestforanensilodemo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formrequestforanensilodemo\" /></div>\n</form></div>','<p>Anda bisa mendapatkan demo dari platform pencegahan eksfiltrasi real time dari enSilo. Temukan beragam keuntungan dalam menggunakan enSilo sebagai bagian dari bisnis Anda. Silahkan memasukan email yang benar dan informasi kontak telepon agar kami dapat menghubungi Anda untuk mengatur free trial Anda secepat mungkin.</p>\n<p><strong>Temukan keuntungan dari platform pencegahan eksfiltrasi real-time.</strong></p>\n<p>Dalam demo step-by-step ini Anda akan:</p>\n<ul class=\"list-style\">\n<li>Melihat bagaimana serangan watering hole menginfeksi perangkat korban</li>\n<li>Memahani bagaimana serangan tingkat lanjut memotong pertahanan yang up-to-date</li>\n<li>Menonton secara langsung dasbor pihak ancaman saat mengendalikan perangkat korban.</li>\n<li>Mempelajari bagaimana komunikasi berbahaya diblokir oleh enSilo</li>\n<li>Mengamati bagaimana dengan menggunakan enSilo, komunikasi yang sah berlanjut seperti biasa walaupun berada dalam perangkat yang terinfeksi.</li>\n</ul>\n<p><strong>Lengkapi formulir berikut dan kami akan menghubungi Anda untuk menjadwalkan demo 1x1.</strong></p>\n<div id=\"mauticform_wrapper_formrequestforanensilodemo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formrequestforanensilodemo\" action=\"https://arimtech.mautic.net/form/submit?formId=5\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formrequestforanensilodemo\">\n<div id=\"mauticform_formrequestforanensilodemo_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formrequestforanensilodemo_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formrequestforanensilodemo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_full_name\">Full Name</label> <input id=\"mauticform_input_formrequestforanensilodemo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formrequestforanensilodemo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_business_email\">Business Email</label> <input id=\"mauticform_input_formrequestforanensilodemo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_company_name\">Company Name</label> <input id=\"mauticform_input_formrequestforanensilodemo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formrequestforanensilodemo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_phone_number\">Phone Number</label> <input id=\"mauticform_input_formrequestforanensilodemo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_designation\">Designation</label> <input id=\"mauticform_input_formrequestforanensilodemo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_country\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"country\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanensilodemo_country\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanensilodemo_country\">Country</label> <input id=\"mauticform_input_formrequestforanensilodemo_country\" class=\"mauticform-input\" name=\"mauticform[country]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanensilodemo_submit\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formrequestforanensilodemo_submit\" class=\"mauticform-button btn btn-default\" name=\"mauticform[submit]\" type=\"submit\" value=\"1\">Submit</button></div>\n<input id=\"mauticform_formrequestforanensilodemo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"5\" /> <input id=\"mauticform_formrequestforanensilodemo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formrequestforanensilodemo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formrequestforanensilodemo\" /></div>\n</form></div>','contents/album/5/39-request-for-an-ensilo-demo.jpg','contents/album/5/thumb/39-request-for-an-ensilo-demo-thumb.jpg','','','','','','','','',2,'2016-10-28 09:43:24','2016-10-28 09:43:24',1),(40,7,0,'Employee Monitoring','Pemantauan Karyawan','Employee Monitoring','Pemantauan Karyawan','Employee Monitoring','Pemantauan Karyawan','<h3><strong>Know who&rsquo;s doing what with confidence</strong></h3>\n<p>ObserveIT\'s employee monitoring provides visibility into all user activity within any user session, whether they are performed through remote access or console access. It works on most operating systems spanning all versions of Windows, Linux and UNIX.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring.png\" alt=\"\" /></p>\n<h3>Employee Monitoring: Key Capabilities</h3>\n<p><strong>Complete Visibility of All Employee Activity</strong><br />Know precisely what users are doing, including file movement, clipboard activity and USB usage.</p>\n<p><strong>Maintain Privacy While Ensuring Security</strong><br />Control what&rsquo;s monitored with flexible recording policies to exclude or include specific activity.</p>\n<p><strong>Watch Suspicious Employee Sessions</strong><br />Unique &ldquo;over-the-shoulder&rdquo; view of all employee workstation activities.</p>\n<p><strong>Quickly Determine Employees&rsquo; Intent</strong><br />Distinguish abusive behavior from normal activity (malicious or human error?).</p>\n<p><strong>&ldquo;Google-like&rdquo; Search For Specific Actions</strong><br />Search for particular actions, such as any time a user modifies or deletes a particular file.</p>\n<p><strong>Audit and Report on Employee Activity</strong><br />Ad-hoc or scheduled reports show all actions, with links to video replay for further clarification.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-2.png\" alt=\"\" /></p>\n<h3>Employee Monitoring Software</h3>\n<p>ObserveIT\'s employee monitoring software captures all screen activity for each user action. ObserveIT\'s Employee Monitoring Software extracts metadata on the state of the operating system and the application in use, enabling precise identification of user actions and impact. The captured metadata contains important information such as: the user name, client computer name and IP address, application window title, process name, typed commands, buttons that were clicked, and more.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-3.png\" alt=\"\" /></p>\n<p>ObserveIT is agnostic to protocols &ndash; all local or remote employee monitoring sessions are recorded, both in Windows and Unix/Linux computers. No matter the method of user access, all activity can be searched and replayed in a single unified view.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-4.png\" alt=\"\" /></p>\n<p>ObserveIT\'s Employee Monitoring Software also captures all user activity in an easy-to-use <a href=\"http://www.observeit.com/product/forensic-recording\">video recording</a>, that is smart enough to only record the parts of the screen that were actually changed. Idle time is not recorded (although, if needed, <a href=\"http://www.observeit.com/product/forensic-recording\">continuous recording</a> is also an option). This makes the recorded data much smaller than you would expect. Sessions are recorded in real-time and stored in an SQL Server database, where <a href=\"http://www.observeit.com/product/behavioral-analytics\">behavior is analyzed</a> and indexed. You can use keyword phrases to search for metadata collected in the <a href=\"http://www.observeit.com/product/forensic-recording\">recorded sessions</a>.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-5.png\" alt=\"\" /></p>\n<p>Sessions that are currently active are also monitored, adding the ability to interact in real-time when <a href=\"http://www.observeit.com/product/behavioral-analytics\">abnormal activity is detected</a>, allowing the security or IT team to immediately act and shut down the user&rsquo;s session if there is need to.</p>\n<p><a href=\"http://www.observeit.com/product/user-activity-monitoring\">User activities</a> such as attempts to move files or folders by copying them to the clipboard or by dragging them with the mouse are also recorded. Once such activity is detected, ObserveIT captures the names of the files as well as their source location and size, and places the <a href=\"http://www.observeit.com/product/behavioral-analytics\">behavioral analytics</a> in an easy-to-read and clear metadata entry that is part of the user&rsquo;s session.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-6.png\" alt=\"\" /></p>\n<p><a href=\"http://www.observeit.com/product/behavioral-analytics\">Detection</a> of insertion, or connection of a USB Mass Storage device (including mobile phones, cameras, MP3 players etc.) to the user&rsquo;s computer are also detected. When such a device is inserted, ObserveIT\'s Employee Monitoring Software captures the device&rsquo;s description (i.e. model and manufacturer) and the mapped drive letter associated to it, and adds this information to the user&rsquo;s session.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-7.png\" alt=\"\" /></p>\n<p>ObserveIT has a <a href=\"http://www.observeit.com/product/behavioral-analytics\">real-time alerts</a> capability based on user activity; either use one of our hundreds of <a href=\"http://www.observeit.com/product/behavioral-analytics\">built-in canned alerts</a>, or create your own alert sets. The alerts can be tripped based on user activities, and will immediately send an e-mail notifying the security team of these actions. This information provides a rich, valuable and comprehensive view of what the user was doing on their computer at the time of the alert, plus all the activities following it. To protect user privacy, alerts can be configured so that the <a href=\"http://www.observeit.com/product/forensic-recording\">video recording</a> only starts when an alert is tripped.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-8.png\" alt=\"\" /></p>\n<p>By providing these unique features, ObserveIT provides unparalleled visibility into <a href=\"http://www.observeit.com/product/employee-monitoring\">employee monitoring</a>, allowing the security team to identify the users who are putting your organization at risk. Once identified, administrators and security officers can <a href=\"http://www.observeit.com/product/forensic-recording\">watch suspicious sessions</a> and identify the users that bring the most risk to the company&rsquo;s critical assets.</p>','<h3>Ketahui siapa yang melakukan apa dengan keyakinan</h3>\n<p>Pengawasan pegawai milik ObserveIT\'s menyediakan visibilitas seluruh aktivitas user didalam sesi user apapum, baik saat mereka bekerja melalui akses jarak jauh maupun akses konsol. ObserveIT bekerja pada sebagian besar sistem operasi yang mencakup seluruh versi Windowsm Linux dan UNIX.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring.png\" alt=\"\" /></p>\n<h3>Pengawasan Pegawai: Kunci Kapabilitas</h3>\n<p><strong>Visibilitas Lengkap Seluruh Aktivitas Pegawai</strong>&nbsp;<br />Ketahui secara tepa tapa yang dilakukan oleh user, termasuk pergerakan file, aktivitas clipboard dan penggunaan USB.</p>\n<p><strong>Mempertahankan Privasi Ketika Memastikan Keamanan</strong><br />Kendalikan apa yang diawasi dengan kebijakan perekaman yang fleksibel untuk mengecualikan atau memasukan aktivitas spesifik.</p>\n<p><strong>Mengawasi Sesi Pegawai yang Mencurigakan</strong><br />Pengawasan unik dari keseluruhan aktivitas pegawai.</p>\n<p><strong>Secara Cepat Menentukan Maksud Pegawai</strong><br />Membedakan perilaku merusak dari aktivitas normal (tindakan berbahaya atau human error).</p>\n<p><strong>Pencarian Seperti Google untuk Aksi Spesifik</strong><br />Mencari aksi khusus, misalnya setiap kali user memodifikasi atau menghapus sebuah file tertentu.</p>\n<p><strong>Memeriksa dan Melaporkan Kegiatan Pegawai</strong><br />Laporan yang terjadwal ataupun as-hoc menunjukan keseluruhan aksi, dengan penghubung menuju replay video untuk klarifikasi lebih lanjut.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-2.png\" alt=\"\" /></p>\n<h3>Software Pengawasan Pegawai</h3>\n<p>Software pengawasan pegawai milik ObserveIT menangkap seluruh aktivitas layer untuk setiap aksi user. Software pengawasan pegawai milik ObserveIT mengekstraksi metadata dalam sistem operasi dan aplikasi yang digunakan, membiarkan identifikasi secara tepat untuk aksi user dan akibat yang ditimbulkan. Metadata yang diambil mengandung informasi penting seperti nama user, nama komputer klien, judul jendela aplikasi, nama proses, perintah pengetikan, tombol yang diklik dan banyak lagi.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-3.png\" alt=\"\" /></p>\n<p>ObserveIT agnostik terhadap protokol &ndash; seluruh sesi pengawasan pegawai baik local maupun jarak jauh direkam, di Windows dan komputer Unix/Linux. Tidak peduli metode akses user yang digunakan, seluruh aktivitas dapat dicari dan diulang dalam pengamatan yang menjadi satu. &nbsp;.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-4.png\" alt=\"\" /></p>\n<p>Software pengawasan pegawai milik ObserveIT juga menangkap seluruh aktivitas user dalam <a href=\"http://www.observeit.com/product/forensic-recording\">perekaman video</a> yang mudah untuk digunakan yang cukup cermat untuk hanya merekam bagian layer yang benar-benar diubah. Waktu idle tidak direkam, meskipun bila dibutuhkan <a href=\"http://www.observeit.com/product/forensic-recording\">perekaman secara kontinyu</a> dapat menjadi pilihan. Hal ini membuat data yang terekam menjadi lebih kecil dari ekspektasi Anda. Sesi-sesi yang ada direkam secara real time dan disimpan dalam database SQL Server, dimana perilaku dianalisa dan <a href=\"http://www.observeit.com/product/user-behavior-analytics\">dikategorikan</a>. Anda bisa menggunakan frase keyword &nbsp;untuk mencari metadata yang terkumpul dari <a href=\"http://www.observeit.com/product/forensic-recording\">sesi perekaman</a></p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-5.png\" alt=\"\" /></p>\n<p>Sesi yang sekarang aktif juga diawasi, menambah kemampuan untuk berinteraksi secara rel time ketika <a href=\"http://www.observeit.com/product/behavioral-analytics\">aktivitas abnormal terdeteksi</a>, membolehkan keamanan atau tim IT untuk dengan segera bertindak dan mematikan sesi user bila dibutuhkan</p>\n<p><a href=\"http://www.observeit.com/product/user-activity-monitoring\">Aktivitas user</a> semisal usaha untuk memindahkan file atau folder dengan menyalin dalam clipboard &nbsp;atau menggesernya menggunakan mouse juga direkam. Ketika aktivitas tersebut terdeteksi, ObserveIT menangkap nama dari file dan juga sumber lokasi dan ukuran mereka, dan juga menempatkan <a href=\"http://www.observeit.com/product/behavioral-analytics\">analisis perilaku </a>metadata yang jelas dan mudah dibaca yang menjadi bagian dari sesi user.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-6.png\" alt=\"\" /></p>\n<p><a href=\"http://www.observeit.com/product/behavioral-analytics\">Deteksi</a> dari pencolokan atau koneksi perangkat USB Mass Storage (termasuk telepon genggam, kamera, MP3 player, dsb.) pada komputer user juga terdeteksi. Ketika perangkat tersebut terpasang, Employee Monitoring Software dari ObserveIT menangkap informasi mengenai deskripsi perangkat (semisal model dan manufaktur) dan mapped drive letter yang berhubungan dengan perangkat tersebut, kemudian menambahkan informasi ini kedalam sesi user.<img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-7.png\" alt=\"\" /></p>\n<p>ObserveIT memiliki kemampuan <a href=\"http://www.observeit.com/product/behavioral-analytics\">peringatan real-time</a> yang didasarkan pada aktivitas user; baik menggunakan salah satu dari <a href=\"http://www.observeit.com/product/behavioral-analytics\">ratusan built in canned alerts</a> dari kami maupun membuat set peringatan Anda sendiri. Peringatan dapat dijatuhkan berdasarkan aktivitas user dan akan dengan segera mengirim email yang memberitahu tim keamanan mengenai aksi ini. Informasi ini menyediakan pandangan yang lengkap, berharga dan kaya mengenai apa yang telah dilakukan oleh user pada komputer mereka pada saat peringatan terjadi, ditambah dengan aktivitas yang terjadi setelahnya. Untuk melindungi privasi user, peringatan dapat dikonfigurasi agar <a href=\"http://www.observeit.com/product/behavioral-analytics\">perekaman video</a> hanya mulai ketika peringatan dijatuhkan</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/employee-monitoring-8.png\" alt=\"\" /></p>\n<p>Dengan menyediakan fitur unik ini, ObserveIT menyediakan visibilitas yang tidak tertandingi untuk<a href=\"http://www.observeit.com/product/employee-monitoring\"> pengawasan pegawa</a>i, membiarkan tim keamanan mengidentifikasi user yang menempatkan perusahaan Anda dalam resiko. Sekali teridentifikasi, administrator dan pekerja keamanan dapat <a href=\"http://www.observeit.com/product/forensic-recording\">melihat sesi yang mencurigakan</a> dan mengidentifikasi user yang membawa reiko terbesar bagi aset penting perusahaan.</p>','contents/album/7/40-employee-monitoring.jpg','contents/album/7/thumb/40-employee-monitoring-thumb.jpg','','','','','','','','',2,'2016-10-28 14:05:06','2016-10-28 14:05:06',1),(41,7,0,'Detection - User Behavior Analytics','Deteksi- Analisis Perilaku User','Detection - User Behavior Analytics','Deteksi- Analisis Perilaku User','Detection - User Behavior Analytics','Deteksi- Analisis Perilaku User','<h3><strong>Detection - Continuous Risk Monitoring</strong></h3>\n<p><strong>See who&rsquo;s putting you at risk in minutes</strong></p>\n<p>ObserveIT\'s risk monitoring constantly performs real-time analysis of exactly what the user does during the session, exposing suspicious user actions, unauthorized behavior and malicious activity.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics.png\" alt=\"\" /></p>\n<h3><strong>Continuous Risk Monitoring: Key Capabilities</strong></h3>\n<p><strong>Immediate Detection of Insider Threats</strong></p>\n<p>Identify thousands of known risky behaviors out-of-the-box via purpose-built packaged analytics.</p>\n<p><strong>Real-time Alerts of Suspicious Behavior</strong></p>\n<p>Proactive, real-time detection of suspicious user activity for instant response.</p>\n<p><strong>Change User Behavior Across Your Enterprise</strong></p>\n<p>Educate employees of high-risk activities in real-time and in the context of their actions.</p>\n<p><strong>&ldquo;Stack Ranked&rdquo; View of Your Riskiest Users</strong></p>\n<p>Prioritized list of the users who are actually putting your business at risk</p>\n<p><strong>See the Risk Insiders Pose to your Company</strong></p>\n<p>Summary of users\' high risk activity and alerts over time.</p>\n<p><strong>Root Case Analysis of Every Anomaly</strong></p>\n<p>Detailed audit trail that shows precisely who did what in both video and transcript format.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics2.png\" alt=\"\" /></p>\n<h3><strong>Detection - Continuous Risk Monitoring</strong></h3>\n<p>ObserveIT monitors and indexes all this data alongside with detailed metadata of what is seen on the screen, allowing full searches within the database. This unique capability is paired with a library of canned alert rules that work for both Windows and Unix/Linux based operating systems that can be applied as they are, or customized in order to build your own alert rules. This provides built-in capacity to perform detection of risky user behavior such as running specific applications, connecting to specific network resources, running specific commands and more.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics3.png\" alt=\"\" /></p>\n<p>By using ObserveIT&rsquo;s unique in-application detection system, security teams are able to alerted on, and identify users that are accessing applications and performing various actions inside them, such as viewing critical customer information, exporting financial data records, examining patient data and more. These alerts are also exposed as real-time textual log files, easily integrated with existing SIEM (Security Information and Event Management) applications. This capability lets you track application usage for data exposure and extraction &ndash; a major part in the overall risk users create for the organization.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics4.png\" alt=\"\" /></p>\n<p>All this information is aggregated and calculated in real-time by the ObserveIT analytics service, calculating of a user&rsquo;s risk to the organization, and presented to the security team in form of a User Risk Dashboard, allowing the examination of the actions of these risky users, the applications they accessed, and the alerts that were triggered against them. The dashboard links directly to the Web Management Console from where you can further inspect and examine risky users and their actions. The risky user list can be filtered and sorted according to the number of out-of-policy notifications and behavior trends &ndash; providing an easy way to identify those users who constantly violate security policies and those who keep ignoring them despite being warned or even blocked.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics5.png\" alt=\"\" /></p>\n<p>This allows security teams to uniquely understand risk at an application field-level and detect abnormal usage, and identify risk trends. You can run dynamic reports showing all sensitive or regulated data elements being viewed by users in every business application involved.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics6.png\" alt=\"\" /></p>\n<p>User Behavior Analytics 4 By employing user behavior analytics and risk scoring, security teams can focus on the users who are actually putting the organization at risk, identify those users who constantly violating security policies and those who keep ignoring them despite being warned or even blocked, and focus on the risky users, reducing the associated background noise.</p>','<h3>Deteksi &ndash; Pengawasan Resiko Berkelanjutan</h3>\n<p><strong>Lihat siapa yang menempatkan Anda pada resiko dalam hitungan menit</strong></p>\n<p>Pengawasan resiko milik ObserveIT secaara konstan melakukan analisa real time mengenai apa yang dilakukan oleh user dalam sesi, mengekspos aksi user yang mencurigakan, perilaku yang tidak terotorisasi dan aktivitas berbahaya.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics.png\" alt=\"\" /></p>\n<h3>Pengawasan Resiko Berkelanjutan: Kunci Kapabilitas</h3>\n<p><strong>Deteksi Langsung Insider Threats</strong></p>\n<p>Mengidentifikasi ribuan perilaku beresiko yang diketahui out-of-the-box dengan menggunakan paket analisa yang dibuat untuk tujuan tertentu.</p>\n<p><strong>eringatan Real Time untuk Perilaku Mencurigakan</strong></p>\n<p>Deteksi yang real time dan proaktif mengenai aktivitas user yang mencurigakan untuk respon instan.</p>\n<p><strong>Mengubah Perilaku User dalam Perusahaan Anda</strong></p>\n<p>Mendidik pegawai dengan aktivitas beresiko tinggi secara real time dan dalam konteks aksi mereka. Educate employees of high-risk activities in real-time and in the context of their actions.</p>\n<p><strong>&ldquo;Stack Ranked&rdquo; View untuk &nbsp;User Anda yang Paling Beresiko</strong></p>\n<p>Memprioritaskan daftar user yang benar-benar menaruh bisnis Anda dalam resiko.</p>\n<p><strong>Melihat Risk Insiders Pose pada Perusahaan Anda</strong></p>\n<p>Ringkasan dari aktibitas beresiko tinggi user dan memperingatkan mereka tiap saat.</p>\n<p><strong>Root Case Analysis untuk Setiap Anomali</strong></p>\n<p>Pemeriksaan secara detil yang menunjukan secara tepat siapa yang melakukan apa dalam format video dan juga transkrip.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics2.png\" alt=\"\" /></p>\n<h3>Deteksi &ndash; Pengawasan Resiko Berkelanjutan</h3>\n<p>ObserveIT mengawasi dan mengkategorikan semua data bersama dengan metadata yang detil dari apa yang terlihat di layer, memungkinkan pencarian penuh di dalam datavase. Kemampuan unik ini dipasangkan dengan kumpulan peraturan peringatan tersimpan yang dapat digunakan baik pada sistem Windows maupun Unix/Linux yang dapat diaplikasikan seadanya atau disesuaikan untuk membangun peraturan peringatan milik Anda sendiri. Ini menyediakan kemampuan bawaan untuk melakukan deteksi perilaku user sepeti menjalankan aplikasi spesifik, menghubungkan pada sumber jaringan spesifik, menjalankan perintah spesifik dan lain-lain.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics3.png\" alt=\"\" /></p>\n<p>Dengan menggunakan sistem deteksi dalam aplikasi yang unik milik ObserveIT, tim keamanan bisa diperingatkan serta mengidentifikasi user yang mengakses aplikasi dan menjalankan beragam aksi didalamnya, semisal melihat informasi user yang kritikal, mengkspor catatan data finansial, memeriksa data pasien, dan lain-lain. Peringatan ini juga terekspos sebagai file log tekstual yang real time, dapat dengan mudah digabungkan dengan aplikasi SIEM (Security Information and Event Management) yang ada. Kemampuan ini membuat Anda dapat melacak penggunaan aplikasi untuk eksposur dan ekstraksi data &ndash; bagian terbesar dari keseluruhan resiko yang dibuat user bagi perusahaan.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics4.png\" alt=\"\" /></p>\n<p>Seluruh informasi ini dikumpulkan dan dihitung secara real time oleh layanan analisis ObserveIT, kalkulasi dari resiko user terhadap perusahaan, dan diberikan pada tim keamanan dalam bentuk User Risk Dashboard, membuat adanya pemeriksaan pada aksi dari user ini, aplikasi yang mereka akses dan peringatan yang dipicu untuk melawan mereka. Dasbor terhubung secara langsung pada Web Management Console dari tempat dimana Anda dapat secara lebih lanjut menginspeksi dan memeriksa user beresiko dan aksi mereka. Daftar user beresiko dapat disaring dan diatur berdasarkan jumlah dari pemberitahuan pelanggaran dan tren perilaku &ndash; menyediakan jalan yang mudah untuk mengidentifikasi user yang secara konstan melanggar kebijakan keamanan dan mereka yang tetap tidak mempedulikan meskipun telah diperingatkan atau bahkan telah diblokir.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics5.png\" alt=\"\" /></p>\n<p>Ini membuat tim keamanna dapat secara unik memahami resiko pada field-level aplikasi dan mendeteksi penggunaan abnormal, serta mengidentifikasi tren resiko. Anda dapat menjalankan laporan dinamis yang memperlihatkan seluruh elemen data sensitif atau terregulasi yang dilihat oleh user dalam setiap aplikasi bisnis yang ikut serta.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/analytics6.png\" alt=\"\" /></p>\n<p>Analisis Perilaku User 4 Dengan menggunakan analisis perilaku user dan skoring resiko, tim keamanan dapat focus pada user yang benar-benar menaruh perusahaan pada resiko, mengidentfiksi mereka yang secara konstan melanggar kebijakan keamanan dan mereka yang terus tidak peduli meskipun telah diperingatkan atau bahkan diblokir, serta fokus pada user yang beresiko, mengurangi background noise yang terasosiasi.&nbsp;</p>','contents/album/7/41-detection-user-behavior-analytics.jpg','contents/album/7/thumb/41-detection-user-behavior-analytics-thumb.jpg','','','','','','','','',2,'2016-10-28 14:28:41','2016-10-28 14:28:41',1),(42,7,0,'Prevention - Policy Enforcement','Pencegahan – Penguatan Kebijakan','Prevention - Policy Enforcement ','Pencegahan – Penguatan Kebijakan','Prevention - Policy Enforcement','Pencegahan – Penguatan Kebijakan','<h3><strong>Prevention - Policy Enforcement</strong></h3>\n<p><strong>Change behavior across enterprise</strong></p>\n<p>ObserveIT mitigates insider risks by adding corporate information security policy enforcement capabilities to the security team&rsquo;s arsenal of effective countermeasures.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement1.png\" alt=\"\" /></p>\n<p>Instant Trial Request Demo</p>\n<h3><strong>Policy Enforcement: Key Capabilities </strong></h3>\n<p><strong>Educate Employees with Policy Notifications</strong></p>\n<p>Increase security awareness &ndash; message automatically disappears after a few seconds.</p>\n<p><strong>Be Transparent with Recording Notification</strong></p>\n<p>Fully customizable (for example, &ldquo;Please note that all activity on this machine is recorded.&rdquo;).</p>\n<p><strong>End User Messaging and Session Locking</strong></p>\n<p>Interact with end users by sending messages and locking suspicious session.</p>\n<p><strong>Enforce Security Policies with Blocking Messages</strong></p>\n<p>Cut security incidents in half &ndash; force users to review and acknowledge company policy.</p>\n<p><strong>Tie Generic \'admin\' Login to Named Users</strong></p>\n<p>Identifies shared-account users (\'admin\') and detects identity theft.</p>\n<p><strong>Prevent Unauthorized and Malicious Activity</strong></p>\n<p>Make it hard for malicious actors to operate with flexible prevention rules.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement2.png\" alt=\"\" /></p>\n<h3><strong>Prevention</strong></h3>\n<p>By using the flexibility of ObserveIT Activity Alert Rules, the security officer can define company policies and security regulations, and enforce them by posting a specific, detailed notification message in real-time to any user violating these rules. The notification message can be triggered each time the rule is violated, or alternatively only once per each user session.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement3.png\" alt=\"\" /></p>\n<p>There are 2 types of policy notifications available:</p>\n<p>Warning Notifications that automatically disappear after a few seconds, so there is no impact on end users&rsquo; productivity. If needed, the notification can be branded with the company&rsquo;s logo. Once the notification is displayed, the user can click on a link to view the policy/security requirements directly from the message itself and have the option to provide a comment explaining their misbehavior or to acknowledge the message</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement4.png\" alt=\"\" /></p>\n<p>Blocking Messages that block users from whatever they were doing &ndash; forcing them to review the message, acknowledge it, and asking them to provide a comment explaining their actions (optional) before they can continue with their work.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement5.png\" alt=\"\" /></p>\n<p>In addition, ObserveIT is able to stop unauthorized commands from being executed using prevention rules, based on user identity, command names combined with specific command line arguments and switches and computer details. When a Policy Enforcement rule is triggered, the end user gets the standard operating system &ldquo;Permissions denied&rdquo; message together with an optional message configured by security administrators.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement6.png\" alt=\"\" /></p>\n<p>Because anytime an alert is tripped by a user not complying with these security policies is audited by the system, the security team can investigate these events and categorize them, for example, as needing further review, or as non-issues. Once events are raised by a user, they are also calculated on their accumulative risk score, which in turn lets the security team identify which users are causing major risk to the company by repeatedly failing to comply with some or all security policies.</p>','<h3>Pencegahan &ndash; Penguatan Kebijakan</h3>\n<p><strong>Mengubah perilaku dalamperusahaan</strong></p>\n<p>ObserveIT menangani resiko yang berasal dari orang dalam dengan cara menambah kemampuan penguatan kebijakan keamanan informasi korporat bagi gudang senjata penanggulangan efektif milik tim keamanan.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement1.png\" alt=\"\" /></p>\n<p>Demo Permintaan Trial Instan</p>\n<h3><strong>Penguatan Kebijakan: Kunci Kapabilitas</strong></h3>\n<p><strong>Mengedukasi Pegawau dengan Pemberitahuan Kebijakan</strong></p>\n<p>Mengingkatkan kesadaran sekuritas &ndash; pesan secara otomatis menghilang setelah beberapa detik.</p>\n<p><strong>Jadi Transparan dengan Notifikasi Perekaman</strong></p>\n<p>Dapat dikustomisasi secara penuh ( misalnya, &ldquo;Tolong perhatikan bahwa seluruh aktivitas dalam mesin ini direkam.&rdquo;).</p>\n<p><strong>End User Messaging dan Penguncian Sesi</strong></p>\n<p>Berinteraksi dengan end user dengan cara mengirim pesan dan mengunci sesi yang mencurigakan.</p>\n<p><strong>Memperkuat Kebijakan Keamanan dengan Memblokir Pesan</strong></p>\n<p>Memotong setengah dari insiden keamanan &ndash; memaksa user untuk meninjau dan mengakui kebijakan perusahaan.</p>\n<p><strong>Mengikat Login &lsquo;admin&rsquo; generik pada User yang Dinamai</strong></p>\n<p>Mengidentifikasi user dengan akun ang terbagi (&lsquo;admin&rsquo;) dan mendeteksi pencurian identitas.</p>\n<p><strong>Pencegahan Aktivitas Berbahaya dan Tidak Terotorisasi</strong></p>\n<p>Mempersulit pihak yang membahayakan untuk beroperasi dengan peraturan pencegahan yang fleksibel.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement2.png\" alt=\"\" /></p>\n<h3>Pencegahan</h3>\n<p>Dengan menggunakan fleksibilitas dari Peraturan Peringatan Aktivitas ObserveITm pegawai keamanan dapat mendefinisikan kebijakan perusahaan dan peraturan keamanan, kemudian menguatkannya dengan memposting pesan pemberitahuan yang detil dan spesifik secara real time kepada user yang melanggar aturan ini. Pesan pemberitahuan dapat dipicu setiap peraturan dilanggar atau secara alternative hanya sekali setiap sesi user.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement3.png\" alt=\"\" /></p>\n<p>TTerdapat 2 tipe notifikasi kebijakan yang tersedia:</p>\n<p>Notifikasi Peringatan yang secara otomatis menghilang setelah beberapa detik, sehingga tidak ada akibat pada produktivitas end user. Jika diperlukan, notifikasi dapat ditandai dengan logo perusahaan. Setiap kali notifikasi dimunculkan, user dapat melakukan klik pada link untuk melihat persyaratan keamanan/kebijakan secara langsung dari pesan tersebut dan memiliki opsi untuk menyediakan komentar yang menjelaskan perilaku tidak tepat mereka atau untuk mengakui pesan tersebut.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement4.png\" alt=\"\" /></p>\n<p>Pesan Pemblokiran yang memblokir user dari apapun yang mereka lakukan &ndash; memaksa mereka untuk meninjau pesan, mengakuinya, dan meminta mereka untuk menyediakan komentar untuk menjelaskan aksi mereka (optional) sebelum merka dapat melanjutkan pekerjaan mereka.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement5.png\" alt=\"\" /></p>\n<p>Sebagai tambahan ObserveIT dapat menghentikan perintah yang tidak terotorisasi untuk dieksekusi menggunakan peraturan pencegahan, yang didasari pada identitas user, nama perintah digabung dengan argument garis perintah spesifik dan switcher dan detil komputer. Ketika peraturan Penguatan Kebijakan dipicu, end user mendapatkan sistem operasi standar pesan &ldquo;Ijin ditolak&rdquo; bersama dengan pesan opsional yang fiatur oleh administrator keamanan.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enforcement6.png\" alt=\"\" /></p>\n<p>Karena setiap saat peringatan dijatuhkan oleh user yang tidak mematuhi kebijakan keamanan ini diperiksa oleh sistem, tim keamanan dapat menginvestigasi kejadian ini dan mengkategorikan mereka, sebagai contohnya, bagian yang butuh tunjauan lanjut atau bagian yang tidak menjadi masalah. Ketika kejadian dilakukan oleh userm mereka juga mengkalkulasikan skor resiko akumulatif mereka, dimana pada akhirnya membuat tim keamanan dapat mengidentifikasi user yang mana yang menyebabkan resiko besar bagi perusahaat dengan secara berulang kali gagal untuk mematuhi beberapa atau seluruh kebijakan keamanan.</p>\n<p>&nbsp;</p>','contents/album/7/42-prevention-policy-enforcement.jpg','contents/album/7/thumb/42-prevention-policy-enforcement-thumb.jpg','','','','','','','','',2,'2016-10-28 14:19:27','2016-10-28 14:19:27',1),(43,7,0,'Investigation - Digital Forensics','Investigasi - Forensik Digital','Investigation - Digital Forensics','Investigasi - Forensik Digital','Investigation - Digital Forensics','Investigasi - Forensik Digital','<h3><strong>Investigation - Digital Forensics</strong></h3>\n<p>Determine intent of high risk activity</p>\n<p>ObserveIT initiates forensic recording for high-risk activity, which makes it easy to watch exactly what users are doing and reduce investigations to minutes instead of months.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/7_-_Forensic_Recordings_0.png\" alt=\"\" /></p>\n<h3>Digital Forensics: Key Capabilities</h3>\n<p><strong>Video Recording of All User Activity</strong></p>\n<p>Records all user interface actions that occur when someone is accessing applications.</p>\n<p><strong>Generates Textual Audit Logs for Every App</strong></p>\n<p>All on-screen activity is transcribed into an easy-to-read list of exactly what the user did.</p>\n<p><strong>Advanced Keylogging of All On-Screen Activity</strong></p>\n<p>Record every key press including keyboard shortcuts, auto-complete and Windows clipboard.</p>\n<p><strong>Collects Irrefutable Forensic Evidence</strong></p>\n<p>Precise forensic evidence that shows visually exactly what the user did.</p>\n<p><strong>Document and Share Suspicious Sessions</strong></p>\n<p>Export entire recordings or selected slides to HTML file or the textual transcript to Excel.</p>\n<p><strong>One-click SIEM Integrations</strong></p>\n<p>Simple tie-in of insider threat intelligence for any SIEM (HP ArcSight, IBM QRadar, Splunk, etc.).</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/bbbbbbb.png\" alt=\"\" /></p>\n<p><strong>Investigation - Digital Forensics</strong></p>\n<p>With ObserveIT\'s digital forensics, you can view live sessions, as they unfold, monitoring the user&rsquo;s actions as it is performed in real-time, and being able to understand the user&rsquo;s intent, interact with users who are performing out-of-scope activity, and immediately lock sessions.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-11.png\" alt=\"\" /></p>\n<p>While this information is crucial for real time investigations of what is going on at any given moment, because many security breaches are actually rolling events that evolve with time (vs. one-time incidents), having these recordings stored in an easy to use searchable format it also provides a valuable tool for forensic investigations, allowing security teams to perform data breach investigations spanning days, weeks and even months.</p>\n<p>&nbsp;</p>\n<p>ObserveIT&rsquo;s unique capability to identify usage of shared accounts, adding the ability to know exactly who has used these accounts, reduces confusion and eliminates a lot of the finger pointing that may be part of a regular forensic investigation. This way, if a user used the &ldquo;administrator&rdquo; or &ldquo;root&rdquo; account for example, you know exactly who that user was.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-31.png\" alt=\"\" /></p>\n<p>Using ObserveIT&rsquo;s extensive search capabilities, security teams can perform detailed analysis of recorded user activities and link them together. For example, a user trying to obtain administrative permissions, later running some probing commands against a server to see what share are accessible, then using a remote control tool to obtain access to a remote server, and using Putty to connect to the remote server.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-4.png\" alt=\"\" /></p>\n<p>ObserveIT\'s key logger captures every key press and command that was typed by the user in the recorded sessions. When needed for forensic investigations, any portion of the recording is directly accessible via keyword search in the ObserveIT Web Console. You can jump directly to relevant portions of recordings by searching for particular activities based on text entries, launched programs, and opened windows, system commands executed, and so on.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-5.png\" alt=\"\" /></p>\n<p>ObserveIT can be configured to digitally sign and encrypt all data (data in transit, data at rest), so it provides irrefutable forensic evidences that could be used for further inquiry and, if needed, legal actions.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-6.png\" alt=\"\" /></p>','<h3>Investigasi &ndash; Forensik Digital</h3>\n<p>Menentukan maksud dari aktivitas beresiko tinggi.<br />ObserveIT memulai perekaman forensik untuk aktivitas beresiko tinggi yang membuatnya mudah untuk melihat apa yang dilakukan user dan mengurangi jangka waktu investigasi dari hitungan bulan menjadi hitungan menit.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/7_-_Forensic_Recordings_0.png\" alt=\"\" /></p>\n<h3>Forensik Digital: Kapabilitas Kunci</h3>\n<p><strong>Perekaman Video dari Seluruh Aktivitas User</strong></p>\n<p>Merekam seluruh aksi user interface yang berlangsung ketika sesorang mengakses aplikasi.</p>\n<p><strong>Menciptakan Log Pemeriksaan Tekstual untuk Setiap Aplikasi</strong></p>\n<p>Seluruh aktivitas dalam layar ditranskripsikan ke daftar yang mudah dibaca mengenai apa yang telah dilakukan oleh user.</p>\n<p><strong>Keylogging Tingkat Lanjut dari Seluruh Aktivitas On-Screen</strong></p>\n<p>Merekap setiap pencetan termasuk shortcut keyboard, auto-complete dan Windows clipboard.</p>\n<p><strong>Mengumpulkan Bukti Forensik yang Tak Terbantahkan</strong></p>\n<p>BuktI forensik tepat yang menunjukansecara visual apa yang dilakukan oleh user.</p>\n<p><strong>Mendokumentasikan dan Membagikan Sesi yang Mencurigakan</strong></p>\n<p>Mengekspor keseluruhan rekaman atau slide yang diseleksi untuk file HTML atau transkrip tekstual bagi Excel.</p>\n<p><strong>Integrasi SIEM Dalam Sekali Klik</strong></p>\n<p>Perlawanan sederhana pada intelejen insider threat untuk SIEM (HP ArcSight, IBM QRadar, Splunk, etc.).</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/bbbbbbb.png\" alt=\"\" /></p>\n<p><strong>Investigasi &ndash; Forensik Digital</strong></p>\n<p>Dengan forensik digital ObserveIT Anda dapat melihat sesi yang berlangsung, saat mereka terungkap, mengawasi aksi user saat ia beraksi secara real time, dan dapat memahami maksud user, berinteraksi dengan user yang melakukan aktivitas diluar batas dan sengan segera mengunci sesi.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-11.png\" alt=\"\" /></p>\n<p>Ketikainformasi ini penting untuk investigasi secara real time mengenai apa yang terjadi pada momen tersebut, karena banyak pelanggaran keamanan sebenarnya adalah kejadian berlangsung yang berkembang dengan waktu (vs. insiden sekali waktu), memiliki rekaman ini tersimpan dalam format yang dapat dicari dan mudah digunakan, ini juga menyediakan alat berharga untuk investigasi forensik, membuat tim keamanan dapat melakukan investigasi pelanggaran data yang mencakup harian, mingguan, dan bahkan bulanan.</p>\n<p>&nbsp;</p>\n<p>Kemampuan unik ObserveIT untuk mengidentifikasi penggunaan akun yang dibagim menambah kemampuan untuk mengetahui secara jelas siapa yang telah menggunakan akun ini, mengurangi kebingungan dan menghilangkan banyak tindakan menyalahkan yang dapat menjadi bagian dari investigasi forensik reguler. &nbsp;Dengan caea ini, apabila user menggunakan administrator atau akun &ldquo;root&rdquo; sebagai contohnya, Anda tahu secara jelas siapakah user tersebut.Kemampuan unik ObserveIT untuk mengidentifikasi penggunaan akun yang dibagim menambah kemampuan untuk mengetahui secara jelas siapa yang telah menggunakan akun ini, mengurangi kebingungan dan menghilangkan banyak tindakan menyalahkan yang dapat menjadi bagian dari investigasi forensik reguler. &nbsp;Dengan caea ini, apabila user menggunakan administrator atau akun &ldquo;root&rdquo; sebagai contohnya, Anda tahu secara jelas siapakah user tersebut.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-31.png\" alt=\"\" /></p>\n<p>Dengan menggunakan kemampuan pencarian ekstensif ObserveIT, tim keamanan dapat melakukan analisis detil dari aktivitas user yang terekam dan menghubungkannya jadi satu. Sebagai contohnya, seorang user mencoba untuk mendapatkan ijin administrative, kemudian menjalankan beberapa perintah menyelidiki terhadap server untuk melihat pembagian mana yang dapat diakses, selanjutnya menggunakan alat kendali jarak jauh untuk mendapatkan akses pada server jarang jauhm dan menggunakan Putty untuk terkoneksi dengan server jarak jauh.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-4.png\" alt=\"\" /></p>\n<p>Key logger ObserveIT menangkap setiap pencetan dan perintah tombol yang diketik oleh user dalam sesi yang terekam. Ketika diperlukan untuk investgasi forensik, semua porsi dari rekaman dapat diakses secara langsung melakui pencaran keyword dalam ObserveIT Web Console. Anda dapat melompat secara langsung pada porsi relevan dari rekaman dengan mencari aktivitas tertentu berdasarkan pada entri teks, program yang dipakai, dan jendela yang dibuka, perintah sistem yang dijalankan, dan lain sebagainya.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-5.png\" alt=\"\" /></p>\n<p>ObserveIT dapat dikonfigurasi untuk secara digital menandai dan mengenkripsi seluruh data &nbsp;(data in transit, data at rest), sehingga ini menyediakan bukti forensik yang tidak terbantahkan yang dapat digunakan untuk pertanyaan lebih lanjut dan, bila diperlukan, aksi legal.</p>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/forensic-recording-6.png\" alt=\"\" /></p>','contents/album/7/43-investigation-digital-forensics.jpg','contents/album/7/thumb/43-investigation-digital-forensics-thumb.jpg','','','','','','','','',2,'2016-10-28 14:26:38','2016-10-28 14:26:38',1),(44,7,0,'Request for an OIT Demo','Permintaan Demo OIT','Request for an OIT Demo','Permintaan Demo OIT','Request for an OIT Demo','Permintaan Demo OIT','<h3>The World&rsquo;s #1 Insider Threat Software</h3>\n<p>ObserveIT enables you to reduce the risk of insider threats and ensure employees stay compliant with company policy.</p>\n<ul class=\"list-style\">\n<li>Are employees abusing privileges?</li>\n<li>Are partners misusing corporate resources?</li>\n<li>Are employees accidentally leaking data?</li>\n<li>Are employees taking data when they leave?</li>\n<li>Is fraud going unnoticed?</li>\n<li>Are employees bypassing security?</li>\n</ul>\n<div id=\"mauticform_wrapper_formrequestforanoitdemo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formrequestforanoitdemo\" action=\"https://arimtech.mautic.net/form/submit?formId=6\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formrequestforanoitdemo\">\n<div id=\"mauticform_formrequestforanoitdemo_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formrequestforanoitdemo_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formrequestforanoitdemo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_full_name\">Full Name</label> <input id=\"mauticform_input_formrequestforanoitdemo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formrequestforanoitdemo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_business_email\">Business Email</label> <input id=\"mauticform_input_formrequestforanoitdemo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_company_name\">Company Name</label> <input id=\"mauticform_input_formrequestforanoitdemo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formrequestforanoitdemo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_phone_number\">Phone Number</label> <input id=\"mauticform_input_formrequestforanoitdemo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_designation\">Designation</label> <input id=\"mauticform_input_formrequestforanoitdemo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_country\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"country\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_country\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_country\">Country</label> <input id=\"mauticform_input_formrequestforanoitdemo_country\" class=\"mauticform-input\" name=\"mauticform[country]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_submit\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formrequestforanoitdemo_submit\" class=\"mauticform-button btn btn-default\" name=\"mauticform[submit]\" type=\"submit\" value=\"1\">Submit</button></div>\n<input id=\"mauticform_formrequestforanoitdemo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"6\" /> <input id=\"mauticform_formrequestforanoitdemo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formrequestforanoitdemo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formrequestforanoitdemo\" /></div>\n</form></div>','<h3>Insider Threat Software Nomor 1 di Dunia</h3>\n<p>ObserveIT membuat Anda dapat mengurangi resiko insider threat dan memastikan pegawai mematuhi kebijakan perusahaan.</p>\n<ul>\n<li>Apakah pegawai menyalahgunakan hak istimewa?</li>\n<li>Apakah partner menyalahgunakan sumber korporat?</li>\n<li>Apakah pegawai secara tidak sengaja membocorkan data?</li>\n<li>Apakah pegawai mengambil data ketika mereka pergi?</li>\n<li>Apakah penipuan berlangsung tanpa diketahui?</li>\n<li>Apakah pegawai melanggar keamanan?</li>\n</ul>\n<div id=\"mauticform_wrapper_formrequestforanoitdemo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formrequestforanoitdemo\" action=\"https://arimtech.mautic.net/form/submit?formId=6\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formrequestforanoitdemo\">\n<div id=\"mauticform_formrequestforanoitdemo_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formrequestforanoitdemo_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formrequestforanoitdemo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_full_name\">Full Name</label> <input id=\"mauticform_input_formrequestforanoitdemo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formrequestforanoitdemo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_business_email\">Business Email</label> <input id=\"mauticform_input_formrequestforanoitdemo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_company_name\">Company Name</label> <input id=\"mauticform_input_formrequestforanoitdemo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formrequestforanoitdemo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_phone_number\">Phone Number</label> <input id=\"mauticform_input_formrequestforanoitdemo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_designation\">Designation</label> <input id=\"mauticform_input_formrequestforanoitdemo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_country\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"country\" data-validation-type=\"text\"><label id=\"mauticform_label_formrequestforanoitdemo_country\" class=\"mauticform-label\" for=\"mauticform_input_formrequestforanoitdemo_country\">Country</label> <input id=\"mauticform_input_formrequestforanoitdemo_country\" class=\"mauticform-input\" name=\"mauticform[country]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formrequestforanoitdemo_submit\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formrequestforanoitdemo_submit\" class=\"mauticform-button btn btn-default\" name=\"mauticform[submit]\" type=\"submit\" value=\"1\">Submit</button></div>\n<input id=\"mauticform_formrequestforanoitdemo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"6\" /> <input id=\"mauticform_formrequestforanoitdemo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formrequestforanoitdemo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formrequestforanoitdemo\" /></div>\n</form></div>','contents/album/7/44-request-for-an-oit-demo.jpg','contents/album/7/thumb/44-request-for-an-oit-demo-thumb.jpg','','','','','','','','',2,'2016-10-28 14:30:23','2016-10-28 14:30:23',1),(45,10,0,'Information Security Maturity Assessment (ISMA)','Information Security Maturity Assessment (ISMA)','Information Security Maturity Assessment (ISMA)','Information Security Maturity Assessment (ISMA)','Info Security Roadmap - objective platform to review existing security programs in people, process and technologies','Roadmap untuk Inf Security - platfotm yang objektif untuk meninjau program keamanan yang sudah ada yang terkait dengan perorangan, proses, dan teknologi','<p>Leverage on the proven Forrester Information Security Maturity Model</p>\n<ul class=\"list-style\">\n<li>Help business and system owners better articulate their functions and responsibilities</li>\n<li>Identify gaps in security controls so as to develop remediation plan</li>\n<li>Demonstrate improvement in specific security functions and across organizations through objective metrics</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/ISMA1.jpg\" alt=\"\" /></p>\n<p>{{brochure-css-detail}}</p>','<p>Memanfaatkan Information Security Maturity Model milik Forrester yang Telah Terbukti</p>\n<ul>\n<li>Membantu bisnis dan pemilik sistem untuk memahami fungsi dan kewajiban masing-masing dengan lebih baik &nbsp;&nbsp;</li>\n<li>Mengidentifikasi perbedaan dalam control keamanan agar dapat mengembangkan rencana&nbsp;remediasi</li>\n<li>Mendemonstrasikan perbaikan dalam fungsi keamanan spesifik dan juga seluruh perusahaan melalui metrik yang objektif</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/ISMA1.jpg\" alt=\"\" /></p>\n<p>{{brochure-css-detail}}</p>','contents/album/10/45-information-security-maturity-assessment-isma.jpg','contents/album/10/thumb/45-information-security-maturity-assessment-isma-thumb.jpg','','','','','','','','',2,'2016-10-28 14:42:47','2016-10-28 14:42:47',1),(46,10,0,'Network Architecture Assessment','Penlilaian Arsitektur Jaringan','Network Architecture Assessment','Penlilaian Arsitektur Jaringan','Validate and verify your organization overall network design from a security perspective, including DMZ placement, network segmentation, Internet exposure, and hardening techniques','Memvalidasi dan memverifikasi keseluruhan desain dari infrastruktur jaringan di perusahaan Anda yang dilihat dari perspektif keamanan, termasuk penempatan DMZ, segementasi jaringan, eksposur ke arah internet, dan teknik hardening','<ul class=\"list-style\">\n<li>Validate and verify your organization overall network design from a security perspective, including DMZ placement, network segmentation, Internet exposure, and hardening techniques</li>\n<li>Assess the risk of hackers compromising your critical business applications and data</li>\n<li>Provide a &ldquo;sanity check&rdquo; prior to implementation</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-architecture-assessment.jpg\" alt=\"\" /></p>\n<p>{{brochure-css-detail}}</p>','<ul>\n<li>Validasi dan verifikasi keseluruhan desain jaringan perusahaan Anda mulai dari perspektif keamanan, termasuk penempatan DMZ, segmentasi jaringan, eksposur internet dan teknik pengerasan.</li>\n<li>Menilai resiko hacker mengambil alih aplikasi dan data bisnis penting milik Anda.</li>\n<li>Menyediakan &ldquo;sanity check&rdquo; sebelum implementasi</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/network-architecture-assessment.jpg\" alt=\"\" /></p>\n<p>{{brochure-css-detail}}</p>','contents/album/10/46-network-architecture-assessment.jpg','contents/album/10/thumb/46-network-architecture-assessment-thumb.jpg','','','','','','','','',2,'2016-10-28 14:43:12','2016-10-28 14:43:12',1),(47,10,0,'Firewall Security Assessment','Penilaian Keamanan Firewall',' Firewall Security Assessment','Penilaian Keamanan Firewall','Audit your first-line-of-defense to validate that the firewalls rules and configurations are effective against cyber threats','Memeriksa pertahanan pertama Anda untuk memvalidasi bahwa setiap pengaturan dan konfigurasi firewall sudah efektif untuk menghadapi ancaman dunia maya','<ul class=\"list-style\">\n<li>Audit your first-line-of-defense to validate that the firewalls rules and configurations are effective against cyber threats</li>\n<li>Ascertain that firewall rules are aligned to business and IT security policies</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/firewall.jpg\" alt=\"\" /></p>\n<h3>Firewall Documentation and Process:</h3>\n<ul class=\"list-style\">\n<li>Review of the security access control model that denies access by default, such that explicit access permissions must be specified.</li>\n<li>Review of ruleset comments to ensure each provides business justification for the defined rules.</li>\n<li>Review the configuration file for the identification and protection of all network segments.</li>\n<li>Validate the implementation of open ports and services are required for operations.</li>\n<li>Review the security monitoring process and its ability to detect and alert for attempts at or successful unauthorized access where technically feasible.</li>\n<li>Review the overall configuration of the firewall to ensure that best practices are fulfilled and the stance of the device is secure.</li>\n</ul>\n<h3>Control Plane Baselines</h3>\n<ul class=\"list-style\">\n<li>Review the processes for monitoring and logging that have been implemented on the firewall.</li>\n<li>Ensure that encryption and hashing operations, as well as the firmware in use do not have unnecessary vulnerabilities.</li>\n<li>Ensure that interactions with other devices meet best practices and offer only secured conversations.</li>\n</ul>\n<h3>Data Plane Baselines</h3>\n<ul class=\"list-style\">\n<li>Review all ingress/egress points within the network.</li>\n<li>Verify rules have been implemented in accordance with the principle of least privilege.</li>\n<li>Verify the use of inspection rules to handle ephemeral ports, and to guard against common attack vectors.</li>\n</ul>\n<h3>Management Plane Baselines:</h3>\n<ul class=\"list-style\">\n<li>Ensure default accounts, passwords, and network management authentication strings have been changed and meet complexity standards.</li>\n<li>Ensure the organization limits the use of clear text protocols such as Telnet, SNMP v1/v2 and FTP.</li>\n<li>Ensure that the implementation of banners, access controls, and appropriate use policies are defined.</li>\n<li>Verification that security best practices and hardening techniques have been followed.</li>\n<li>Ensure limitation of administrative access is to as few endpoints as possible.</li>\n<li>Review controls for default accounts, passwords, and network management community strings.</li>\n</ul>\n<p>{{brochure-css-detail}}</p>\n<p>&nbsp;</p>','<ul>\n<li>Memeriksa ketahanan Anda untuk memvalidasi bahwa peraturan firewall dan konfigurasi telah bekerja efektif melawan ancaman siber.</li>\n<li>Memastikan bahwa peraturan firewall sejalan dengan kebijakan keamanan IT dan bisnis</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/firewall.jpg\" alt=\"\" /></p>\n<h3>Dokumentasi Firewall dan Proses:</h3>\n<ul>\n<li>Penelaahan model kontrol akses keamanan yang menolak akses secara default, ijin akses secara eksplisit harus dibuat spesifik. &nbsp; &nbsp;</li>\n<li>Penelaahan ruleset comments untuk memastikan bahwa tiap ruleset comments tersebut menyediakan justifikasi bisnis untuk tiap peraturan.</li>\n<li>Meninjau file konfigurasi untuk identifikasi dan proteksi seluruh segmen jaringan.</li>\n<li>Validasi dari tiap implementasi port terbuka dan layanan dibutuhkan untuk setiap operasi.</li>\n<li>Meninjau proses pengawasan keamanan dan kemampuannya untuk mendeteksi dan memperingatkan usaha serangan atau akses yang tidak memiliki otorisasi ketika memungkinkan secara teknis.</li>\n<li>Meninjau keseluruhan konfigurasi dari firewall untuk memastukan bahwa setiap prakti terbaik telah dipenuhi dan perangkat dalam kondisi yang aman.</li>\n</ul>\n<h3>Basis Control Plane</h3>\n<ul>\n<li>Meninjau proses untuk pengawasan dan pendataan yang telah diimplemenrasikan pada firewall.</li>\n<li>Memastikan bahwa enkripsi dan operasi penafsiran, dan juga firmweare yang digunakan tidak memiliki kerentanan.</li>\n<li>Memastikan bahwa interaksi dengan perangkat lainnya memenuhi praktik terbaik dan menawarkan tukar informasi yang aman saja</li>\n</ul>\n<h3>Basis Data Plane</h3>\n<ul>\n<li>Meninjau seluruh poin ingress/egress dalam jaringan</li>\n<li>Memverifikasi peraturan telah diimplementasikan sejalan dengan prinsip least priviledge.</li>\n<li>Memverifikasi penggunaan peraturan inspeksi untuk menangani port ephemeral, dan untuk melindungi dari serangan vector pada umumnya.</li>\n</ul>\n<h3>Basis Management Plane</h3>\n<ul>\n<li>Memastikan akun default, password, dan benang otentikasi manajemen jaringan telah dirubah dan emenuhi standar kompleksitas.</li>\n<li>Ensure the organization limits the use of clear text protocols such as Telnet, SNMP v1/v2 and FTP.</li>\n<li>Memastikan bahwa implementasi dari baner, kontrol akses dan penggunaan kebijakan yang benar telah terdefinisikan.</li>\n<li>Memverifikasi bahwa praktik terbaik keamanan dan teknik pengerasan telah dijalankan.</li>\n<li>Memastikan batasan akses administratif memiliki sesedikit mungkin endpoint.</li>\n<li>Meninjau kendali untuk akun default, password dan benang komunitas manajemen jaringan.</li>\n</ul>\n<p>&nbsp;{{brochure-css-detail}}</p>','contents/album/10/47-firewall-security-assessment.jpg','contents/album/10/thumb/47-firewall-security-assessment-thumb.jpg','','','','','','','','',2,'2016-10-28 14:43:42','2016-10-28 14:43:42',1),(48,8,5,'Managed UTM','Pengelolaan UTM','Managed Unified Threat Management (UTM)','Pengelolaan Unified Threat Management (UTM)','Manage your Unified Threat Management (UTM) configurations to detect and block sophisticated attacks by using intrusion prevention, deep packet inspection, advanced malware detection & application awareness','Mengelola konfigurasi Unified Threat Management (UTM) Anda untuk mendeteksi dan memblokir serangan tingkat tinggi dengan menggunakan kemampuan intrusion prevention, deep packet inspection, deteksi malware tingkat lanjut dan application awareness.','<ul class=\"list-style\">\n<li>Helps you manage your Unified Threat Management (UTM) configurations to detect and block sophisticated attacks by enforcing security policies at the application level, as well as at the port and protocol level</li>\n<li>What is UTM? &ndash; UTM combines traditional firewall with intrusion prevention, deep packet inspection, advanced malware detection &amp; application awareness</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/UTM22.jpg\" alt=\"\" /></p>\n<p>{{brochure-mss-detail}}</p>','<p>Kelola konfigurasi Unified Threat Management (UTM) Anda untuk mendeteksi dan memblokir serangan tingkat tinggi dengan menggunakan pencegahan invansi, deep packet inspection, deteksi malware tingkat lanjut dan application awareness.</p>\n<p>Pengelolaan Unified Threat Management (UTM)</p>\n<ul class=\"list-style\">\n<li>Membantu Anda mengatur konfigurasi Unified Threat Management (UTM) untuk mendeteksi dan memblokir serangan tingkat tinggi dengan cara memerkuat kebijakan keamanan pada level aplikasi dan juga level port dan protocol</li>\n<li>Apa yang dimaksud dengan UTM? UTM menggabungkan firewall tradisional dengan pencegahan invansi, deep packet inspection, deteksi malware tingkat lanjut dan application awareness.</li>\n</ul>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/UTM22.jpg\" alt=\"\" /></p>\n<p>{{brochure-mss-detail}}</p>','contents/album/8/48-managed-utm.jpg','contents/album/8/thumb/48-managed-utm-thumb.jpg','','','','','','','','',2,'2016-10-28 14:41:16','2016-10-28 14:41:16',1),(50,8,6,'Managed SOC','Pengelolaan SOC','Managed SOC','Pengeloaan SOC','Acting as your first and main support in combating the latest cyber threats by leveraging the experience and expertise of ARIM’s cybersecurity experts','Bertindak sebagai rekan dan penyokong pertama dan pertama Anda dalam melawan ancaman dunia maya yang paling mutakhir dengan memanfaatkan pengalaman serta keahlian dari pakar cybersecurity ARIM.','<ul class=\"list-style\">\n<li>Provides security expertise and 24/7 coverage to help you detect and respond to incoming cyber threats</li>\n<li>Becomes a remote extension of your infrastructure/security team</li>\n<li>Leverages on advanced analytics to correlate security logs and events with external threat intelligence to detect and prevent/contain attacks</li>\n</ul>\n<p>&nbsp;<img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-soc.png\" alt=\"\" /></p>\n<h3>MANAGED SOC (Cont&rsquo;d)</h3>\n<div class=\"row\">\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Threat Detection</strong></p>\n<ul class=\"list-style\">\n<li>Network &amp; Host IDS</li>\n<li>Wireless IDS</li>\n<li>File Integrity Monitoring</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Asset Discovery</strong></p>\n<ul class=\"list-style\">\n<li>Active &amp; Passive Network Scanning</li>\n<li>Asset Inventory</li>\n<li>Host-based Software Inventory</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Managed Products Monitoring</strong></p>\n<ul class=\"list-style\">\n<li>Incident Response</li>\n<li>Forensics</li>\n<li>Log Collection</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Behavioral Monitoring</strong></p>\n<ul class=\"list-style\">\n<li>NetFlow Analysis</li>\n<li>Service Availability Monitoring</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Vulnerability Assessment</strong></p>\n<ul class=\"list-style\">\n<li>Network Vulnerability Testing</li>\n<li>Remediation Verification</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Security Intelligence</strong></p>\n<ul class=\"list-style\">\n<li>SIEM Event Correlation</li>\n</ul>\n</div>\n</div>\n<p>{{brochure-mss-detail}}</p>','<p>Bertindak sebagai pendukung Anda yang pertama dan paling utama dalam melawan ancaman siber paling mutakhir dengan memanfaatkan pengalaman serta keahlian dari pakar cybersecurity ARIM. Pengelolaan SOC</p>\n<ul class=\"list-style\">\n<li>Menyediakan keahlian cybersecurity dan cakupan 24 jam setiap harinya untuk membantu Anda mendeteksi dan merespon ancaman siber yang akan datang.</li>\n<li>Menjadi ekstensi jarak jauh dari tim infrastruktur/keamanan Anda</li>\n<li>Memanfaatkan analisis tingkat lanjut untuk menghubungkan security logs dan security event dengan intelijen ancaman eksternal untuk mendekteksi dan mencegah serangan</li>\n</ul>\n<p>&nbsp;<img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/managed-soc.png\" alt=\"\" /></p>\n<h3>Pengelolaan SOC (Cont&rsquo;d)</h3>\n<div class=\"row\">\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Deteksi Ancaman</strong></p>\n<ul class=\"list-style\">\n<li>Network &amp; Host IDS</li>\n<li>Wireless IDS</li>\n<li>File Integrity Monitoring</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Penemuan Asset</strong></p>\n<ul class=\"list-style\">\n<li>Active &amp; Passive Network Scanning</li>\n<li>Asset Inventory</li>\n<li>Host-based Software Inventory</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Pengelolaan Products Monitoring</strong></p>\n<ul class=\"list-style\">\n<li>Incident Response</li>\n<li>Forensics</li>\n<li>Log Collection</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Behavioral Monitoring</strong></p>\n<ul class=\"list-style\">\n<li>NetFlow Analysis</li>\n<li>Service Availability Monitoring</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Pengukuran Kerentanan</strong></p>\n<ul class=\"list-style\">\n<li>Uji Coba Kerentanan Jaringan</li>\n<li>Verifikasi Remediasi</li>\n</ul>\n</div>\n<div class=\"col-md-6 managed-soc\">\n<p><strong>Security Intelligence</strong></p>\n<ul class=\"list-style\">\n<li>SIEM Event Correlation</li>\n</ul>\n</div>\n</div>\n<p>{{brochure-mss-detail}}</p>','contents/album/8/50-managed-siem.jpg','contents/album/8/thumb/50-managed-siem-thumb.jpg','','','','','','','','',2,'2016-10-28 14:41:58','2016-10-28 14:41:58',1),(72,17,1,'Startups','Startups','Startups','Startups','Startups & Venture Capital','Startups & Venture Capital','<p>Need help testing marketing demand in Asia? DPP&trade; provides a platform to connect with Asian design partners, providing feedback from the top levels of enterprises to help refine your product.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Test market demand</li>\n<li>Protect your intellectual property</li>\n<li>Develop your product for the commercial market</li>\n<li>Network with startups and enterprise customers</li>\n<li>Access the Asian market</li>\n</ul>\n<div id=\"mauticform_wrapper_formstartups\" class=\"mauticform_wrapper\"><form id=\"mauticform_formstartups\" action=\"https://arimtech.mautic.net/form/submit?formId=22\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formstartups\">\n<div id=\"mauticform_formstartups_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formstartups_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formstartups_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_name\">Name</label> <input id=\"mauticform_input_formstartups_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formstartups_contact\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_contact\">Contact</label> <input id=\"mauticform_input_formstartups_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_company\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_company\">Company</label> <input id=\"mauticform_input_formstartups_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_designation\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_designation\">Designation</label> <input id=\"mauticform_input_formstartups_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formstartups_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_business_email\">Business Email</label> <input id=\"mauticform_input_formstartups_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_subject\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_subject\">Subject</label> <input id=\"mauticform_input_formstartups_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formstartups_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_message\">Message</label> <textarea id=\"mauticform_input_formstartups_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formstartups_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formstartups_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"22\" /> <input id=\"mauticform_formstartups_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formstartups_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formstartups\" /></div>\n</form></div>','<p>Need help testing marketing demand in Asia? DPP&trade; provides a platform to connect with Asian design partners, providing feedback from the top levels of enterprises to help refine your product.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Test market demand</li>\n<li>Protect your intellectual property</li>\n<li>Develop your product for the commercial market</li>\n<li>Network with startups and enterprise customers</li>\n<li>Access the Asian market</li>\n</ul>\n<div id=\"mauticform_wrapper_formstartups\" class=\"mauticform_wrapper\"><form id=\"mauticform_formstartups\" action=\"https://arimtech.mautic.net/form/submit?formId=22\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formstartups\">\n<div id=\"mauticform_formstartups_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formstartups_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formstartups_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_name\">Name</label> <input id=\"mauticform_input_formstartups_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formstartups_contact\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_contact\">Contact</label> <input id=\"mauticform_input_formstartups_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_company\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_company\">Company</label> <input id=\"mauticform_input_formstartups_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_designation\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_designation\">Designation</label> <input id=\"mauticform_input_formstartups_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formstartups_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_business_email\">Business Email</label> <input id=\"mauticform_input_formstartups_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formstartups_subject\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_subject\">Subject</label> <input id=\"mauticform_input_formstartups_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formstartups_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formstartups_f_message\">Message</label> <textarea id=\"mauticform_input_formstartups_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formstartups_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formstartups_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formstartups_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"22\" /> <input id=\"mauticform_formstartups_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formstartups_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formstartups\" /></div>\n</form></div>','contents/album/17/72-startups.jpg','contents/album/17/thumb/72-startups-thumb.jpg','','','','','','','','',2,'2016-09-10 14:40:39','2016-09-10 14:40:39',1),(51,8,0,'USM Platform','USM Platform','USM Platform','USM Platform','Our Asian design partners were capitalizing on enSilo months before its official launch.','Our Asian design partners were capitalizing on enSilo months before its official launch.','<p>{{brochure-mss-detail}}</p>','<p>{{brochure-mss-detail}}</p>','contents/album/8/51-usm-platform.jpg','contents/album/8/thumb/51-usm-platform-thumb.jpg','','','','','','','','',2,'2016-09-07 10:48:31','2016-09-07 10:48:31',0),(52,8,0,'UTM + USM','UTM + USM','UTM + USM','UTM + USM','Our Asian design partners were capitalizing on enSilo months before its official launch.','Our Asian design partners were capitalizing on enSilo months before its official launch.','<p>{{brochure-mss-detail}}</p>','<p>{{brochure-mss-detail}}</p>','contents/album/8/52-utm-usm.jpg','contents/album/8/thumb/52-utm-usm-thumb.jpg','','','','','','','','',2,'2016-09-07 10:49:14','2016-09-07 10:49:14',0),(53,8,0,'Centralized Management','Centralized Management','','','Our Asian design partners were capitalizing on enSilo months before its official launch.','Our Asian design partners were capitalizing on enSilo months before its official launch.','<p>{{brochure-mss-detail}}</p>','<p>{{brochure-mss-detail}}</p>','contents/album/8/53-centralized-management.jpg','contents/album/8/thumb/53-centralized-management-thumb.jpg','','','','','','','','',2,'2016-09-06 17:11:54','2016-09-06 17:11:54',0),(82,23,0,'Nama','Nama','','','Phasellus lobortis libero urna, non sollicitudin augue porta ac.','Phasellus lobortis libero urna, non sollicitudin augue porta ac.','','','contents/album/23/82-nama.jpg','contents/album/23/thumb/82-nama-thumb.jpg','','','','','','','','',2,'2016-12-31 21:00:51',NULL,1),(83,23,0,'Nama 2','Nama 2','','','asda','asd','','','contents/album/23/83-nama-2.jpg','contents/album/23/thumb/83-nama-2-thumb.jpg','','','','','','','','',2,'2016-12-31 21:01:39',NULL,1),(84,22,0,'Treatment B','Treatment B','','','Treatment B','Treatment B','<h2>Bukti ilmiah kenapa kami bisa mengembalikan keremajaan kulit Anda</h2>\n<p>Nullam lobortis mauris sit amet purus scelerisque, ut aliquam lacus dapibus. Aliquam viverra lacinia lectus, at facilisis tortor vehicula a. Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>\n<h2>Our facial rejuvenation specialist</h2>\n<p><img src=\"http://localhost/medikpro/html/uploads/images/img-article-01.jpg\" alt=\"\" />Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>','<h2>Bukti ilmiah kenapa kami bisa mengembalikan keremajaan kulit Anda</h2>\n<p>Nullam lobortis mauris sit amet purus scelerisque, ut aliquam lacus dapibus. Aliquam viverra lacinia lectus, at facilisis tortor vehicula a. Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>\n<h2>Our facial rejuvenation specialist</h2>\n<p><img src=\"http://localhost/medikpro/html/uploads/images/img-article-01.jpg\" alt=\"\" />Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>','contents/album/22/84-treatment-b.jpg','contents/album/22/thumb/84-treatment-b-thumb.jpg',' Facial Rejuvenation Certificate','<div class=\"block box\">\n<div class=\"content\"><img src=\"http://localhost/medikpro/html/uploads/images/img-article-02.jpg\" alt=\"\" /> <img src=\"http://localhost/medikpro/html/uploads/images/img-article-03.jpg\" alt=\"\" /></div>\n</div>\n<div class=\"block\">&nbsp;</div>','','','','','','',2,'2017-01-24 21:23:59','2017-01-24 21:23:59',1),(73,17,2,'Venture Capital','Modal Usaha','Venture Capital','Modal Usaha','Venture Capital','Modal Usaha','<p>Need help testing marketing demand in Asia? DPP&trade; provides a platform to connect with Asian design partners, providing feedback from the top levels of enterprises to help refine your product.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Test market demand</li>\n<li>Protect your intellectual property</li>\n<li>Develop your product for the commercial market</li>\n<li>Network with startups and enterprise customers</li>\n<li>Access the Asian market</li>\n</ul>\n<div id=\"mauticform_wrapper_formventurecapital\" class=\"mauticform_wrapper\"><form id=\"mauticform_formventurecapital\" action=\"https://arimtech.mautic.net/form/submit?formId=18\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formventurecapital\">\n<div id=\"mauticform_formventurecapital_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formventurecapital_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formventurecapital_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_f_name\">Name</label> <input id=\"mauticform_input_formventurecapital_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formventurecapital_contact\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_contact\">Contact</label> <input id=\"mauticform_input_formventurecapital_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_company\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_company\">Company</label> <input id=\"mauticform_input_formventurecapital_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_designation\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_designation\">Designation</label> <input id=\"mauticform_input_formventurecapital_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formventurecapital_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_business_email\">Business Email</label> <input id=\"mauticform_input_formventurecapital_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_subject\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_subject\">Subject</label> <input id=\"mauticform_input_formventurecapital_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formventurecapital_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_f_message\">Message</label> <textarea id=\"mauticform_input_formventurecapital_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formventurecapital_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formventurecapital_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"18\" /> <input id=\"mauticform_formventurecapital_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formventurecapital_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formventurecapital\" /></div>\n</form></div>','<p>Need help testing marketing demand in Asia? DPP&trade; provides a platform to connect with Asian design partners, providing feedback from the top levels of enterprises to help refine your product.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Test market demand</li>\n<li>Protect your intellectual property</li>\n<li>Develop your product for the commercial market</li>\n<li>Network with startups and enterprise customers</li>\n<li>Access the Asian market</li>\n</ul>\n<div id=\"mauticform_wrapper_formventurecapital\" class=\"mauticform_wrapper\"><form id=\"mauticform_formventurecapital\" action=\"https://arimtech.mautic.net/form/submit?formId=18\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formventurecapital\">\n<div id=\"mauticform_formventurecapital_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formventurecapital_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formventurecapital_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_f_name\">Name</label> <input id=\"mauticform_input_formventurecapital_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formventurecapital_contact\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_contact\">Contact</label> <input id=\"mauticform_input_formventurecapital_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_company\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_company\">Company</label> <input id=\"mauticform_input_formventurecapital_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_designation\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_designation\">Designation</label> <input id=\"mauticform_input_formventurecapital_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formventurecapital_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_business_email\">Business Email</label> <input id=\"mauticform_input_formventurecapital_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formventurecapital_subject\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_subject\">Subject</label> <input id=\"mauticform_input_formventurecapital_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formventurecapital_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formventurecapital_f_message\">Message</label> <textarea id=\"mauticform_input_formventurecapital_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formventurecapital_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formventurecapital_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formventurecapital_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"18\" /> <input id=\"mauticform_formventurecapital_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formventurecapital_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formventurecapital\" /></div>\n</form></div>','contents/album/17/73-venture-capital.jpg','contents/album/17/thumb/73-venture-capital-thumb.jpg','','','','','','','','',2,'2016-10-21 09:18:01','2016-10-21 09:18:01',1),(74,17,3,'Enterprise Customers','Pelanggan Perusahaan','Enterprise Customers','Pelanggan Perusahaan','Enterprise Customers','Pelanggan Perusahaan','<p>Want access to cutting-edge solutions? Enterprise partners play an integral role in helping to define emerging technologies that will revolutionize their industries.</p>\n<h3><strong> Advantages : </strong></h3>\n<ul class=\"list-style\">\n<li>Utilize the latest technologies</li>\n<li>Access tools ahead of competitors</li>\n<li>Buy the products at a discounted rate after launch</li>\n<li>Network with industry leaders and experts</li>\n</ul>\n<div id=\"mauticform_wrapper_formenterprisecustomers\" class=\"mauticform_wrapper\"><form id=\"mauticform_formenterprisecustomers\" action=\"https://arimtech.mautic.net/form/submit?formId=19\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formenterprisecustomers\">\n<div id=\"mauticform_formenterprisecustomers_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formenterprisecustomers_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formenterprisecustomers_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_f_name\">Name</label> <input id=\"mauticform_input_formenterprisecustomers_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formenterprisecustomers_contact\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_contact\">Contact</label> <input id=\"mauticform_input_formenterprisecustomers_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_company\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_company\">Company</label> <input id=\"mauticform_input_formenterprisecustomers_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_designation\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_designation\">Designation</label> <input id=\"mauticform_input_formenterprisecustomers_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formenterprisecustomers_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_business_email\">Business Email</label> <input id=\"mauticform_input_formenterprisecustomers_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_subject\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_subject\">Subject</label> <input id=\"mauticform_input_formenterprisecustomers_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formenterprisecustomers_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_f_message\">Message</label> <textarea id=\"mauticform_input_formenterprisecustomers_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formenterprisecustomers_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formenterprisecustomers_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"19\" /> <input id=\"mauticform_formenterprisecustomers_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formenterprisecustomers_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formenterprisecustomers\" /></div>\n</form></div>','<p>Ingin solusi yang efektif? Partner perusahaan memainkan peran terintegras dalam membantu mendefinisikan teknologi terbaru yang akan merevolusionerkan industry mereka</p>\n<h3><strong>Keuntungan&nbsp;: </strong></h3>\n<ul>\n<li>Menggunaka teknologi terbaru</li>\n<li>Mengakses tools yang lebih maju dari kompetitor</li>\n<li>Membeli produk dengan harga diskon setelah peluncuran</li>\n<li>Terjaring dengan pemimpin dan ahli dalam industri</li>\n</ul>\n<div id=\"mauticform_wrapper_formenterprisecustomers\" class=\"mauticform_wrapper\"><form id=\"mauticform_formenterprisecustomers\" action=\"https://arimtech.mautic.net/form/submit?formId=19\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"formenterprisecustomers\">\n<div id=\"mauticform_formenterprisecustomers_error\" class=\"mauticform-error\">&nbsp;</div>\n<div id=\"mauticform_formenterprisecustomers_message\" class=\"mauticform-message\">&nbsp;</div>\n<div class=\"mauticform-innerform\">\n<div id=\"mauticform_formenterprisecustomers_f_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_f_name\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_f_name\">Name</label> <input id=\"mauticform_input_formenterprisecustomers_f_name\" class=\"mauticform-input\" name=\"mauticform[f_name]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_contact\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"contact\" data-validation-type=\"number\"><label id=\"mauticform_label_formenterprisecustomers_contact\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_contact\">Contact</label> <input id=\"mauticform_input_formenterprisecustomers_contact\" class=\"mauticform-input\" name=\"mauticform[contact]\" type=\"number\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_company\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_company\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_company\">Company</label> <input id=\"mauticform_input_formenterprisecustomers_company\" class=\"mauticform-input\" name=\"mauticform[company]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_designation\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_designation\">Designation</label> <input id=\"mauticform_input_formenterprisecustomers_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formenterprisecustomers_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_business_email\">Business Email</label> <input id=\"mauticform_input_formenterprisecustomers_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_subject\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"subject\" data-validation-type=\"text\"><label id=\"mauticform_label_formenterprisecustomers_subject\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_subject\">Subject</label> <input id=\"mauticform_input_formenterprisecustomers_subject\" class=\"mauticform-input\" name=\"mauticform[subject]\" type=\"text\" value=\"\" /> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_f_message\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"f_message\" data-validation-type=\"textarea\"><label id=\"mauticform_label_formenterprisecustomers_f_message\" class=\"mauticform-label\" for=\"mauticform_input_formenterprisecustomers_f_message\">Message</label> <textarea id=\"mauticform_input_formenterprisecustomers_f_message\" class=\"mauticform-textarea\" name=\"mauticform[f_message]\"></textarea> <span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\n<div id=\"mauticform_formenterprisecustomers_send_message\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formenterprisecustomers_send_message\" class=\"mauticform-button btn btn-default\" name=\"mauticform[send_message]\" type=\"submit\" value=\"1\">Send Message</button></div>\n<input id=\"mauticform_formenterprisecustomers_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"19\" /> <input id=\"mauticform_formenterprisecustomers_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formenterprisecustomers_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formenterprisecustomers\" /></div>\n</form></div>','contents/album/17/74-enterprise-customers.jpg','contents/album/17/thumb/74-enterprise-customers-thumb.jpg','','','','','','','','',2,'2016-10-25 15:26:34','2016-10-25 15:26:34',1),(75,19,0,'Technology Partners','Rekan Teknologi','Technology Partners','Rekan Teknologi','Technology Partners','Rekan Teknologi','<h3>Beyond &ldquo;thickest&rdquo; and &ldquo;tallest&rdquo; parameter controls</h3>\n<p>With cyber threats evolving at an alarming rate, protecting your business has never been more important. Modeled against NIST Cyber Security Framework, VaultUp&rsquo;s technology recommendations leverage a combination of solutions to increase overall security resiliency.</p>\n<h3>Modeled against NIST Cyber Security Framework</h3>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/step-vaultup.jpg\" alt=\"\" /></p>\n<div id=\"accordion\" class=\"panel-group panel-career\">\n<div class=\"panel panel-grey\">\n<div id=\"career1\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job1\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Identify </a></h4>\n</div>\n<div id=\"job1\" class=\"panel-collapse collapse in\">\n<div class=\"panel-body\">\n<p><strong>Network Access Control &amp; EndPoint Compliance</strong><br /> Achieve real-time visibility of users, BYOD, endpoints, industrial controls, physical/virtualized machines that are connected to the corporate network. Policy based controls automate the interrogation of device compliance before granting access to network while preserving user experience.</p>\n<p><strong>Privileged Account Security</strong><br /> Prevent misuse of privileged credentials to protect databases, applications, hypervisors, network devices and more. It is designed for on-premise, hybrid cloud and OT/SCADA environments. The solution employs an isolated vault, a unified policy engine, and a discovery engine to secure, manage and monitor privileged accounts</p>\n<p><strong>Vulnerability Management</strong><br /> Continuously discover, identify and receive vulnerability fix recommendations. Provide organisations with a complete view of the attack surface and security posture. The ability to prioritise and focus remediation activities ensures that efforts and resources are most effectively deployed.</p>\n<p><strong>Application Security</strong><br /> Help organisations develop &ldquo;self-defending&rdquo; applications, and encourages secure coding practices. Static Application Security Testing (SAST) analyses source code from the &ldquo;inside-out&rdquo;, and Dynamic Application Security Testing (DAST) analyses running applications for architectural weaknesses and vulnerabilities.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career2\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job2\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Protect </a></h4>\n</div>\n<div id=\"job2\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Classification &amp; Data Protection</strong><br /> Safeguard intellectual property, and avoid regulatory penalties, by protecting sensitive data at rest, in use, and in motion. Leverage a combination of classification, encryption, and gateway protection applications to continuously monitor, discover, manage and enforce data protection.</p>\n<p><strong>Endpoint Detect and Response</strong><br /> With cyber attacks evolving to bypass traditional parameter-based security controls, it is reasonable to assume that your corporate environment is already compromised. Detect and stop malicious data exfiltration and ransomware from external attackers in real-time with no disruption to user experience</p>\n<p><strong>Network Security Protection</strong><br /> Our Network security application combines high-performance and multi-capabilities to provide proactive protection for network traffic. It is robust enough to effectively secure industrial control systems in manufacturing and critical infrastructures, such as power systems, utilities, transportation, and communication systems.</p>\n<p><strong>Cloud Based Security as a Service</strong><br /> A single, seamless cloud security platform that is effective in today&rsquo;s mobile enterprises. It scans all incoming and outgoing Internet traffic, irrespective of device or location, to protect organizations from a broad range of web security threats.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career3\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job3\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Detect </a></h4>\n</div>\n<div id=\"job3\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Continuous Network Monitoring</strong><br /> Periodic vulnerability scanning only provides a point in time snapshot of an organization&rsquo;s security. Continuous Network Monitoring integrates vulnerability scanners, system agents, network sniffers, and log analyzers to discover, assess, and report the health of the organization&rsquo;s network.</p>\n<p><strong>Insider Threat Detection</strong><br /> A policy based solution that deters malicious and careless user behavior in real time. Our user risk scoring dashboard provides in-situ analysis of all privileged users, and the ability to drill down and investigate individual high risk personnel.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career4\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job4\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Respond </a></h4>\n</div>\n<div id=\"job4\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Incident Response</strong><br /> A feature of Continuous Network Monitoring Solution &ndash; streamline incident response processes by accelerating incident assessment and dynamically assign trouble tickets. For incidents that are well understood, invoke scripts or APIs to perform specific remediation response actions.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career5\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job5\" data-toggle=\"collapse\" data-parent=\"#accordion\"> Recover </a></h4>\n</div>\n<div id=\"job5\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Network Investigation Analysis</strong><br /> A feature of Continuous Network Monitoring Solution &ndash; traverse and gather data across the network and devices for analysis. Pivot data set and adjust analysis to time frames, network zones or assets to create comprehensive forensic findings.</p>\n</div>\n</div>\n</div>\n</div>','<h3>Lebih dari kendali parameter &ldquo;Tertebal&rdquo; dan &ldquo;Tertinggi&rdquo;</h3>\n<p>Dengan adanya ancaman siber yang berevolusi dalam tingkatan yang membahayakan, melindungi perusahaan Anda jadi lebih penting dari sebelumnya. Dibentuk untuk melawan NIST Cyber Security Framework, rekomendasi teknologi VaultU memanfaatkan kombinasi dari solusi untuk meningkatkan keseluruhan ketehanan keamanan.</p>\n<h3>Dibentuk untuk melawan NIST Cyber Security Framework</h3>\n<p><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/step-vaultup.jpg\" alt=\"\" /></p>\n<div id=\"accordion\" class=\"panel-group panel-career\">\n<div class=\"panel panel-grey\">\n<div id=\"career1\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job1\" data-toggle=\"collapse\" data-parent=\"#accordion\">Identifikasi</a></h4>\n</div>\n<div id=\"job1\" class=\"panel-collapse collapse in\">\n<div class=\"panel-body\">\n<p><strong>Network Access Control &amp; EndPoint Compliance</strong><br />Dapatkan visibilitas secara langsung dari user, BYOD, endpoints, kendali industrial, mesin virtual/fisik yang terhubung dengan jaringan perusahaan. Kendali yang berbasis kebijakan mengotomatisasi interogasi kepatuhan perangkat sebelum memberikan akses menuju jaringan dengan tetap menjaga user experience.</p>\n<p><strong>Keamanan untuk Akun Istimewa</strong><br />Mencegah penyalahgunaan kredensial istimewa untuk melindungi database, aplikasi, hypervisor, jaringan perangkat dan lainnya. Ini didesain untuk lingkungan hybrid cloud fan OT/SCADA. Solusi ini mempergukan ruangan terisolasi, mesin kebijakan bersatumd an mesin penemuan untuk mengamankan, mengelola dan mengawasi akun istimewa.</p>\n<p><strong>Manajemen Kerentanan</strong><br />Secara terus menerus menemukan, mengidentifikasi dan menerima rekomendasi pembetulan kerentanan. Menyediakan perusahaan dengan pandangan lengkap mengenai permukaan serangan dan postur keamanan. Kemampuan untuk memprioritaskan dan memfokuskan aktivitas remediasi, memasktikan bahwa usaha dan aset adalah hal-hal yang paling efektif untuk digunakan.</p>\n<p><strong>Keamanan Aplikasi</strong><br />Membantu perusahaan mengembangkan aplikasi yang data melindungi dirinya sendiri serta mendorong praktik coding yang aman. Static Application Security Testing (SAST) menganalisa kode sumber dari dalam dan luar, dan Dynamic Application Security Testing (DAST) menganalisa aplikasi yang sedang berjalan untuk kelemahan dan kerentanan arsitektural.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career2\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job2\" data-toggle=\"collapse\" data-parent=\"#accordion\">Perlindungan</a></h4>\n</div>\n<div id=\"job2\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Klasifikasi dan Proteksi Data</strong><br />Melindungi kekayaan intelektual, dan hindari penalty peraturan dengan cara meindungi data sensitive yang sedang tidak bekerja, sedang digunakan atau sedang bergerak. Memanfaatkan kombinasi dari klasifikasi, enkrips dan aplikasi perlindungan getaway untuk mengawasi, menemukan, mengelola dan memperkuat proteksi data secara terus-menerus.</p>\n<p><strong>Deteksi Endpoint serta Respon</strong><br />Dengan adanya serangan siber yang berevolusi untuk menembus kendali keamanan yang berbasis pada parameter tradisional, maka sangat wajar untuk mengasumsikan bahwa lingkungan perusahaan Anda telah dipergunakan oleh serangan siber. Deteksi dan hentikan kebocoran data yang berbahaya serta ransomware dari penyerang eksternal secara real-time dan tanpa gangguan untuk user experience.</p>\n<p><strong>Perlindungan Keamanan Jaringan</strong><br />Aplikasi keamanan jaringan kami menggabungkan performa tinggi dan multi-kapabilitas untuk menyediakan perlindungan proaktif bagi traffic jaringan. Aplikasi keamanan jaringan kami cukup kuat untuk mengamankan secaara efektif sistem kendali industrial dalam manufaktur dan infrastruktur penting seperti sistem listrik, utilitas, transportas, dan sistem komunikasi..</p>\n<p><strong>Keamanan Berbasis Cloud sebagai Layanan</strong><br />Platform keamanan cloud yang efektif untuk perusahaan mobile masa kini. Layanan ini men-scan traffic masuk dan keluar, tanpa terpengaruh oleh perangkat atau lokasi, untuk melindungi perusahaan dari jangkauan meluas dari ancaman keamanan web.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career3\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job3\" data-toggle=\"collapse\" data-parent=\"#accordion\">Deteksi</a></h4>\n</div>\n<div id=\"job3\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Pengawasan Jaringan Secara Terus Menerus</strong><br />Scanning kerentanan secara periodic hanya akan menyediakan poin sesaat dari keamanan sebuah perusahaan. Pengawasan Jaringan yang berlangsung secara terus menerus menggabungkan vulnerability scanners, system agents, network sniffers, dan log analyzers untuk menemukan, menilai, dan melaporkan kesehatan dari sebuah jaringan perusahaan.</p>\n<p><strong>Deteksi Ancaman dari Dalam</strong><br />Solusi berbasis kebijakan yang mencegah perlaku user yang berbahaya dan ceroboh secara realtime. Dasbor skor resiko user milik kami menyediakan analisis in-situ untuk seluruh user dengan akses khusus, ean kemampuan untuk menggali dan menginvestigasi personil dengan resiko tinggi.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career4\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job4\" data-toggle=\"collapse\" data-parent=\"#accordion\">Respon</a></h4>\n</div>\n<div id=\"job4\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Incident Response</strong><br />Sebuah fitur dari Solusi Pengawasan Jaringan secara Terus Menerus (Continuous Network Monitoring Solution) &ndash; merampingkan proses respon insiden dengan mempercepat penilaian insiden dan secara dinamis menetapkan tiket masalah. Untuk insiden yang dipahami dengan baik, melibatkan script atau API untuk menjalankan aksi respon remediasi spesifik.</p>\n</div>\n</div>\n</div>\n<div class=\"panel panel-grey\">\n<div id=\"career5\" class=\"panel-heading panel-blue\">\n<h4 class=\"panel-title job-title\"><a href=\"#job5\" data-toggle=\"collapse\" data-parent=\"#accordion\">Pemulihan</a></h4>\n</div>\n<div id=\"job5\" class=\"panel-collapse collapse\">\n<div class=\"panel-body\">\n<p><strong>Analisis Investigasi Jaringan</strong><br />Sebuah fitur dari Solusi Pengawasan Jaringan secara Terus Menerus (Continuous Network Monitoring Solution)&ndash; Melintasi dan mengumpulkan data dari beragam jaringan dan perangkat untuk analisis. Set poros data dan mengatur analsis untuk frame waktu, zona jaringan atau aset untuk menciptakan temuan forensik yang lengkap.</p>\n</div>\n</div>\n</div>\n</div>','contents/album/19/75-technology-partners.jpg','contents/album/19/thumb/75-technology-partners-thumb.jpg','','','','','','','','',2,'2016-10-25 14:53:06','2016-10-25 14:53:06',1),(79,21,0,'Excellent Service','Excellent Service','','','Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.','Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.','','','contents/album/21/79-excellent-service.jpg','contents/album/21/thumb/79-excellent-service-thumb.jpg','','','','','','','','',2,'2016-12-23 09:12:03',NULL,1),(80,21,0,'Latest Technology','Latest Technology','','','Cras ultricies sed ex quis cursus. Vivamus maximus arcu a ante convallis, et vestibulum massa faucibus','Cras ultricies sed ex quis cursus. Vivamus maximus arcu a ante convallis, et vestibulum massa faucibus','','','contents/album/21/80-latest-technology.jpg','contents/album/21/thumb/80-latest-technology-thumb.jpg','','','','','','','','',2,'2016-12-23 09:12:49',NULL,1),(81,22,0,'Treatment A','Treatment A','','','Treatment A','Treatment A','<h2>Bukti ilmiah kenapa kami bisa mengembalikan keremajaan kulit Anda</h2>\n<p>Nullam lobortis mauris sit amet purus scelerisque, ut aliquam lacus dapibus. Aliquam viverra lacinia lectus, at facilisis tortor vehicula a. Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>\n<h2>Our facial rejuvenation specialist</h2>\n<p><img src=\"http://localhost/medikpro/html/uploads/images/img-article-01.jpg\" alt=\"\" />Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>','<h2>Bukti ilmiah kenapa kami bisa mengembalikan keremajaan kulit Anda</h2>\n<p>Nullam lobortis mauris sit amet purus scelerisque, ut aliquam lacus dapibus. Aliquam viverra lacinia lectus, at facilisis tortor vehicula a. Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>\n<h2>Our facial rejuvenation specialist</h2>\n<p><img src=\"http://localhost/medikpro/html/uploads/images/img-article-01.jpg\" alt=\"\" />Aenean bibendum accumsan interdum. Curabitur malesuada lorem non dolor facilisis luctus. Duis malesuada tellus ligula, non dictum purus convallis mollis. Phasellus placerat vitae odio sit amet fermentum. Vestibulum luctus, tellus quis tincidunt tempus, augue diam fermentum quam, vel suscipit magna urna at justo. Phasellus eleifend ornare ultrices. Morbi lacinia orci risus, at hendrerit ante lacinia convallis.</p>\n<p>Mauris molestie dapibus dolor, in facilisis quam hendrerit aliquam. Integer maximus, velit in accumsan ultrices, arcu ex fermentum elit, ut imperdiet nibh elit nec felis. Maecenas ligula augue, convallis vel rutrum nec, lobortis quis nulla. Donec eleifend magna sit amet nunc placerat, sed molestie velit facilisis. Duis tincidunt turpis mattis facilisis posuere. Integer consectetur varius tempor. Praesent ut pulvinar diam. Nam viverra ligula nisl, at rhoncus mauris tristique ut.</p>','contents/album/22/81-treatment-a.jpg','contents/album/22/thumb/81-treatment-a-thumb.jpg','','','','','','','','',2,'2017-01-05 23:24:56','2017-01-05 23:24:56',1),(85,22,0,'Tes Treatment sendiri','Tes Treatment sendiri ID','Tes Treatment sendiri','Tes Treatment sendiri ID','Lipsum lipsum','Lipsum lipsum','<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>','<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>','contents/album/22/85-tes-treatment-sendiri.jpg','contents/album/22/thumb/85-tes-treatment-sendiri-thumb.jpg','','','','','','','','',2,'2017-01-23 15:32:45',NULL,1),(86,24,0,'How to purchase the product','How to purchase the product','','','Praesent sit amet quam vel enim efficitur finibus. Sed mattis elit ac suscipit luctus. Phasellus vehicula lacus quis tortor interdum, sed fringilla urna suscipit. Phasellus eget risus sit amet nunc congue viverra consequat sit amet mauris. Donec sed sapien nulla. Nunc a pellentesque magna. Praesent blandit sed arcu id ultricies.','Praesent sit amet quam vel enim efficitur finibus. Sed mattis elit ac suscipit luctus. Phasellus vehicula lacus quis tortor interdum, sed fringilla urna suscipit. Phasellus eget risus sit amet nunc congue viverra consequat sit amet mauris. Donec sed sapien nulla. Nunc a pellentesque magna. Praesent blandit sed arcu id ultricies.','','',NULL,NULL,'','','','','','','','',2,'2017-01-27 11:15:23',NULL,1),(87,24,0,'Is it drinkable?','Is it drinkable?','','','Duis facilisis nisl mauris, sed luctus dolor vestibulum at. In hac habitasse platea dictumst. Vestibulum a leo malesuada, ultrices leo at, ultricies justo. Praesent blandit sed arcu id ultricies.','Duis facilisis nisl mauris, sed luctus dolor vestibulum at. In hac habitasse platea dictumst. Vestibulum a leo malesuada, ultrices leo at, ultricies justo. Praesent blandit sed arcu id ultricies.','','',NULL,NULL,'','','','','','','','',2,'2017-01-27 11:16:04',NULL,1);
/*!40000 ALTER TABLE `page_album_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_blank`
--

DROP TABLE IF EXISTS `page_blank`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_blank` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `title_bahasa` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `content_bahasa` text NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_title_bahasa` varchar(255) NOT NULL,
  `meta_keyword` text NOT NULL,
  `meta_keyword_bahasa` text NOT NULL,
  `meta_description` text NOT NULL,
  `meta_description_bahasa` text NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_blank`
--

LOCK TABLES `page_blank` WRITE;
/*!40000 ALTER TABLE `page_blank` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_blank` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_career`
--

DROP TABLE IF EXISTS `page_career`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_career` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_career`
--

LOCK TABLES `page_career` WRITE;
/*!40000 ALTER TABLE `page_career` DISABLE KEYS */;
INSERT INTO `page_career` VALUES (1,3,'Career','Career','contents/career/0/0-Grow-With-Us-bg.jpg','Anabatic offers a range of opportunities and programs for companies and individuals.','Anabatic offers a range of opportunities and programs for companies and individuals.','','','','','','',1,'2015-05-22 09:35:08','2015-09-14 09:44:26');
/*!40000 ALTER TABLE `page_career` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_career_category`
--

DROP TABLE IF EXISTS `page_career_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_career_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_career` int(11) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `short_description` text DEFAULT NULL,
  `short_description_bahasa` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `thumbnail_location` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_career_category`
--

LOCK TABLES `page_career_category` WRITE;
/*!40000 ALTER TABLE `page_career_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_career_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_career_item`
--

DROP TABLE IF EXISTS `page_career_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_career_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_career_category` int(11) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `email_to` varchar(500) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_career_item`
--

LOCK TABLES `page_career_item` WRITE;
/*!40000 ALTER TABLE `page_career_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_career_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_contactus`
--

DROP TABLE IF EXISTS `page_contactus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_contactus` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `image2_location` text DEFAULT NULL,
  `address` text DEFAULT NULL,
  `map_url` text DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_contactus`
--

LOCK TABLES `page_contactus` WRITE;
/*!40000 ALTER TABLE `page_contactus` DISABLE KEYS */;
INSERT INTO `page_contactus` VALUES (1,0,'Contact Us','Hubungi Kami','<h1>Get Free Consultation Now!</h1>\n<p>In sit amet ipsum ex. Ut non elementum urna. Nam at velit interdum, eleifend massa et, consequat magna. Donec in aliquet turpis, vitae scelerisque eros.</p>','<h1>Get Free Consultation Now!</h1>\n<p>In sit amet ipsum ex. Ut non elementum urna. Nam at velit interdum, eleifend massa et, consequat magna. Donec in aliquet turpis, vitae scelerisque eros.</p>','contents/contactus/1/1-Contact-Us-img.jpg','contents/contactus/1/1-Contact-Us-img2.jpg','<div class=\"panel-body\">\r\n	<h4 class=\"titleSidebar\">Head Office </h4>\r\n	<div class=\"contactInfo\">\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-location\"></i></small>\r\n			<p><small>Graha Anabatic Jl. Scientia Boulevard Tangerang, Banten - Indonesia</small></p>\r\n		</div>\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-phone\"></i></small>\r\n			<p><small>+62 21 522 9909</small></p>\r\n		</div>\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-paperplane\"></i></small>\r\n			<p><small>+62 21 522 9777</small></p>\r\n		</div>\r\n	</div>\r\n	<h4 class=\"titleSidebar\">Jakarta Hub Office</h4>\r\n	<div class=\"contactInfo\">\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-location\"></i></small>\r\n			<p><small>Graha BIP 7th Floor Jl. Jend Gatot Subroto Kav.23 Jakarta 12930 - Indonesia</small></p>\r\n		</div>\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-phone\"></i></small>\r\n			<p><small>+62 21 522 9909</small></p>\r\n		</div>\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-paperplane\"></i></small>\r\n			<p><small>+62 21 522 9777</small></p>\r\n		</div>\r\n	</div>\r\n	<h4 class=\"titleSidebar\">Marketing</h4>\r\n	<div class=\"contactInfo\">\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-mail\"></i></small>\r\n			<p><small>marketing@anabatic.com</small></p>\r\n		</div>\r\n	</div>\r\n	<h4 class=\"titleSidebar\">Customer Care / Helpdesk</h4>\r\n	<div class=\"contactInfo\">\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-mail\"></i></small>\r\n			<p><small>customer.care@anabatic.com</small></p>\r\n		</div>\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-phone\"></i></small>\r\n			<p><small>+62 21 522 9900</small></p>\r\n		</div>\r\n	</div>\r\n	<h4 class=\"titleSidebar\">Principal Care</h4>\r\n	<div class=\"contactInfo\">\r\n		<div class=\"infoAll\">\r\n			<small><i class=\"i i-mail\"></i></small>\r\n			<p><small>principal.care@anabatic.com</small></p>\r\n		</div>\r\n	</div>\r\n</div>','https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3966.259013762345!2d106.820454!3d-6.229543999999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e69f3e2fb356fbb%3A0x4ce3a6079be17714!2sPT.+Anabatic+Technologies!5e0!3m2!1sen!2s!4v1431423789045','contents/contactus/1/1-contact-us.jpg','Get In Touch','Get In Touch','Contact | Medikpro','Contact | Medikpro','Contact | Medikpro','Contact | Medikpro','Contact | Medikpro','Contact | Medikpro',1,'2015-05-19 05:17:40','2017-01-24 14:16:39');
/*!40000 ALTER TABLE `page_contactus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_contactus_address`
--

DROP TABLE IF EXISTS `page_contactus_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_contactus_address` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contactus_id` int(11) DEFAULT NULL,
  `language` varchar(3) NOT NULL DEFAULT 'all',
  `title` varchar(256) DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_contactus_address`
--

LOCK TABLES `page_contactus_address` WRITE;
/*!40000 ALTER TABLE `page_contactus_address` DISABLE KEYS */;
INSERT INTO `page_contactus_address` VALUES (2,1,'all','Social Media',4,2,'2015-06-11 16:57:34','2016-12-27 16:12:57',1),(5,1,'all','address',5,2,'2016-12-27 16:13:12','2016-12-27 16:21:38',1);
/*!40000 ALTER TABLE `page_contactus_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_contactus_address_item`
--

DROP TABLE IF EXISTS `page_contactus_address_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_contactus_address_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contactus_address_id` int(11) DEFAULT NULL,
  `type` varchar(256) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `title_bahasa` varchar(255) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_contactus_address_item`
--

LOCK TABLES `page_contactus_address_item` WRITE;
/*!40000 ALTER TABLE `page_contactus_address_item` DISABLE KEYS */;
INSERT INTO `page_contactus_address_item` VALUES (13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,5,'map','MAP','MAP','-2.972103, 104.764463',1,2,'2016-12-27 16:14:21',NULL,1),(29,2,'facebook','Facebook','Facebook','http://facebook.com',1,2,'2017-01-24 15:34:39',NULL,1),(30,2,'instagram','Instagram','Instagram','http://instagram.com',2,2,'2017-01-24 15:35:01','2017-01-27 11:17:59',1);
/*!40000 ALTER TABLE `page_contactus_address_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_gallery`
--

DROP TABLE IF EXISTS `page_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_gallery` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_gallery`
--

LOCK TABLES `page_gallery` WRITE;
/*!40000 ALTER TABLE `page_gallery` DISABLE KEYS */;
INSERT INTO `page_gallery` VALUES (5,6,'Resources','Sumber Daya','','','contents/gallery/5/5-resources-bg.jpg','','','','','','','','',2,'2016-10-20 08:59:34',NULL);
/*!40000 ALTER TABLE `page_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_gallery_category`
--

DROP TABLE IF EXISTS `page_gallery_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_gallery_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_gallery` int(11) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_gallery_category`
--

LOCK TABLES `page_gallery_category` WRITE;
/*!40000 ALTER TABLE `page_gallery_category` DISABLE KEYS */;
INSERT INTO `page_gallery_category` VALUES (6,5,'ARIM Technologies','ARIM Technologies','<p><a href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/6/\"><img src=\"http://cobaweb.co/project/arimtechV2/assets/front-end/images/logo-site.png\" alt=\"\" /></a></p>\n<p><a href=\"http://cobaweb.co/project/arimtechV2/en/our-services\">Learn More</a></p>','<p><a href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/6/\"><img src=\"http://cobaweb.co/project/arimtechV2/assets/front-end/images/logo-site.png\" alt=\"\" /></a></p>\n<p><a href=\"http://cobaweb.co/project/arimtechV2/en/our-services\">Learn More</a></p>',1,2,'2016-10-18 20:01:13','2016-10-21 10:53:03',1),(7,5,'enSilo','enSilo','<p><a title=\"enSilo\" href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/7/\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/partner-1.png\" alt=\"\" /></a></p>\n<p><a href=\"https://www.ensilo.com/resources/\">Learn More</a></p>','<p><a href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/7/\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/partner-1.png\" alt=\"\" /></a></p>\n<p><a href=\"https://www.ensilo.com/resources/\">Learn More</a></p>',1,2,'2016-10-18 20:02:15','2016-10-21 10:52:11',1),(8,5,'ObserveIT','ObserveIT','<p><a href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/8/\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/partner-2.png\" alt=\"\" /></a></p>\n<p><a href=\"http://www.observeit.com/resources\">Learn More</a></p>','<p><a href=\"http://cobaweb.co/project/arimtechV2/en/resources/category/8/\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/partner-2.png\" alt=\"\" /></a></p>\n<p><a href=\"http://www.observeit.com/resources\">Learn More</a></p>',1,2,'2016-10-18 20:03:06','2016-10-21 10:51:57',1);
/*!40000 ALTER TABLE `page_gallery_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_gallery_item`
--

DROP TABLE IF EXISTS `page_gallery_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_gallery_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_gallery_category` int(11) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `headline` varchar(255) NOT NULL,
  `headline_bahasa` varchar(255) NOT NULL,
  `short_description` varchar(256) DEFAULT NULL,
  `short_description_bahasa` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `thumbnail_location` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_gallery_item`
--

LOCK TABLES `page_gallery_item` WRITE;
/*!40000 ALTER TABLE `page_gallery_item` DISABLE KEYS */;
INSERT INTO `page_gallery_item` VALUES (24,7,'Leading Railway Secures Data with enSilo','Leading Railway Secures Data with enSilo','Case Study - Railway','Case Study - Railway','Critical infrastructure operator secures data with minimal operational impact thanks to the enSilo exfiltration prevention platform.','Critical infrastructure operator secures data with minimal operational impact thanks to the enSilo exfiltration prevention platform.','<p style=\"text-align: justify;\">&nbsp;</p>\n<p style=\"text-align: justify;\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/album/11/54-leading-railway-secures-data-with-ensilo.jpg\" alt=\"\" /></p>\n<p style=\"text-align: justify;\">Targeted attacks are not a surprise anymore to Chief Security Officers (CSOs).&nbsp;Hacker tools are becoming more accessible and affordable which makes threat actors growth increases significantly. Businesses still experience the disturbance of&nbsp;quarantining infected devices&nbsp;although attacks are successfully countered.&nbsp; CSOs require an approach to stretch out beyond hackers, which is the reason why leading railway operator sought help from enSilo.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/case_study_railway.pdf\">Learn More</a></p>\n<p>&nbsp;</p>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" style=\"background: white;\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"1\">Download Now</button></div>\n<div id=\"mauticform_wrapper_formleadingrailwaysecuredatawithensilo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formleadingrailwaysecuredatawithensilo\" action=\"https://arimtech.mautic.net/form/submit?formId=12\" autocomplete=\"false\" method=\"post\" target=\"mauticiframe_formleadingrailwaysecuredatawithensilo\" data-mautic-form=\"formleadingrailwaysecuredatawithensilo\">\n<div class=\"mauticform-innerform\"><input id=\"mauticform_formleadingrailwaysecuredatawithensilo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"12\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formleadingrailwaysecuredatawithensilo\" /></div>\n<input id=\"mauticform_formleadingrailwaysecuredatawithensilo_messenger\" name=\"mauticform[messenger]\" type=\"hidden\" value=\"1\" /></form></div>','<p style=\"text-align: justify;\">&nbsp;</p>\n<p style=\"text-align: justify;\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/album/11/54-leading-railway-secures-data-with-ensilo.jpg\" alt=\"\" /></p>\n<p style=\"text-align: justify;\">Targeted attacks are not a surprise anymore to Chief Security Officers (CSOs).&nbsp;Hacker tools are becoming more accessible and affordable which makes threat actors growth increases significantly. Businesses still experience the disturbance of&nbsp;quarantining infected devices&nbsp;although attacks are successfully countered.&nbsp; CSOs require an approach to stretch out beyond hackers, which is the reason why leading railway operator sought help from enSilo.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/case_study_railway.pdf\">Learn More</a></p>\n<p>&nbsp;</p>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-label\" for=\"mauticform_input_formleadingrailwaysecuredatawithensilo_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formleadingrailwaysecuredatawithensilo_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formleadingrailwaysecuredatawithensilo_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"1\">Download Now</button></div>\n<div id=\"mauticform_wrapper_formleadingrailwaysecuredatawithensilo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formleadingrailwaysecuredatawithensilo\" action=\"https://arimtech.mautic.net/form/submit?formId=12\" autocomplete=\"false\" method=\"post\" target=\"mauticiframe_formleadingrailwaysecuredatawithensilo\" data-mautic-form=\"formleadingrailwaysecuredatawithensilo\">\n<div class=\"mauticform-innerform\"><input id=\"mauticform_formleadingrailwaysecuredatawithensilo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"12\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formleadingrailwaysecuredatawithensilo\" /></div>\n<input id=\"mauticform_formleadingrailwaysecuredatawithensilo_messenger\" name=\"mauticform[messenger]\" type=\"hidden\" value=\"1\" /></form></div>','contents/gallery/5-Resources/7/24-leading-railway-secures-data-with-ensilo.jpg','contents/gallery/5-Resources/7/thumb/24-leading-railway-secures-data-with-ensilo-thumb.jpg',2,'2016-10-18 20:08:12','2016-10-21 13:00:49',1),(25,7,'Keeping Financial Institutions Operating','Keeping Financial Institutions Operating','Industry Brief - Financial Industry','Industry Brief - Financial Industry','Learn how enSilo maintains ongoing avaibility of information even in face of an attack.','Learn how enSilo maintains ongoing avaibility of information even in face of an attack.','<p style=\"text-align: center;\">Financial Institution industry holds very high risks from cyber-attack. The consequences are real and costly for both customers and industry when their transactions such as trades, transfers, mortgage and payment are affected. For instance, financial firms can be in sentenced guilty when they have delays in transactions due to infected technical process by cyber-attacks. &nbsp;</p>\n<p style=\"text-align: center;\">enSilo offers helps to financial institutions to protect their transactions from any cyber-attack.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/keeping-financial-institutions-operating\">Learn More</a></p>\n<p style=\"text-align: justify;\">&nbsp;</p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Financial Institution industry holds very high risks from cyber-attack. The consequences are real and costly for both customers and industry when their transactions such as trades, transfers, mortgage and payment are affected. For instance, financial firms can be in sentenced guilty when they have delays in transactions due to infected technical process by cyber-attacks. &nbsp;</p>\n<p style=\"text-align: center;\">enSilo offers helps to financial institutions to protect their transactions from any cyber-attack.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/keeping-financial-institutions-operating\">Learn More</a>&nbsp;</p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/25-keeping-financial-institutions-operating.jpg','contents/gallery/5-Resources/7/thumb/25-keeping-financial-institutions-operating-thumb.jpg',2,'2016-10-19 01:00:18','2016-10-21 11:03:28',1),(26,6,'Managed Security Services (MSS)','Managed Security Services (MSS)','Managed Security Services (MSS)','Managed Security Services (MSS)','Managed Security Services (MSS)','','<p><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/MSSP_Convert1.jpg\" alt=\"MSS\" width=\"350\" height=\"233\" /></p>\n<p>Get the convenience of resilient data protection by having Managed Security Services. Control the configuration of critical security aspects including UTM, NGFW, PAM and WAF through centralized management.</p>\n<p><a title=\"MSS\" href=\"http://cobaweb.co/project/arimtechV2/en/managed-security-services\">Learn More --&gt;&gt;</a></p>','<p><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/MSSP_Convert1.jpg\" alt=\"MSS\" width=\"350\" height=\"233\" /></p>\n<p>Get the convenience of resilient data protection by having Managed Security Services. Control the configuration of critical security aspects including UTM, NGFW, PAM and WAF through centralized management.</p>\n<p><a title=\"MSS\" href=\"http://cobaweb.co/project/arimtechV2/en/managed-security-services\">Learn More --&gt;&gt;</a></p>\n<p>&nbsp;</p>','contents/gallery/5-Resources/6/26-managed-security-services-mss.jpg','contents/gallery/5-Resources/6/thumb/26-managed-security-services-mss-thumb.jpg',2,'2016-10-19 08:22:58','2016-10-21 10:54:40',1),(27,6,'Profesional Security Services (PSS)','Profesional Security Services (PSS)','Profesional Security Services (PSS)','Profesional Security Services (PSS)','Profesional Security Services (PSS)','','<p><span style=\"color: #000000;\"><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/PSS_Convert.jpg\" alt=\"PSS\" width=\"350\" height=\"233\" /></span></p>\n<p><span style=\"color: #000000;\">Assess your organisation&rsquo;s critical security functions through the help of automated scanning or validation from skilled personnel. Improve the resilience by having advanced attack simulation and penetration testing from the expert.</span></p>\n<p><a title=\"PSS\" href=\"http://cobaweb.co/project/arimtechV2/en/profesional-security-services\">Learn More --&gt;&gt;</a></p>','<p><span style=\"color: #000000;\"><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/PSS_Convert.jpg\" alt=\"PSS\" width=\"350\" height=\"233\" /></span></p>\n<p><span style=\"color: #000000;\">Assess your organisation&rsquo;s critical security functions through the help of automated scanning or validation from skilled personnel. Improve the resilience by having advanced attack simulation and penetration testing from the expert.</span></p>\n<p><a title=\"PSS\" href=\"http://cobaweb.co/project/arimtechV2/en/profesional-security-services\">Learn More --&gt;&gt;</a></p>\n<p><span style=\"color: #000000;\">&nbsp;</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>','contents/gallery/5-Resources/6/27-profesional-security-services-pss.jpg','contents/gallery/5-Resources/6/thumb/27-profesional-security-services-pss-thumb.jpg',2,'2016-10-19 08:23:52','2016-10-19 08:46:28',1),(28,6,'Consulting Security Services (CSS)','Consulting Security Services (CSS)','Consulting Security Services (CSS)','Consulting Security Services (CSS)','Consulting Security Services (CSS)','Consulting Security Services (CSS)','<p><span style=\"color: #000000;\"><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/CSS_Convert.jpg\" alt=\"CSS\" width=\"350\" height=\"234\" /></span></p>\n<p><span style=\"color: #000000;\">Review, audit, and validate your company protection against the cyber threat and other specific security function through Firewall Security Assessment, Network Architecture Assessment, and Information Security Assessment (ISMA).</span></p>\n<p><a title=\"CSS\" href=\"http://cobaweb.co/project/arimtechV2/en/consulting-security-services\">Learn More --&gt;&gt;</a></p>','<p><span style=\"color: #000000;\"><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/CSS_Convert.jpg\" alt=\"CSS\" width=\"350\" height=\"234\" /></span></p>\n<p><span style=\"color: #000000;\">Review, audit, and validate your company protection against the cyber threat and other specific security function through Firewall Security Assessment, Network Architecture Assessment, and Information Security Assessment (ISMA).</span></p>\n<p><a title=\"CSS\" href=\"http://cobaweb.co/project/arimtechV2/en/consulting-security-services\">Learn More --&gt;&gt;</a></p>\n<p>&nbsp;</p>','contents/gallery/5-Resources/6/28-consulting-security-services-css.jpg','contents/gallery/5-Resources/6/thumb/28-consulting-security-services-css-thumb.jpg',2,'2016-10-19 08:25:08','2016-10-19 08:46:39',1),(29,7,'YTL Starhill Reduce Operational Costs Of Security','YTL Starhill Reduce Operational Costs Of Security','Case Study -  Investment Fund','Case Study -  Investment Fund','Real Estate Investment Company Protect Data Without Complexity, Thank to the enSilo exfiltration prevention platfort ','Real Estate Investment Company Protect Data Without Complexity, Thank to the enSilo exfiltration prevention platfort ','<p style=\"text-align: center;\">Cost of a targeted attack is not a surprise anymore to Chief Security Officers (CSOs). Costs that the company may face are in variety of form including protection, human resource and downtime. The possibility of the attack is increasing over the year and companies have noticed and ready to take further actions.&nbsp;</p>\n<p style=\"text-align: center;\">YTL Starhill Global REIT Management Limited (YTL Starhill) have predicted the possible excessive cost of hiring cyber-security human resources. Moreover, they required a solution that can adopt with their company quickly and that is easy to operate. enSilo offered YTL Starhill a friendly to use solution to prevent security breach with an affordable price.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/YTL_Starhill_Case_Study.pdf\">Learn More</a>&nbsp;</p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Cost of a targeted attack is not a surprise anymore to Chief Security Officers (CSOs). Costs that the company may face are in variety of form including protection, human resource and downtime. The possibility of the attack is increasing over the year and companies have noticed and ready to take further actions.&nbsp;</p>\n<p style=\"text-align: center;\">YTL Starhill Global REIT Management Limited (YTL Starhill) have predicted the possible excessive cost of hiring cyber-security human resources. Moreover, they required a solution that can adopt with their company quickly and that is easy to operate. enSilo offered YTL Starhill a friendly to use solution to prevent security breach with an affordable price.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/YTL_Starhill_Case_Study.pdf\">Learn More</a>&nbsp;</p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/29-ytl-starhill-reduce-operational-costs-of-security.jpg','contents/gallery/5-Resources/7/thumb/29-ytl-starhill-reduce-operational-costs-of-security-thumb.jpg',2,'2016-10-19 08:58:39','2016-10-21 11:03:45',1),(30,7,'Preventing the impact of Ransomware','Preventing the impact of Ransomware','Industry Brief - Legal','Industry Brief - Legal','Learn how enSilo give law firms peace of mind by stopping ransomware in real-time from encrypting data','Learn how enSilo give law firms peace of mind by stopping ransomware in real-time from encrypting data','<p style=\"text-align: center;\">Legal industry runs on an ever-fast-moving sensitive timeframe. Cyber threats are exploiting their industry nature by using ransomware to disrupt activities and steal victim\'s sensitive data for high ransom.&nbsp;</p>\n<p style=\"text-align: center;\">enSilo ensures that law firms can avoid such things with our solutions.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/ransomware-and-legal\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Legal industry runs on an ever-fast-moving sensitive timeframe. Cyber threats are exploiting their industry nature by using ransomware to disrupt activities and steal victim\'s sensitive data for high ransom.&nbsp;</p>\n<p style=\"text-align: center;\">enSilo ensures that law firms can avoid such things with our solutions.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/ransomware-and-legal\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/30-preventing-the-impact-of-ransomware.jpg','contents/gallery/5-Resources/7/thumb/30-preventing-the-impact-of-ransomware-thumb.jpg',2,'2016-10-19 09:00:27','2016-10-21 11:03:58',1),(31,7,'Keeping VDI Environments Running and Secure','Keeping VDI Environments Running and Secure','Solution Brief - VDI','Solution Brief - VDI','Learn how enSilo can be seamlessly  integrated with VMware  Horizon to support secure, ongoing operation','Learn how enSilo can be seamlessly  integrated with VMware  Horizon to support secure, ongoing operation','<p style=\"text-align: center;\">Legal industry runs on an ever-fast-moving sensitive timeframe. Cyber threats are exploiting their industry nature by using ransomware to disrupt activities and steal victim\'s sensitive data for high ransom.&nbsp;</p>\n<p style=\"text-align: center;\">enSilo ensures that law firms can avoid such things with our solutions.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/keeping-vdi-environments-running-and-secure\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Legal industry runs on an ever-fast-moving sensitive timeframe. Cyber threats are exploiting their industry nature by using ransomware to disrupt activities and steal victim\'s sensitive data for high ransom.&nbsp;</p>\n<p style=\"text-align: center;\">enSilo ensures that law firms can avoid such things with our solutions.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/keeping-vdi-environments-running-and-secure\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/31-keeping-vdi-environments-running-and-secure.jpg','contents/gallery/5-Resources/7/thumb/31-keeping-vdi-environments-running-and-secure-thumb.jpg',2,'2016-10-19 09:01:25','2016-10-21 11:04:16',1),(32,7,'Healthcare - A cyberattack that\'s only getting bigger','Healthcare - A cyberattack that\'s only getting bigger','Industry Brief - Healthcare','Industry Brief - Healthcare','Learn how enSilo ensure healtcare organization prevent any unauthorize use or exfiltration of sensitive medical data.','Learn how enSilo ensure healtcare organization prevent any unauthorize use or exfiltration of sensitive medical data.','<p style=\"text-align: center;\">Despite of the goodwill of the industry, Healthcare organisation is one of the most targeted cyber-attack due to their low investment in cyber-security. Hackers also believe that the sensitive information they possess will likely to help them asking for higher ransom.&nbsp;</p>\n<p style=\"text-align: center;\">Healthcare organisations can trust enSilo to efficiently put sophisticated protection onto your privacy and integrity of personal patients\' data within their system in order to prevent unwanted exfiltration.&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/healthcare-a-cyberattack-that-is-only-getting-bigger\">Learn more</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Perusahaan Layanan Kesehatan telah menjadi target serangan siber semenjak lama, dikarenakan informasi personal bernilai tinggi yang mereka kumpulkan dan gunakan dalam rangkain bisnis mereka.</p>\n<p style=\"text-align: center;\">enSilo memastikan perusahaan layanan kesehatan dapat secara efektif melindungi privasi dan integritas dari data sensitif dalam lingkungan mereka dan mencegah seluruh penggunaan yang tidak terotrisasi atau eksfiltrasi.</p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/32-healthcare-a-cyberattack-thats-only-getting-bigger.jpg','contents/gallery/5-Resources/7/thumb/32-healthcare-a-cyberattack-thats-only-getting-bigger-thumb.jpg',2,'2016-10-19 09:06:47','2016-10-28 18:36:35',1),(33,7,'Vulnerable by Design','Vulnerable by Design','Research Report','Research Report','Learn how attackers appear legitimate in face of security tool by exploiting design vulnerabilities','Learn how attackers appear legitimate in face of security tool by exploiting design vulnerabilities','<p style=\"text-align: center;\">Design vulnerabilities essentially means that an Operating System is prone to bypassing by threat actors to take over the victim\'s device. Multiple cases have been recorded that design vulnerabilities have compromised access controls, sandboxes and space randomisation. Moreover, the recorded cases are not just from Windows devices but also Linux and MacOS.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\">Due to the nature of these vulnerabilities reside inside the core of the system, the risk of attack is inevitable. However, this paper discusses strategies and recommendations for users to deal with this vulnerability.</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/vulnerability_by_design\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">Apa yang terjadi ketika aktor ancaman memanfaatkan kemampuan sebenarnya dari Sistem Operasi (OS) atau aplikasi dan menggunakannya untuk melawan OS/aplikasi itu sendiri? Inilah dimana kerentanan perancangan datang.</p>\n<p style=\"text-align: center;\">Dalam paper ini kami meninjau bagaimana aktor ancaman memotong benteng OS seperti kendali akses, sandbox dan pengacakan ruang secara sederhana dengan menyalahgunakan kemampuan OS yang disengaja. Sayangnya, kerentanan rancangan tidak dibatasi hanya pada Linux dan Mac OS X.</p>\n<p style=\"text-align: center;\">Pembawaan dari kerentanan berarti bahwa mau tidak mau sistem akan terinfeksi. Meskipun demikian, tidak semuanya hilang. Paper ini memberikan strategi dan rekomendasi untuk menghadapi aktor ancaman saat mereka telah menyentuh lingkungan Anda.</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/vulnerability_by_design\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/33-vulnerable-by-design.jpg','contents/gallery/5-Resources/7/thumb/33-vulnerable-by-design-thumb.jpg',2,'2016-10-19 09:08:14','2016-10-28 18:38:09',1),(34,7,'Security Tools : An attacker\'s Dream Come True','Security Tools : An attacker\'s Dream Come True','Research Report','Research Report','We review the vulnerabilities of security tools and their risks. We propose partical steps security taems can take to protect their networks. ','We review the vulnerabilities of security tools and their risks. We propose partical steps security taems can take to protect their networks.','<p style=\"text-align: justify;\">Security tools are highly intrusive. As a highly privileged processes, they pry user behaviour and machine internals; inspect the client, machine, and network activity; and ultimately they determine what is \"acceptable\" and what is not for the client. Security tools are double-edged sword that may pose tremendous threat if seized by an attacker.&nbsp;&nbsp;</p>\n<p style=\"text-align: justify;\"><br />This paper will investigate a few examples of real-life attacks cases where security instruments act as a double-edged sword such as :&nbsp;</p>\n<ul style=\"text-align: justify;\">\n<li>Intrusive implementations in AVG, McAfee, TrendMicro and other host based packages&nbsp;</li>\n<li>Remote code execution exploits in FireEye devices&nbsp;</li>\n<li>Backdoors in Juniper NetScreen routers&nbsp;</li>\n</ul>\n<p style=\"text-align: justify;\"><a href=\"http://pages.ensilo.com/security_tools_an_attackers_dream_come_true\">Learn more</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p>Alat keamanan pada dasarnya memiliki sifat mengacau. Alat-alat keamanan ini menyadari perilaku user dan internal mesin; alat ini bekerja sebagai proses dengan hak istimewa yang tinggi; alat ini menginspeksi user, mesin dan aktivitas jaringan; mereka menentukan untuk kita apa yang baik dan apa yang buruk. Mendapatkan kendali terhadap alat keamanan adalah mimpi penyerang yang menjadi kenyataan.</p>\n<p>Dalam paper ini, kami melihat beberapa contoh serangan, contoh nyata dimana alat keamanan bertindak sebagai pedang dengan dua sisi mata, misalnya:</p>\n<ul>\n<li>Implementasi pengacauan dalam AVG, McAfee, TrendMicro dan paket berbasis host lainnya</li>\n<li>Eksekusi Kode Jarak Jauh mengeksploitasi dalam perangkat in FireEye</li>\n<li>Pintu belakang dalam ruter Juniper NetScreen</li>\n</ul>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>\n<p style=\"text-align: justify;\">&nbsp;</p>','contents/gallery/5-Resources/7/34-security-tools-an-attackers-dream-come-true.jpg','contents/gallery/5-Resources/7/thumb/34-security-tools-an-attackers-dream-come-true-thumb.jpg',2,'2016-10-19 09:09:06','2016-10-28 18:39:21',1),(35,7,'enSilo 30Sec. pitch','enSilo 30Sec. pitch','Video','Video','What does enSilo do? Get the 30sec. elevator pitch','What does enSilo do? Get the 30sec. elevator pitch','<p><iframe src=\"//www.youtube.com/embed/oxMT3gSiR0Y\" width=\"100%\" height=\"350\"></iframe></p>','<p><iframe src=\"//www.youtube.com/embed/oxMT3gSiR0Y\" width=\"100%\" height=\"350\"></iframe></p>','contents/gallery/5-Resources/7/35-ensilo-30sec-pitch.jpg','contents/gallery/5-Resources/7/thumb/35-ensilo-30sec-pitch-thumb.jpg',2,'2016-10-19 09:11:20','2016-10-21 09:31:42',1),(36,7,'enSilo in a nutshell','enSilo in a nutshell','Brochure','Brochure','enSilo offer a real -time, exfiltration prevention platform against advanced attacks. learn it how it work and the advantages of this platform','enSilo offer a real -time, exfiltration prevention platform against advanced attacks. learn it how it work and the advantages of this platform','<p style=\"text-align: center;\">enSilo offer a real -time, exfiltration prevention platform against advanced attacks. learn it how it work and the advantages of this platform</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/enSilo-in-a-Nutshell.pdf\">View More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','<p style=\"text-align: center;\">enSilo offer a real -time, exfiltration prevention platform against advanced attacks. learn it how it work and the advantages of this platform</p>\n<p style=\"text-align: center;\"><a href=\"http://resources.ensilo.com/hubfs/pdfs/enSilo-in-a-Nutshell.pdf\">View More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>','contents/gallery/5-Resources/7/36-ensilo-in-a-nutshell.jpg','contents/gallery/5-Resources/7/thumb/36-ensilo-in-a-nutshell-thumb.jpg',2,'2016-10-19 09:12:32','2016-10-21 11:05:37',1),(37,7,'Movers & Shakers interview with Roy Katmo, CEO of enSilo','Movers & Shakers interview with Roy Katmo, CEO of enSilo','Analist Report','Analist Report','Frost & sullivan feature enSilo and their movers & shaker edition . see why enSilo stand out from the crowd','Frost & sullivan feature enSilo and their movers & shaker edition . see why enSilo stand out from the crowd','<div class=\"mauticform-error\" style=\"text-align: center;\">Frost &amp; sullivan feature enSilo and their movers &amp; shaker edition . see why enSilo stand out from the crowd</div>\n<div id=\"mauticform_formmoversandshakersinterviewwithroykatmorceoofensilo_error\" class=\"mauticform-error\" style=\"text-align: center;\">&nbsp;<a href=\"http://resources.ensilo.com/hubfs/pdfs/Movers_and_Shakers_Interview_with_Roy_Katmor_-_CEO_of_enSilo.pdf\">View More</a></div>','<div id=\"mauticform_formmoversandshakersinterviewwithroykatmorceoofensilo_error\" class=\"mauticform-error\" style=\"text-align: center;\">\n<div class=\"mauticform-error\" style=\"text-align: center;\">Frost &amp; sullivan feature enSilo and their movers &amp; shaker edition . see why enSilo stand out from the crowd</div>\n<div id=\"mauticform_formmoversandshakersinterviewwithroykatmorceoofensilo_error\" class=\"mauticform-error\" style=\"text-align: center;\">&nbsp;<a href=\"http://resources.ensilo.com/hubfs/pdfs/Movers_and_Shakers_Interview_with_Roy_Katmor_-_CEO_of_enSilo.pdf\">View More</a></div>\n</div>','contents/gallery/5-Resources/7/37-movers-shakers-interview-with-roy-katmo-ceo-of-ensilo.jpg','contents/gallery/5-Resources/7/thumb/37-movers-shakers-interview-with-roy-katmo-ceo-of-ensilo-thumb.jpg',2,'2016-10-19 09:14:17','2016-10-21 09:32:48',1),(38,7,'Virtual patching for Pos System','Virtual patching for Pos System','Industri Brief - Retail','Industri Brief - Retail','Learn how enSilo eliminate system downtime during the investigation and remidiation of an alert','Learn how enSilo eliminate system downtime during the investigation and remidiation of an alert','<p style=\"text-align: center;\">Point of Sale (PoS) is becoming vulnerable to hackers who are after stealing payment card credentials. When PoS system is targeted and taken down at the store, business operations would go offline and negatively affect the business revenue.&nbsp;</p>\n<p style=\"text-align: center;\">Virtual patching is one of the solution that enSilo offers to fight back from PoS.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/virtual-patching-and-point-of-sales\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>\n<div id=\"mauticform_wrapper_formleadingrailwaysecuredatawithensilo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formleadingrailwaysecuredatawithensilo\" action=\"https://arimtech.mautic.net/form/submit?formId=12\" autocomplete=\"false\" method=\"post\" target=\"mauticiframe_formleadingrailwaysecuredatawithensilo\" data-mautic-form=\"formleadingrailwaysecuredatawithensilo\">\n<div class=\"mauticform-innerform\" style=\"text-align: center;\"><input id=\"mauticform_formleadingrailwaysecuredatawithensilo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"12\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formleadingrailwaysecuredatawithensilo\" /></div>\n<input id=\"mauticform_formleadingrailwaysecuredatawithensilo_messenger\" name=\"mauticform[messenger]\" type=\"hidden\" value=\"1\" /></form></div>','<p style=\"text-align: center;\">Point of Sale (PoS) is becoming vulnerable to hackers who are after stealing payment card credentials. When PoS system is targeted and taken down at the store, business operations would go offline and negatively affect the business revenue.&nbsp;</p>\n<p style=\"text-align: center;\">Virtual patching is one of the solution that enSilo offers to fight back from PoS.&nbsp;&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"http://pages.ensilo.com/virtual-patching-and-point-of-sales\">Learn More</a></p>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"full_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\">Full Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_full_name\" class=\"mauticform-input\" name=\"mauticform[full_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"business_email\" data-validation-type=\"email\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\">Business Email</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_business_email\" class=\"mauticform-input\" name=\"mauticform[business_email]\" type=\"email\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"company_name\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\">Company Name</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_company_name\" class=\"mauticform-input\" name=\"mauticform[company_name]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-row mauticform-number mauticform-required\" data-validate=\"phone_number\" data-validation-type=\"number\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\">Phone Number</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_phone_number\" class=\"mauticform-input\" name=\"mauticform[phone_number]\" type=\"number\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"designation\" data-validation-type=\"text\"><label id=\"mauticform_label_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-label\" for=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\">Designation</label>&nbsp;<input id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_designation\" class=\"mauticform-input\" name=\"mauticform[designation]\" type=\"text\" value=\"\" /></div>\n<div id=\"mauticform_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_formkeepingfinancialinstitutionsoperating_download_now\" class=\"mauticform-button btn btn-default\" name=\"mauticform[download_now]\" type=\"submit\" value=\"\">Download Now</button></div>\n<div id=\"mauticform_wrapper_formleadingrailwaysecuredatawithensilo\" class=\"mauticform_wrapper\"><form id=\"mauticform_formleadingrailwaysecuredatawithensilo\" action=\"https://arimtech.mautic.net/form/submit?formId=12\" autocomplete=\"false\" method=\"post\" target=\"mauticiframe_formleadingrailwaysecuredatawithensilo\" data-mautic-form=\"formleadingrailwaysecuredatawithensilo\">\n<div class=\"mauticform-innerform\"><input id=\"mauticform_formleadingrailwaysecuredatawithensilo_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"12\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" /> <input id=\"mauticform_formleadingrailwaysecuredatawithensilo_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"formleadingrailwaysecuredatawithensilo\" /></div>\n<input id=\"mauticform_formleadingrailwaysecuredatawithensilo_messenger\" name=\"mauticform[messenger]\" type=\"hidden\" value=\"1\" /></form></div>','contents/gallery/5-Resources/7/38-virtual-patching-for-pos-system.jpg','contents/gallery/5-Resources/7/thumb/38-virtual-patching-for-pos-system-thumb.jpg',2,'2016-10-19 09:15:21','2016-10-21 11:05:59',1),(39,7,'Intro to enSilo','Intro to enSilo','Video','Video','learn about targeted cyber-attacks and how enSilo changes the current approach to combatting cyber-threats','learn about targeted cyber-attacks and how enSilo changes the current approach to combatting cyber-threats','<p><iframe src=\"//www.youtube.com/embed/eiZYgKBVHTg\" width=\"100%\" height=\"350\"></iframe></p>','<p><iframe src=\"//www.youtube.com/embed/eiZYgKBVHTg\" width=\"100%\" height=\"350\"></iframe></p>','contents/gallery/5-Resources/7/39-intro-to-ensilo.jpg','contents/gallery/5-Resources/7/thumb/39-intro-to-ensilo-thumb.jpg',2,'2016-10-19 09:16:22','2016-10-21 09:33:18',1),(40,7,'We lost the battle against intusiosn. We are left to raise Our hand in defeat?','We lost the battle against intusiosn. We are left to raise Our hand in defeat?','Webinar','Webinar','We propose new security strategy which looks at preventing thr consequences of cyber-attack. ','We propose new security strategy which looks at preventing thr consequences of cyber-attack. ','<p><iframe src=\"//www.youtube.com/embed/wDCPKC2TkNA\" width=\"100%\" height=\"350\"></iframe></p>','<p><iframe src=\"//www.youtube.com/embed/wDCPKC2TkNA\" width=\"100%\" height=\"350\"></iframe></p>','contents/gallery/5-Resources/7/40-we-lost-the-battle-against-intusiosn-we-are-left-to-raise-our-hand-in-defeat.jpg','contents/gallery/5-Resources/7/thumb/40-we-lost-the-battle-against-intusiosn-we-are-left-to-raise-our-hand-in-defeat-thumb.jpg',2,'2016-10-19 09:17:28','2016-10-21 09:33:25',1),(42,8,'CUSTOMER STORIES','CUSTOMER STORIES','','','','','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-337\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/aig\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/aig-customer.gif\" alt=\"AIG Customer Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-338\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/xerox\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/xerox-customer.gif\" alt=\"Xerox Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-339\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/premier-league\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/premier-league-customer-matrix_0.gif\" alt=\"Premier League Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-340\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/bank-leumi\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/leumi-card-customer-matrix_0.gif\" alt=\"Leumi Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-342\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/telecom-argentina\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/telecom-argentina-customer-matrix_0.gif\" alt=\"Telecom Argentina Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-343\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/bellin\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/bellin-customer-matrix_0.gif\" alt=\"Bellin Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-344\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/pelephone\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pelephone-customer-matrix_0.gif\" alt=\"Pelephone Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-345\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/elektrotim\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/elektrotim-customer-matrix_0.gif\" alt=\"Elektrotim Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-384\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/toshiba\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/toshiba-customers_0.gif\" alt=\"Toshiba Customers\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-817\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/desert-diamond-casinos-case-study\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Desert%20Diamond%20Casino%20Square.png\" alt=\"Desert Diamond Casinos Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-816\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/comanche-nation-casinos-case-study\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Comanche-Nation-Casino-Logo.jpg\" alt=\"Comanche Nation Casino Card\" /> </a></div>\n</div>\n</div>\n</div>','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-337\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/aig\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/aig-customer.gif\" alt=\"AIG Customer Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-338\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/xerox\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/xerox-customer.gif\" alt=\"Xerox Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-339\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/premier-league\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/premier-league-customer-matrix_0.gif\" alt=\"Premier League Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-340\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/bank-leumi\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/leumi-card-customer-matrix_0.gif\" alt=\"Leumi Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-342\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/telecom-argentina\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/telecom-argentina-customer-matrix_0.gif\" alt=\"Telecom Argentina Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-343\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/bellin\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/bellin-customer-matrix_0.gif\" alt=\"Bellin Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-344\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/pelephone\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pelephone-customer-matrix_0.gif\" alt=\"Pelephone Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-345\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/elektrotim\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/elektrotim-customer-matrix_0.gif\" alt=\"Elektrotim Matrix Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-384\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/toshiba\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/toshiba-customers_0.gif\" alt=\"Toshiba Customers\" /> </a></div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-817\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/desert-diamond-casinos-case-study\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Desert%20Diamond%20Casino%20Square.png\" alt=\"Desert Diamond Casinos Card\" /> </a></div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-816\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://www.observeit.com/solutions/casestudies/comanche-nation-casinos-case-study\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Comanche-Nation-Casino-Logo.jpg\" alt=\"Comanche Nation Casino Card\" /> </a></div>\n</div>\n</div>\n</div>','contents/gallery/5-Resources/8/42-customer-stories.jpg','contents/gallery/5-Resources/8/thumb/42-customer-stories-thumb.jpg',2,'2016-10-19 10:21:30','2016-10-19 13:52:31',1),(43,8,'RECORDED WEBINARS','RECORDED WEBINARS','','','','','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-998\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/eric-cole-threat-hunting-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/threat-hunting-the-insider-2_1.jpg\" alt=\"Threat Hunting The Insider - Proactive Response\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/eric-cole-threat-hunting-webinar-registration.html\" target=\"_blank\">Threat Hunting The Insider - Proactive Response</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-956\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/unintentional-insider-threat-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/unintentional-video-thumb-1.jpg\" alt=\"Unintentional Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/unintentional-insider-threat-registration.html\" target=\"_blank\">Unintentional Insider Threat</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-909\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-law-balancing-privacy-and-protection-registration.html\" target=\" _blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider-theat-law-webinar-v4_0.jpg\" alt=\"Insider Threat Law: Balancing Privacy and Protection\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-law-balancing-privacy-and-protection-registration.html\" target=\" _blank\">Insider Threat Law: Balancing Privacy and Protection</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-903\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/eric-cole-2016-priorities-webinar-registration.html\" target=\"blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/why%20insider%20threat%20is%20a%20c-level%20priority.png\" alt=\"Why Insider Threat is a C-Level Priority\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/eric-cole-2016-priorities-webinar-registration.html\" target=\"blank\">Why Insider Threat is a C-Level Priority</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-867\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/how-to-build-an-insider-threat-program-in-30-minutes-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider%20threat%20program%20-%20own%20it%20%281%29.png\" alt=\"How to Build an Insider Threat Program in 30 Minutes\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/how-to-build-an-insider-threat-program-in-30-minutes-webinar-registration.html\" target=\"_blank\">Build an Insider Threat Program in 30 Minutes</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-864\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-experts-panel-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider-threat-report-icon%20163x112.png\" alt=\"How to Prevent, Detect and Remediate Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-experts-panel-registration.html\" target=\"_blank\">How to Prevent, Detect and Remediate Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-862\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/uba-for-insider-threat-webinar-registration.html\" target=\" _blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider%20threat%20caveman_0.jpg\" alt=\"UBA for Insider Threat Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/uba-for-insider-threat-webinar-registration.html\" target=\" _blank\">A New Approach to Solve an Age-Old Security Problem</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-829\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-6-0-release-see-whats-new-webinar-registration.html\" target=\"blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Danger-Sign.jpg\" alt=\"The Danger Within: Detecting and Mitigating Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-6-0-release-see-whats-new-webinar-registration.html\" target=\"blank\">The Danger Within: Detecting and Mitigating Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-828\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/unix-linux-threat-detection-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/unix%20linux%20webinar.png\" alt=\"Managing Insider Threat on Unix/Linux\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/unix-linux-threat-detection-webinar-registration.html\" target=\"_blank\">Managing Insider Threat on Unix/Linux</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-825\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ponemon_Webinar%20Pic.jpg\" alt=\"Ponemon 6.0 Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\">Ponemon Study: Distinguish Abuse from Legitimate Use</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-820\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/pure-fishing-sap-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/SAP-Logo.png\" alt=\"Monitor and Mitigate SAP Security Risks at Pure Fishing\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\">Monitor and Mitigate SAP Security Risks at Pure Fishing</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-804\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/VDIorVeryDefenselessInfrastructure-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Citrix_Ready%20Image%20for%20resource_0.JPG\" alt=\"\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/VDIorVeryDefenselessInfrastructure-webinar-registration.html\" target=\"_blank\">\"VDI\" or Very Defenseless Infrastructure?</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-799\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-out-of-sight-out-of-mind-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Preventing%20Insider%20Threats%20with%20UAM_0.JPG\" alt=\"Preventing Insider Threats with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-out-of-sight-out-of-mind-webinar-registration.html\" target=\"_blank\">Preventing Insider Threats with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-771\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/2015Q2ChangeMangement-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/change-management.png\" alt=\"Change Management with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/2015Q2ChangeMangement-Registration-Page.html\" target=\"_blank\">Change Management with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-747\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/privileged-user-monitoring-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/super-user-super-threat.png\" alt=\"Privileged User Monitoring with ObserveIT\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/privileged-user-monitoring-webinar-registration.html\" target=\"_blank\">Privileged User Monitoring with ObserveIT</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-758\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/2015-06-3-the-ins-and-outs-of-observeit.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/ins-and-outs-icon.png\" alt=\"User Activity Monitoring Overview and Product Demonstration\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/2015-06-3-the-ins-and-outs-of-observeit.html\" target=\"_blank\">User Activity Monitoring Overview and Product Demonstration</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-728\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/data-protection-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Data-Protection-icon_0.png\" alt=\"Data Protection Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/data-protection-webinar-registration.html\" target=\"_blank\">Improving Data Protection with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-213\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-xerox-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/xerox-webinar.jpg\" alt=\"Fraud Detection with Employee Monitoring at Xerox\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-xerox-webinar-registration.html\" target=\"_blank\">Fraud Detection with Employee Monitoring at Xerox</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-692\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/sans-cyber-security-panel-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/discussing-the-risk-of-data-exposure-through-application-usage.jpg\" alt=\"Cyber Security Panel Discussion by SANS Institute\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/sans-cyber-security-panel-webinar-registration.html\" target=\"_blank\">Cyber Security Panel Discussion by SANS Institute</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-333\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/allianz-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/allianz-webinar-thumb.jpg\" alt=\"Risk Mitigation with Third-party Monitoring at Allianz Insurance\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/allianz-webinar-registration.html\" target=\"_blank\">Risk Mitigation with Third-party Monitoring at Allianz Insurance</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-169\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/3-tips-for-managing-risky-user-activity-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_3_tips_s.png\" alt=\"Top Security Concerns in 2015 by EMA Research\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/3-tips-for-managing-risky-user-activity-webinar-registration.html\" target=\"_blank\">Top Security Concerns in 2015 by EMA Research</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-170\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/aig-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_aig_s.png\" alt=\"Satisfy PCI 3.0 with Privileged User Monitoring at AIG\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/aig-webinar-registration.html\" target=\"_blank\">Satisfy PCI 3.0 with Privileged User Monitoring at AIG</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-171\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/remote-vendor-monitoring-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_remote_s.png\" alt=\"Remote Vendor Best Practices and Third-party Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/remote-vendor-monitoring-webinar-registration.html\" target=\"_blank\">Remote Vendor Best Practices and Third-party Monitoring</a></div>\n</div>\n</div>\n</div>\n</div>','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-998\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/eric-cole-threat-hunting-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/threat-hunting-the-insider-2_1.jpg\" alt=\"Threat Hunting The Insider - Proactive Response\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/eric-cole-threat-hunting-webinar-registration.html\" target=\"_blank\">Threat Hunting The Insider - Proactive Response</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-956\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/unintentional-insider-threat-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/unintentional-video-thumb-1.jpg\" alt=\"Unintentional Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/unintentional-insider-threat-registration.html\" target=\"_blank\">Unintentional Insider Threat</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-909\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-law-balancing-privacy-and-protection-registration.html\" target=\" _blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider-theat-law-webinar-v4_0.jpg\" alt=\"Insider Threat Law: Balancing Privacy and Protection\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-law-balancing-privacy-and-protection-registration.html\" target=\" _blank\">Insider Threat Law: Balancing Privacy and Protection</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-903\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/eric-cole-2016-priorities-webinar-registration.html\" target=\"blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/why%20insider%20threat%20is%20a%20c-level%20priority.png\" alt=\"Why Insider Threat is a C-Level Priority\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/eric-cole-2016-priorities-webinar-registration.html\" target=\"blank\">Why Insider Threat is a C-Level Priority</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-867\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/how-to-build-an-insider-threat-program-in-30-minutes-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider%20threat%20program%20-%20own%20it%20%281%29.png\" alt=\"How to Build an Insider Threat Program in 30 Minutes\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/how-to-build-an-insider-threat-program-in-30-minutes-webinar-registration.html\" target=\"_blank\">Build an Insider Threat Program in 30 Minutes</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-864\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-experts-panel-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider-threat-report-icon%20163x112.png\" alt=\"How to Prevent, Detect and Remediate Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-experts-panel-registration.html\" target=\"_blank\">How to Prevent, Detect and Remediate Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-862\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/uba-for-insider-threat-webinar-registration.html\" target=\" _blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/insider%20threat%20caveman_0.jpg\" alt=\"UBA for Insider Threat Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/uba-for-insider-threat-webinar-registration.html\" target=\" _blank\">A New Approach to Solve an Age-Old Security Problem</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-829\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-6-0-release-see-whats-new-webinar-registration.html\" target=\"blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Danger-Sign.jpg\" alt=\"The Danger Within: Detecting and Mitigating Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-6-0-release-see-whats-new-webinar-registration.html\" target=\"blank\">The Danger Within: Detecting and Mitigating Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-828\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/unix-linux-threat-detection-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/unix%20linux%20webinar.png\" alt=\"Managing Insider Threat on Unix/Linux\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/unix-linux-threat-detection-webinar-registration.html\" target=\"_blank\">Managing Insider Threat on Unix/Linux</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-825\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ponemon_Webinar%20Pic.jpg\" alt=\"Ponemon 6.0 Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\">Ponemon Study: Distinguish Abuse from Legitimate Use</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-820\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/pure-fishing-sap-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/SAP-Logo.png\" alt=\"Monitor and Mitigate SAP Security Risks at Pure Fishing\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-webinar-registration.html\" target=\"_blank\">Monitor and Mitigate SAP Security Risks at Pure Fishing</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-804\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/VDIorVeryDefenselessInfrastructure-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Citrix_Ready%20Image%20for%20resource_0.JPG\" alt=\"\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/VDIorVeryDefenselessInfrastructure-webinar-registration.html\" target=\"_blank\">\"VDI\" or Very Defenseless Infrastructure?</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-799\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/insider-threat-out-of-sight-out-of-mind-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Preventing%20Insider%20Threats%20with%20UAM_0.JPG\" alt=\"Preventing Insider Threats with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/insider-threat-out-of-sight-out-of-mind-webinar-registration.html\" target=\"_blank\">Preventing Insider Threats with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-771\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/2015Q2ChangeMangement-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/change-management.png\" alt=\"Change Management with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/2015Q2ChangeMangement-Registration-Page.html\" target=\"_blank\">Change Management with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-747\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/privileged-user-monitoring-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/super-user-super-threat.png\" alt=\"Privileged User Monitoring with ObserveIT\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/privileged-user-monitoring-webinar-registration.html\" target=\"_blank\">Privileged User Monitoring with ObserveIT</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-758\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/2015-06-3-the-ins-and-outs-of-observeit.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/ins-and-outs-icon.png\" alt=\"User Activity Monitoring Overview and Product Demonstration\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/2015-06-3-the-ins-and-outs-of-observeit.html\" target=\"_blank\">User Activity Monitoring Overview and Product Demonstration</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-728\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/data-protection-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Data-Protection-icon_0.png\" alt=\"Data Protection Webinar\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/data-protection-webinar-registration.html\" target=\"_blank\">Improving Data Protection with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-213\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-xerox-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/xerox-webinar.jpg\" alt=\"Fraud Detection with Employee Monitoring at Xerox\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-xerox-webinar-registration.html\" target=\"_blank\">Fraud Detection with Employee Monitoring at Xerox</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-692\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/sans-cyber-security-panel-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/discussing-the-risk-of-data-exposure-through-application-usage.jpg\" alt=\"Cyber Security Panel Discussion by SANS Institute\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/sans-cyber-security-panel-webinar-registration.html\" target=\"_blank\">Cyber Security Panel Discussion by SANS Institute</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-333\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/allianz-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/allianz-webinar-thumb.jpg\" alt=\"Risk Mitigation with Third-party Monitoring at Allianz Insurance\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/allianz-webinar-registration.html\" target=\"_blank\">Risk Mitigation with Third-party Monitoring at Allianz Insurance</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-169\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/3-tips-for-managing-risky-user-activity-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_3_tips_s.png\" alt=\"Top Security Concerns in 2015 by EMA Research\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/3-tips-for-managing-risky-user-activity-webinar-registration.html\" target=\"_blank\">Top Security Concerns in 2015 by EMA Research</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-170\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/aig-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_aig_s.png\" alt=\"Satisfy PCI 3.0 with Privileged User Monitoring at AIG\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/aig-webinar-registration.html\" target=\"_blank\">Satisfy PCI 3.0 with Privileged User Monitoring at AIG</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-171\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/remote-vendor-monitoring-webinar-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/webinars_remote_s.png\" alt=\"Remote Vendor Best Practices and Third-party Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/remote-vendor-monitoring-webinar-registration.html\" target=\"_blank\">Remote Vendor Best Practices and Third-party Monitoring</a></div>\n</div>\n</div>\n</div>\n</div>','contents/gallery/5-Resources/8/43-recorded-webinars.jpg','contents/gallery/5-Resources/8/thumb/43-recorded-webinars-thumb.jpg',2,'2016-10-19 10:22:07','2016-10-19 13:24:36',1),(44,8,'WHITE PAPERS','WHITE PAPERS','','','','','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-832\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/addressing-singapores-trm-with-uba-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Singapore-WP-Pic.JPG\" alt=\"Addressing Singapore\'s TRM with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/addressing-singapores-trm-with-uba-registration.html\" target=\"_blank\">Addressing Technology Risk Management with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-827\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/data-loss-prevention-whitepaper-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/DLP%20WP.JPG\" alt=\"Preventing Data Loss with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/data-loss-prevention-whitepaper-registration.html\" target=\"_blank\">Preventing Data Loss with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-823\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/top-reasons-why-siem-cant-protect-your-data-from-insider-threat-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/TOP%20REASONS%20WHY%20SIEM%20CAN%E2%80%99T%20PROTECT%20YOUR%20DATA%20FROM%20INSIDER%20THREAT.JPG\" alt=\"Top Reasons Why SIEM Can&rsquo;t Protect Your Data from Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/top-reasons-why-siem-cant-protect-your-data-from-insider-threat-registration.html\" target=\"_blank\">Top Reasons Why Siem Can&rsquo;t Protect Your Data from Insider Threat</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-822\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/five-things-you-should-know-about-insider-threats-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Five%20things%20you%20should%20know%20about%20insider%20threats.JPG\" alt=\"Five Things You Should Know About Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/five-things-you-should-know-about-insider-threats-registration.html\" target=\"_blank\">Five Things You Should Know About Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-797\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/CyberArkandObserveITComparison-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/cyerark.png\" alt=\"CyberArk and ObserveIT Product Comparison\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/CyberArkandObserveITComparison-registration.html\" target=\"_blank\">CyberArk and ObserveIT Product Comparison</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-404\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/security-threat-trifecta-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/the-security-threat-trifecta.gif\" alt=\"The Insider Threat Trifecta\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/security-threat-trifecta-registration-page.html\" target=\"_blank\">The Insider Threat Trifecta: People, Apps and Activities</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-200\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/strangers-in-your-servers.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_strangers_on_servers.jpg\" alt=\"Strangers in Your Servers\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/strangers-in-your-servers.html\" target=\"_blank\">Strangers In Your Servers: Monitoring Contractors</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-798\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/must-monitor-insurance-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/claims-wp_0.png\" alt=\"Insurance Applications at Risk for Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/must-monitor-insurance-applications-registration.html\" target=\"_blank\">Must Monitor High Risk Insurance Applications</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-782\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ponemon-application-risk-report-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ponemon-icon_0.png\" alt=\"Ponemon: A Study of the Risk from App Access and Usage\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-application-risk-report-registration-page.html\" target=\"_blank\">Ponemon: A Study of the Risk from App Access and Usage</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-795\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/InsiderThreatReport2015-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Icon%20for%20Insider%20Threat%20Report_0.jpg\" alt=\"2015 Insider Threat and User Activity Monitoring Report\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/InsiderThreatReport2015-Registration-Page.html\" target=\"_blank\">2015 Insider Threat and User Behavior Analytics Report</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-717\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/16-cloud-apps-you-need-to-know-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/16%20Cloud%20Apps.png\" alt=\"16 Cloud Apps You Need To Know If Employees Are Using\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/16-cloud-apps-you-need-to-know-registration-page.html\" target=\"_blank\">16 Cloud Apps You Need To Know If Employees Are Using</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-754\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/5-must-monitor-financial-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5%20Must%20Monitor%20Financial-resource.png\" alt=\"Insider Threat Detection in Financial Services\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/5-must-monitor-financial-applications-registration.html\" target=\"_blank\">Insider Threat Detection in Financial Services</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-753\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/5-must-monitor-healthcare-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5%20Must%20Monitor%20Healthcare%20-%20resource.png\" alt=\"Insider Threat Detection in Healthcare\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/5-must-monitor-healthcare-applications-registration.html\" target=\"_blank\">Insider Threat Detection in Healthcare</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-734\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/kupperingcole-privileged-user-report-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Kuppingercole-report-icon.png\" alt=\"Privileged Identity Management Trend Report by KupperingCole\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/kupperingcole-privileged-user-report-registration-page.html\" target=\"_blank\">Privileged Identity Management Trend Report by KupperingCole</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-347\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/PCIDatasheet-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pci-compliance-matrix.gif\" alt=\"PCI 3.0 Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/PCIDatasheet-Registration-Page.html\" target=\"_blank\"> PCI 3.0 Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-355\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/HIPAADatasheet-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/hipaa-compliance-matrix.gif\" alt=\"HIPAA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/HIPAADatasheet-Registration-Page.html\" target=\"_blank\">HIPAA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-781\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/NISTDatasheet_Content-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/NIST%20Cover_0.JPG\" alt=\"NIST Security Framework with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/NISTDatasheet_Content-Registration-Page.html\" target=\"_blank\">NIST Security Framework with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-763\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/TenThingsYouCanOnlyDowithObserveIT_-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/TopTenUseCasesforObserveIT.png\" alt=\"Ten Things You Can Only Do with ObserveIT\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/TenThingsYouCanOnlyDowithObserveIT_-Registration-Page.html\" target=\"_blank\">10 Things You Can Only Do with ObserveIT</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-528\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/sans-20-with-observeit-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/addressing-7-of-sans-20-critical-security-controls_0.jpg\" alt=\"How ObserveIT Addresses 7 of SANS 20 Critical Security Controls\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/sans-20-with-observeit-registration.html\" target=\"_blank\">How ObserveIT Addresses 7 of SANS 20 Critical Security Controls</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-703\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ten-ways-observeit-smarter-than-smart-auditor-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/10-ways-observeit-is-smarter-than-smartauditor.jpg\" alt=\"Top 10 Ways ObserveIT Is Smarter Than SmartAuditor\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ten-ways-observeit-smarter-than-smart-auditor-registration-page.html\" target=\"_blank\">10 Ways ObserveIT Is Smarter Than SmartAuditor</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-257\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/five-reasons-you-need-uam-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5-reasons-you-need-user-activity-monitoring.gif\" alt=\"5 Reasons You Need User Activity Monitoring Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/five-reasons-you-need-uam-registration-page.html\" target=\"_blank\">5 Reasons You Need User Activity Monitoring Right Now</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-256\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/mitigating-business-user-risk-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/mitigating-your-biggest-security-risk.gif\" alt=\"Mitigating your Biggest Security Risk Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/mitigating-business-user-risk-registration.html\" target=\"_blank\">Mitigating your Biggest Security Risk: Your Business Users</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-255\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/mind-the-gap-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/mind-the-gap.gif\" alt=\"Mind the Gap Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/mind-the-gap-registration.html\" target=\"_blank\">Mind the Gap - Infrastructure vs. User-Based Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-198\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/know-your-risky-users-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_ema_0.jpg\" alt=\"EMA Report: Mitigating Insider Threats and User Based Risk\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/know-your-risky-users-registration.html\" target=\"_blank\">EMA Report: Mitigating Insider Threats and User Based Risk</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-199\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/gartner-report-missing-vantage-point-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_your_critical_missing_security_vantage_point.jpg\" alt=\"Gartner Research Report: User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/gartner-report-missing-vantage-point-registration.html\" target=\"_blank\">Gartner Research Report: User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-436\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ensuring-security-with-privacy-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ensuring%20Security%20pic1_0.JPG\" alt=\"Employee Monitoring: Ensuring Security and Maintain Privacy\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ensuring-security-with-privacy-registration.html\" target=\"_blank\">Employee Monitoring: Ensuring Security and Maintain Privacy</a></div>\n</div>\n</div>\n</div>\n</div>','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-832\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/addressing-singapores-trm-with-uba-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Singapore-WP-Pic.JPG\" alt=\"Addressing Singapore\'s TRM with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/addressing-singapores-trm-with-uba-registration.html\" target=\"_blank\">Addressing Technology Risk Management with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-827\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/data-loss-prevention-whitepaper-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/DLP%20WP.JPG\" alt=\"Preventing Data Loss with User Behavior Analytics\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/data-loss-prevention-whitepaper-registration.html\" target=\"_blank\">Preventing Data Loss with User Behavior Analytics</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-823\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/top-reasons-why-siem-cant-protect-your-data-from-insider-threat-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/TOP%20REASONS%20WHY%20SIEM%20CAN%E2%80%99T%20PROTECT%20YOUR%20DATA%20FROM%20INSIDER%20THREAT.JPG\" alt=\"Top Reasons Why SIEM Can&rsquo;t Protect Your Data from Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/top-reasons-why-siem-cant-protect-your-data-from-insider-threat-registration.html\" target=\"_blank\">Top Reasons Why Siem Can&rsquo;t Protect Your Data from Insider Threat</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-822\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/five-things-you-should-know-about-insider-threats-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Five%20things%20you%20should%20know%20about%20insider%20threats.JPG\" alt=\"Five Things You Should Know About Insider Threats\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/five-things-you-should-know-about-insider-threats-registration.html\" target=\"_blank\">Five Things You Should Know About Insider Threats</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-797\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/CyberArkandObserveITComparison-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/cyerark.png\" alt=\"CyberArk and ObserveIT Product Comparison\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/CyberArkandObserveITComparison-registration.html\" target=\"_blank\">CyberArk and ObserveIT Product Comparison</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-404\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/security-threat-trifecta-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/the-security-threat-trifecta.gif\" alt=\"The Insider Threat Trifecta\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/security-threat-trifecta-registration-page.html\" target=\"_blank\">The Insider Threat Trifecta: People, Apps and Activities</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-200\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/strangers-in-your-servers.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_strangers_on_servers.jpg\" alt=\"Strangers in Your Servers\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/strangers-in-your-servers.html\" target=\"_blank\">Strangers In Your Servers: Monitoring Contractors</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-798\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/must-monitor-insurance-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/claims-wp_0.png\" alt=\"Insurance Applications at Risk for Insider Threat\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/must-monitor-insurance-applications-registration.html\" target=\"_blank\">Must Monitor High Risk Insurance Applications</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-782\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ponemon-application-risk-report-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ponemon-icon_0.png\" alt=\"Ponemon: A Study of the Risk from App Access and Usage\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ponemon-application-risk-report-registration-page.html\" target=\"_blank\">Ponemon: A Study of the Risk from App Access and Usage</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-795\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/InsiderThreatReport2015-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Icon%20for%20Insider%20Threat%20Report_0.jpg\" alt=\"2015 Insider Threat and User Activity Monitoring Report\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/InsiderThreatReport2015-Registration-Page.html\" target=\"_blank\">2015 Insider Threat and User Behavior Analytics Report</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-717\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/16-cloud-apps-you-need-to-know-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/16%20Cloud%20Apps.png\" alt=\"16 Cloud Apps You Need To Know If Employees Are Using\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/16-cloud-apps-you-need-to-know-registration-page.html\" target=\"_blank\">16 Cloud Apps You Need To Know If Employees Are Using</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-754\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/5-must-monitor-financial-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5%20Must%20Monitor%20Financial-resource.png\" alt=\"Insider Threat Detection in Financial Services\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/5-must-monitor-financial-applications-registration.html\" target=\"_blank\">Insider Threat Detection in Financial Services</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-753\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/5-must-monitor-healthcare-applications-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5%20Must%20Monitor%20Healthcare%20-%20resource.png\" alt=\"Insider Threat Detection in Healthcare\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/5-must-monitor-healthcare-applications-registration.html\" target=\"_blank\">Insider Threat Detection in Healthcare</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-734\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/kupperingcole-privileged-user-report-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Kuppingercole-report-icon.png\" alt=\"Privileged Identity Management Trend Report by KupperingCole\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/kupperingcole-privileged-user-report-registration-page.html\" target=\"_blank\">Privileged Identity Management Trend Report by KupperingCole</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-347\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/PCIDatasheet-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pci-compliance-matrix.gif\" alt=\"PCI 3.0 Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/PCIDatasheet-Registration-Page.html\" target=\"_blank\"> PCI 3.0 Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-355\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/HIPAADatasheet-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/hipaa-compliance-matrix.gif\" alt=\"HIPAA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/HIPAADatasheet-Registration-Page.html\" target=\"_blank\">HIPAA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-781\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/NISTDatasheet_Content-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/NIST%20Cover_0.JPG\" alt=\"NIST Security Framework with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/NISTDatasheet_Content-Registration-Page.html\" target=\"_blank\">NIST Security Framework with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-763\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/TenThingsYouCanOnlyDowithObserveIT_-Registration-Page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/TopTenUseCasesforObserveIT.png\" alt=\"Ten Things You Can Only Do with ObserveIT\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/TenThingsYouCanOnlyDowithObserveIT_-Registration-Page.html\" target=\"_blank\">10 Things You Can Only Do with ObserveIT</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-528\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/sans-20-with-observeit-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/addressing-7-of-sans-20-critical-security-controls_0.jpg\" alt=\"How ObserveIT Addresses 7 of SANS 20 Critical Security Controls\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/sans-20-with-observeit-registration.html\" target=\"_blank\">How ObserveIT Addresses 7 of SANS 20 Critical Security Controls</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-703\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ten-ways-observeit-smarter-than-smart-auditor-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/10-ways-observeit-is-smarter-than-smartauditor.jpg\" alt=\"Top 10 Ways ObserveIT Is Smarter Than SmartAuditor\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ten-ways-observeit-smarter-than-smart-auditor-registration-page.html\" target=\"_blank\">10 Ways ObserveIT Is Smarter Than SmartAuditor</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-257\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/five-reasons-you-need-uam-registration-page.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/5-reasons-you-need-user-activity-monitoring.gif\" alt=\"5 Reasons You Need User Activity Monitoring Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/five-reasons-you-need-uam-registration-page.html\" target=\"_blank\">5 Reasons You Need User Activity Monitoring Right Now</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-256\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/mitigating-business-user-risk-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/mitigating-your-biggest-security-risk.gif\" alt=\"Mitigating your Biggest Security Risk Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/mitigating-business-user-risk-registration.html\" target=\"_blank\">Mitigating your Biggest Security Risk: Your Business Users</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-255\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/mind-the-gap-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/mind-the-gap.gif\" alt=\"Mind the Gap Whitepaper\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/mind-the-gap-registration.html\" target=\"_blank\">Mind the Gap - Infrastructure vs. User-Based Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-198\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/know-your-risky-users-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_ema_0.jpg\" alt=\"EMA Report: Mitigating Insider Threats and User Based Risk\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/know-your-risky-users-registration.html\" target=\"_blank\">EMA Report: Mitigating Insider Threats and User Based Risk</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-199\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/gartner-report-missing-vantage-point-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/whitepaper_your_critical_missing_security_vantage_point.jpg\" alt=\"Gartner Research Report: User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/gartner-report-missing-vantage-point-registration.html\" target=\"_blank\">Gartner Research Report: User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-436\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/ensuring-security-with-privacy-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/Ensuring%20Security%20pic1_0.JPG\" alt=\"Employee Monitoring: Ensuring Security and Maintain Privacy\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/ensuring-security-with-privacy-registration.html\" target=\"_blank\">Employee Monitoring: Ensuring Security and Maintain Privacy</a></div>\n</div>\n</div>\n</div>\n</div>','contents/gallery/5-Resources/8/44-white-papers.jpg','contents/gallery/5-Resources/8/thumb/44-white-papers-thumb.jpg',2,'2016-10-19 10:23:41','2016-10-19 13:24:48',1),(45,8,'COMPLIANCE DATASHEETS','COMPLIANCE DATASHEETS','','','','','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-348\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/FISMA%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_1.gif\" alt=\"FISMA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/FISMA%20Requirements.pdf\" target=\"_blank\">FISMA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-349\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/ISO-27001-COMPLIANCE-WITH-OBSERVEIT.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/ISO%2027001%20COMPLIANCE%20WITH%20OBSERVEIT.jpg\" alt=\"ISO 27001 Security Framework with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/ISO-27001-COMPLIANCE-WITH-OBSERVEIT.pdf\" target=\"_blank\">ISO 27001 Security Framework with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-350\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/NERC%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pipeda-compliance-matrix_0.gif\" alt=\"NERC Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/NERC%20Requirements.pdf\" target=\"_blank\">NERC Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-788\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/PCI-Requirements-New-Data-Sheet.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_0.gif\" alt=\"PCI Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/PCI-Requirements-New-Data-Sheet.pdf\" target=\"_blank\">PCI Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-352\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/PHIPA.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix.gif\" alt=\"PHIPA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/PHIPA.pdf\" target=\"_blank\">PHIPA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-353\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/PIPEDA.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pipeda-compliance-matrix.gif\" alt=\"PIPEDA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/PIPEDA.pdf\" target=\"_blank\">PIPEDA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-354\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/SOX%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_2.gif\" alt=\"SOX Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/SOX%20Requirements.pdf\" target=\"_blank\">SOX Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-356\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_ObserveIT-for-Indian-Gaming-IT-Controls.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/national-indian-gaming-commission-nigc-compliance-matrix.gif\" alt=\"NIGC Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_ObserveIT-for-Indian-Gaming-IT-Controls.pdf\" target=\"_blank\">Nat\'l Indian Gaming Commission</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-357\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/ObserveIT%20for%20India%20DoT%20Compliance%20-%20Dec-2014%20(1).pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/india-dot-remote-access-compliance-matrix.gif\" alt=\"DOT India Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/ObserveIT%20for%20India%20DoT%20Compliance%20-%20Dec-2014%20(1).pdf\" target=\"_blank\">India DOT</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-358\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Polish-Banking-ICT-Security-Recommendations.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/polish-banking-ict-compliance-matrix.gif\" alt=\"Polish ICT Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Polish-Banking-ICT-Security-Recommendations.pdf\" target=\"_blank\">ICT (Poland)</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-359\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Hong_Kong_IT_Security_Guidleines.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/hong-kong-it-compliance-matrix.gif\" alt=\"Hong Kong G3 Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Hong_Kong_IT_Security_Guidleines.pdf\" target=\"_blank\">G3 (Hong Kong)</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-360\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Australian_InfoSec_Controls.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/australia-infosec-compliance-matrix.gif\" alt=\"Australia InfoSec Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Australian_InfoSec_Controls.pdf\" target=\"_blank\">Australian InfoSec</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-796\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/HIPAA%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_3.gif\" alt=\"HIPAA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/HIPAA%20Requirements.pdf\" target=\"_blank\">HIPAA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n</div>\n</div>','<div class=\"field field-name-field-cards field-type-entityreference field-label-hidden\">\n<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-348\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/FISMA%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_1.gif\" alt=\"FISMA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/FISMA%20Requirements.pdf\" target=\"_blank\">FISMA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-349\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/ISO-27001-COMPLIANCE-WITH-OBSERVEIT.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/ISO%2027001%20COMPLIANCE%20WITH%20OBSERVEIT.jpg\" alt=\"ISO 27001 Security Framework with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/ISO-27001-COMPLIANCE-WITH-OBSERVEIT.pdf\" target=\"_blank\">ISO 27001 Security Framework with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-350\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/NERC%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pipeda-compliance-matrix_0.gif\" alt=\"NERC Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/NERC%20Requirements.pdf\" target=\"_blank\">NERC Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-788\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/PCI-Requirements-New-Data-Sheet.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_0.gif\" alt=\"PCI Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/PCI-Requirements-New-Data-Sheet.pdf\" target=\"_blank\">PCI Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-352\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/PHIPA.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix.gif\" alt=\"PHIPA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/PHIPA.pdf\" target=\"_blank\">PHIPA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-353\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/PIPEDA.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/pipeda-compliance-matrix.gif\" alt=\"PIPEDA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/PIPEDA.pdf\" target=\"_blank\">PIPEDA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-354\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/SOX%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_2.gif\" alt=\"SOX Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/SOX%20Requirements.pdf\" target=\"_blank\">SOX Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-356\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_ObserveIT-for-Indian-Gaming-IT-Controls.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/national-indian-gaming-commission-nigc-compliance-matrix.gif\" alt=\"NIGC Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_ObserveIT-for-Indian-Gaming-IT-Controls.pdf\" target=\"_blank\">Nat\'l Indian Gaming Commission</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-357\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/ObserveIT%20for%20India%20DoT%20Compliance%20-%20Dec-2014%20(1).pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/india-dot-remote-access-compliance-matrix.gif\" alt=\"DOT India Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/ObserveIT%20for%20India%20DoT%20Compliance%20-%20Dec-2014%20(1).pdf\" target=\"_blank\">India DOT</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-358\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Polish-Banking-ICT-Security-Recommendations.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/polish-banking-ict-compliance-matrix.gif\" alt=\"Polish ICT Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Polish-Banking-ICT-Security-Recommendations.pdf\" target=\"_blank\">ICT (Poland)</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-359\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Hong_Kong_IT_Security_Guidleines.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/hong-kong-it-compliance-matrix.gif\" alt=\"Hong Kong G3 Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Hong_Kong_IT_Security_Guidleines.pdf\" target=\"_blank\">G3 (Hong Kong)</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-360\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Australian_InfoSec_Controls.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/australia-infosec-compliance-matrix.gif\" alt=\"Australia InfoSec Card\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Whitepaper_Addressing_Australian_InfoSec_Controls.pdf\" target=\"_blank\">Australian InfoSec</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-796\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/HIPAA%20Requirements.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/phipa-compliance-matrix_3.gif\" alt=\"HIPAA Compliance with User Activity Monitoring\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/HIPAA%20Requirements.pdf\" target=\"_blank\">HIPAA Compliance with User Activity Monitoring</a></div>\n</div>\n</div>\n</div>\n</div>','contents/gallery/5-Resources/8/45-compliance-datasheets.jpg','contents/gallery/5-Resources/8/thumb/45-compliance-datasheets-thumb.jpg',2,'2016-10-19 10:29:08','2016-10-19 13:25:16',1),(46,8,'FEATURES AND INTEGRATIONS','FEATURES AND INTEGRATIONS','','','','','<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-439\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/Brochure_web_6.5.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/New%20Brochure%20Cover_0.JPG\" alt=\"ObserveIT Brochure\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/Brochure_web_6.5.pdf\" target=\"_blank\">ObserveIT Brochure</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-438\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/activity-alerting-implementation-guide-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/activity-alerts-implementation-guide.gif\" alt=\"Activity Alerts Implementation Guide\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/activity-alerting-implementation-guide-registration.html\" target=\"_blank\">Activity Alerting Implementation</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-407\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-technical-overview-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/oit-tech-overview-thumb.gif\" alt=\"ObserveIT Tech Overview Matrix\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-technical-overview-registration.html\" target=\"_blank\">ObserveIT Technical Overview</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-527\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Securing-Your-User-Activity-Monitoring-Solution.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/securing-your-user-activity-monitoring-solution.gif\" alt=\"Securing Your User Activity Monitoring Solution\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Securing-Your-User-Activity-Monitoring-Solution.pdf\" target=\"_blank\">Securing Your UAM Solution</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-203\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/dwkdwe92ju?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/f6ac8f1ba3353d015bbb50147d2249eeb8a553bd.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/dwkdwe92ju?popover=true\" target=\"_blank\">ObserveIT Introduction</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-586\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/wimv1a0qri?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/7bc74ecb2696d5ae153e242fcff7c66c74fc0bcf.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/wimv1a0qri?popover=true\" target=\"_blank\">Custom ObserveIT Installation</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-217\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/6diyhzfxw0?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/db9e738f94a5b3685ab408398d3f1cc6f49415b2.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/6diyhzfxw0?popover=true\" target=\"_blank\">ObserveIT and CA ControlMinder</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-230\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/fvnavq7sj1?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/5986a33db8bc4eff71c595095edbf3b03cee7c62.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/fvnavq7sj1?popover=true\" target=\"_blank\">Custom Recording Policies</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-231\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/vv5id3abmo?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/92d9774bca8a61ad1696809d48a7017f8533feda.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/vv5id3abmo?popover=true\" target=\"_blank\">Custom Alerts</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-232\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/grx4znzb7w?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/3c97d9ed4e80a6f25a913d3c470d9adce96a7990.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/grx4znzb7w?popover=true\" target=\"_blank\">Custom Reporting</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-233\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/4bmkmt4349?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/11b5b95a81700163f9b258eaeaf9a529c1bb8f48.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/4bmkmt4349?popover=true\" target=\"_blank\">ObserveIT Activity Alerts</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-234\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/2xa8ez3jjd?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/ad88937c15b8c751f9f209f2a255abe225965ff9.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/2xa8ez3jjd?popover=true\" target=\"_blank\">Installing ObserveIT</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-729\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" style=\"font-size: 13.0080003738403px; line-height: 20.0063037872314px;\" href=\"//fast.wistia.net/embed/iframe/o4x0c64opm?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/aa380396e12a3c3d89aa150c8ec19e743b3789d1.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" style=\"font-size: 13.0080003738403px; line-height: 20.0063037872314px;\" href=\"//fast.wistia.net/embed/iframe/o4x0c64opm?popover=true\" target=\"_blank\">ObserveIT and IBM</a></p>\n</div>\n</div>\n</div>','<div class=\"field-items clearfix\">\n<div class=\"field-item even\">\n<div id=\"node-439\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/Brochure_web_6.5.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/New%20Brochure%20Cover_0.JPG\" alt=\"ObserveIT Brochure\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/248-SYG-803/images/Brochure_web_6.5.pdf\" target=\"_blank\">ObserveIT Brochure</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-438\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/activity-alerting-implementation-guide-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/activity-alerts-implementation-guide.gif\" alt=\"Activity Alerts Implementation Guide\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/activity-alerting-implementation-guide-registration.html\" target=\"_blank\">Activity Alerting Implementation</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-407\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/observeit-technical-overview-registration.html\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/oit-tech-overview-thumb.gif\" alt=\"ObserveIT Tech Overview Matrix\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/observeit-technical-overview-registration.html\" target=\"_blank\">ObserveIT Technical Overview</a></div>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-527\" class=\"node node-matrix-card node-view-default clearfix matrix-card\"><a href=\"http://pages.observeit.com/rs/observeit/images/Securing-Your-User-Activity-Monitoring-Solution.pdf\" target=\"_blank\"> <img src=\"http://www.observeit.com/sites/default/files/matrix_card_module/image/securing-your-user-activity-monitoring-solution.gif\" alt=\"Securing Your User Activity Monitoring Solution\" /> </a>\n<div class=\"caption\"><a href=\"http://pages.observeit.com/rs/observeit/images/Securing-Your-User-Activity-Monitoring-Solution.pdf\" target=\"_blank\">Securing Your UAM Solution</a></div>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-203\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/dwkdwe92ju?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/f6ac8f1ba3353d015bbb50147d2249eeb8a553bd.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/dwkdwe92ju?popover=true\" target=\"_blank\">ObserveIT Introduction</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-586\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/wimv1a0qri?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/7bc74ecb2696d5ae153e242fcff7c66c74fc0bcf.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/wimv1a0qri?popover=true\" target=\"_blank\">Custom ObserveIT Installation</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-217\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/6diyhzfxw0?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/db9e738f94a5b3685ab408398d3f1cc6f49415b2.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/6diyhzfxw0?popover=true\" target=\"_blank\">ObserveIT and CA ControlMinder</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-230\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/fvnavq7sj1?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/5986a33db8bc4eff71c595095edbf3b03cee7c62.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/fvnavq7sj1?popover=true\" target=\"_blank\">Custom Recording Policies</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-231\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/vv5id3abmo?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/92d9774bca8a61ad1696809d48a7017f8533feda.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/vv5id3abmo?popover=true\" target=\"_blank\">Custom Alerts</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-232\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/grx4znzb7w?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/3c97d9ed4e80a6f25a913d3c470d9adce96a7990.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/grx4znzb7w?popover=true\" target=\"_blank\">Custom Reporting</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-233\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/4bmkmt4349?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/11b5b95a81700163f9b258eaeaf9a529c1bb8f48.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/4bmkmt4349?popover=true\" target=\"_blank\">ObserveIT Activity Alerts</a></p>\n</div>\n</div>\n<div class=\"field-item odd\">\n<div id=\"node-234\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/2xa8ez3jjd?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/ad88937c15b8c751f9f209f2a255abe225965ff9.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" href=\"//fast.wistia.net/embed/iframe/2xa8ez3jjd?popover=true\" target=\"_blank\">Installing ObserveIT</a></p>\n</div>\n</div>\n<div class=\"field-item even\">\n<div id=\"node-729\" class=\"node node-matrix-card node-view-default clearfix matrix-card\">\n<p><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" style=\"font-size: 13.0080003738403px; line-height: 20.0063037872314px;\" href=\"//fast.wistia.net/embed/iframe/o4x0c64opm?popover=true\" target=\"_blank\"><img src=\"https://embed-ssl.wistia.com/deliveries/aa380396e12a3c3d89aa150c8ec19e743b3789d1.jpg?image_play_button=true&amp;image_play_button_color=7b796ae0&amp;image_crop_resized=163x92\" alt=\"\" /></a><a class=\"wistia-popover[height=608,playerColor=7b796a,width=1080]\" style=\"font-size: 13.0080003738403px; line-height: 20.0063037872314px;\" href=\"//fast.wistia.net/embed/iframe/o4x0c64opm?popover=true\" target=\"_blank\">ObserveIT and IBM</a></p>\n</div>\n</div>\n</div>','contents/gallery/5-Resources/8/46-features-and-integrations.jpg','contents/gallery/5-Resources/8/thumb/46-features-and-integrations-thumb.jpg',2,'2016-10-19 10:32:49','2016-10-19 13:28:52',1),(47,9,'tes','tesss','','','',NULL,'','','contents/gallery/5-Resources/9/47-tes.jpg','contents/gallery/5-Resources/9/thumb/47-tes-thumb.jpg',2,'2017-01-23 14:48:16',NULL,0);
/*!40000 ALTER TABLE `page_gallery_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_list`
--

DROP TABLE IF EXISTS `page_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_list` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `pdf_download` varchar(1) DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_list`
--

LOCK TABLES `page_list` WRITE;
/*!40000 ALTER TABLE `page_list` DISABLE KEYS */;
INSERT INTO `page_list` VALUES (17,6,'Event','Acara',NULL,'contents/list/17/17-event-bg.jpg','Event','Acara','','','','','','','','',2,'2016-09-05 19:32:58',NULL),(18,0,'Beauty Blog','Beauty Blog',NULL,'contents/list/18/18-beauty-blog-bg.jpg','','','','','','','','','','',2,'2016-12-23 10:24:08',NULL),(19,0,'Video','Video',NULL,'contents/list/19/19-video-bg.jpg','','','','','','','','','','',2,'2016-12-26 21:49:07',NULL),(20,0,'News & Event','News & Event',NULL,'contents/list/20/20-news-event-bg.jpg','','','','','','','','','','',2,'2016-12-27 17:00:14',NULL),(22,0,'Promo Of The Month','Promo Of The Month',NULL,'contents/list/22/22-promo-of-the-month-bg.jpg','','','','','','','','','','',2,'2016-12-31 21:35:52',NULL);
/*!40000 ALTER TABLE `page_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_list_item`
--

DROP TABLE IF EXISTS `page_list_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_list_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_list` int(11) DEFAULT NULL,
  `tag` text NOT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `short_description` text DEFAULT NULL,
  `short_description_bahasa` text DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `thumbnail_location` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `posted_at` date DEFAULT NULL,
  `created_by` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `published` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=126 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_list_item`
--

LOCK TABLES `page_list_item` WRITE;
/*!40000 ALTER TABLE `page_list_item` DISABLE KEYS */;
INSERT INTO `page_list_item` VALUES (105,17,'','ObserveIT Training Session at ARIM’s office','ObserveIT Training Session at ARIM’s office','ObserveIT Training Session at ARIM’s office On the 28th of July 2016, ARIM Technologies hosted a private training session with ObserveIT at our Singapore office. We were fortunate enough to','ObserveIT Training Session at ARIM’s office On the 28th of July 2016, ARIM Technologies hosted a private training session with ObserveIT at our Singapore office. We were fortunate enough to','<p>On the 28th of July 2016, ARIM Technologies hosted a private training session with ObserveIT at our Singapore office. We were fortunate enough to have customers and partners who travelled from the region, such as Indonesia and Malaysia, for this session.</p>\n<p>At the morning session, Ilan Sharoni, Director of Pre-Sales at ObserveIT, introduced the audience to the features, functions and value propositions of the solution. Through different customer use cases across the globe, the audience was able to grasp the value of the solution, and how this would apply to the many different customers&rsquo; organisations.</p>\n<p>Post lunch, the team continue with a deeper dive into the technology through hands-on exercises, providing a better understanding on the configurations of the solution, the different deployment models, and how the canned rules and policies work out-of-the-box. The team was also introduced to how rules and policies can be customised to fit different working environments.</p>\n<p>More technical training sessions for our customers and partners in the region will be held over the next few months, and if you would like to be a part of the sessions, go ahead and drop us an email &ndash; enquiry@arim-tech.com</p>','<p>On the 28th of July 2016, ARIM Technologies hosted a private training session with ObserveIT at our Singapore office. We were fortunate enough to have customers and partners who travelled from the region, such as Indonesia and Malaysia, for this session.</p>\n<p>At the morning session, Ilan Sharoni, Director of Pre-Sales at ObserveIT, introduced the audience to the features, functions and value propositions of the solution. Through different customer use cases across the globe, the audience was able to grasp the value of the solution, and how this would apply to the many different customers&rsquo; organisations.</p>\n<p>Post lunch, the team continue with a deeper dive into the technology through hands-on exercises, providing a better understanding on the configurations of the solution, the different deployment models, and how the canned rules and policies work out-of-the-box. The team was also introduced to how rules and policies can be customised to fit different working environments.</p>\n<p>More technical training sessions for our customers and partners in the region will be held over the next few months, and if you would like to be a part of the sessions, go ahead and drop us an email &ndash; enquiry@arim-tech.com</p>','contents/list/17/105-observeit-training-session-at-arims-office.jpg','contents/list/17/thumb/105-observeit-training-session-at-arims-office-thumb.jpg','','','','','','','2016-07-28','2','2016-08-26 15:24:54',NULL,1),(106,17,'','ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking','ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking','ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking Jakarta, Pullman Hotel –23rd June, 2016 On 23 June, 2016, the Warta Ekonomi Indonesia Digital','ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking Jakarta, Pullman Hotel –23rd June, 2016 On 23 June, 2016, the Warta Ekonomi Indonesia Digital','<h3><strong> ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking</strong></h3>\n<p><strong>Jakarta, Pullman Hotel &ndash;23rd June, 2016</strong></p>\n<p>On 23 June, 2016, the Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking welcomed 150 participants from major financial institutions in Indonesia at the Pullman Hotel in Jakarta, Indonesia. The event started with a keynote speech by Mr. Muliaman D. Hadad, Chairman of the Board of Commissioners of Otoritas Jasa Keuangan (Financial Services Authority), discussing the Indonesian FinTech landscape. ARIM Technologies was invited to participate in the event to showcase some of their innovative cyber security technologies to the event participants.</p>\n<p>One of the top business and economics magazines in Indonesia, Warta Ekonomi, awarded banks that have successfully implemented digital innovations in operational banking activities, in order to improve their business performances. The Warta Economic Intelligence Unit (WEIU) received appreciation on the research that they have conducted on various categories amongst banks operating in Indonesia from April to May 2016.</p>\n<p>They examined banking business performances by taking into account asset growth and the competency of banks in relationship to profits and efficiency. For digital innovation performance, the sector of ARIM Technologies&rsquo; competency, WEIU determined the ranking by taking into account banking strategy and data security.</p>\n<p>The banking industry is required to up their game when it comes to business strategy in this digital era, especially when it comes to cyber security threats. The role of cyber security is a vital one in sectors where data and information is key to assuring better services for bank customers. This is exactly where ARIM Technologies comes in, introducing the latest cyber security technologies, trends, and updates in the region.</p>\n<p>The event provided ARIM Technologies with the opportunity to showcase the latest cyber innovations. One of which is enSilo, a real time platform that helps users mitigate the consequences of advanced attacks. Another is ObserveIT, a global leader in insider-threat-management for banking practitioners from small and medium-sized to large banks in Indonesia.</p>\n<p>Innovation is key for preventing and eliminating the threat of cyber attacks in the banking industry. We are looking forward to contribute further to the development of cyber security in Asia-Pacific.</p>','<h3><strong> ARIM Technologies Invited to Participate In Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking</strong></h3>\n<p><strong>Jakarta, Pullman Hotel &ndash;23rd June, 2016</strong></p>\n<p>On 23 June, 2016, the Warta Ekonomi Indonesia Digital Innovation Award 2016 for Banking welcomed 150 participants from major financial institutions in Indonesia at the Pullman Hotel in Jakarta, Indonesia. The event started with a keynote speech by Mr. Muliaman D. Hadad, Chairman of the Board of Commissioners of Otoritas Jasa Keuangan (Financial Services Authority), discussing the Indonesian FinTech landscape. ARIM Technologies was invited to participate in the event to showcase some of their innovative cyber security technologies to the event participants.</p>\n<p>One of the top business and economics magazines in Indonesia, Warta Ekonomi, awarded banks that have successfully implemented digital innovations in operational banking activities, in order to improve their business performances. The Warta Economic Intelligence Unit (WEIU) received appreciation on the research that they have conducted on various categories amongst banks operating in Indonesia from April to May 2016.</p>\n<p>They examined banking business performances by taking into account asset growth and the competency of banks in relationship to profits and efficiency. For digital innovation performance, the sector of ARIM Technologies&rsquo; competency, WEIU determined the ranking by taking into account banking strategy and data security.</p>\n<p>The banking industry is required to up their game when it comes to business strategy in this digital era, especially when it comes to cyber security threats. The role of cyber security is a vital one in sectors where data and information is key to assuring better services for bank customers. This is exactly where ARIM Technologies comes in, introducing the latest cyber security technologies, trends, and updates in the region.</p>\n<p>The event provided ARIM Technologies with the opportunity to showcase the latest cyber innovations. One of which is enSilo, a real time platform that helps users mitigate the consequences of advanced attacks. Another is ObserveIT, a global leader in insider-threat-management for banking practitioners from small and medium-sized to large banks in Indonesia.</p>\n<p>Innovation is key for preventing and eliminating the threat of cyber attacks in the banking industry. We are looking forward to contribute further to the development of cyber security in Asia-Pacific.</p>','contents/list/17/106-arim-technologies-invited-to-participate-in-warta-ekonomi-indonesia-digital-innovation-award-2016-for-banking.jpg','contents/list/17/thumb/106-arim-technologies-invited-to-participate-in-warta-ekonomi-indonesia-digital-innovation-award-2016-for-banking-thumb.jpg','','','','','','','2016-06-23','2','2016-08-30 16:35:25','2016-08-31 14:43:11',1),(107,17,'','Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia','Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia','The Technical Coordination Meeting was a private event hosted by West Java Police Enforcement, and was coordinated by the Regional Chief of West Java Police. The aim of the meeting','The Technical Coordination Meeting was a private event hosted by West Java Police Enforcement, and was coordinated by the Regional Chief of West Java Police. The aim of the meeting','<h3>Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia</h3>\n<p>The Technical Coordination Meeting was a private event hosted by West Java Police Enforcement, and was coordinated by the Regional Chief of West Java Police. The aim of the meeting was to discuss their future IT security programs and planning.</p>\n<blockquote>\n<p>Internal Technical Coordination Meeting with West Java Police Enforcement in Bandung, Indonesia</p>\n</blockquote>\n<p>During the event, a series of meetings took place with key officials from the West Java Police Enforcement team. A total of 150 personnel from the department attended the event. One of the event&rsquo;s highlights was the participation of KAPOLDA JABAR Irjend Pol Drs Jodi Rooseto &ndash; Regional Chief of West Java Police.</p>\n<p>ARIM Technologies was invited to share updates on the latest cyber security news and trends. Over at our booth area, we had the opportunity to showcase enSilo, an innovative real-time platform mitigating the consequences of advanced attacks, and ObserveIT, a global leader in insider-threat-management.</p>\n<p>We were highly honoured to have been invited to this private event (alongside 3 other global vendors), and that we had the opportunity to introduce innovative cyber security solutions to the Local Law Enforcement team. We look forward to continuous engagements with the Local Law Enforcement team.</p>','<h3>Internal Technical Coordination Meeting with West Java Police Enforcement, sharing cyber security updates in Bandung, Indonesia</h3>\n<p>The Technical Coordination Meeting was a private event hosted by West Java Police Enforcement, and was coordinated by the Regional Chief of West Java Police. The aim of the meeting was to discuss their future IT security programs and planning.</p>\n<blockquote>\n<p>Internal Technical Coordination Meeting with West Java Police Enforcement in Bandung, Indonesia</p>\n</blockquote>\n<p>During the event, a series of meetings took place with key officials from the West Java Police Enforcement team. A total of 150 personnel from the department attended the event. One of the event&rsquo;s highlights was the participation of KAPOLDA JABAR Irjend Pol Drs Jodi Rooseto &ndash; Regional Chief of West Java Police.</p>\n<p>ARIM Technologies was invited to share updates on the latest cyber security news and trends. Over at our booth area, we had the opportunity to showcase enSilo, an innovative real-time platform mitigating the consequences of advanced attacks, and ObserveIT, a global leader in insider-threat-management.</p>\n<p>We were highly honoured to have been invited to this private event (alongside 3 other global vendors), and that we had the opportunity to introduce innovative cyber security solutions to the Local Law Enforcement team. We look forward to continuous engagements with the Local Law Enforcement team.</p>','contents/list/17/107-internal-technical-coordination-meeting-with-west-java-police-enforcement-sharing-cyber-security-updates-in-bandung-indonesia.jpg','contents/list/17/thumb/107-internal-technical-coordination-meeting-with-west-java-police-enforcement-sharing-cyber-security-updates-in-bandung-indonesia-thumb.jpg','','','','','','','2016-05-24','2','2016-08-30 16:45:08','2016-08-31 14:32:35',1),(113,17,'','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event – Fireside Chat Series #8 | Manufacturing And Cyber Security – Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Tjong Mei Sen, Managin','ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event – Fireside Chat Series #8 | Manufacturing And Cyber Security – Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Tjong Mei Sen, Managin','<h3>Manufacturing and Cyber Security &ndash; Creating Internal Peace Of Mind</h3>\n<p><strong>Sahid Jaya Hotel, Lippo Cikarang Indonesia, 25 August 2016</strong></p>\n<p>&nbsp;</p>\n<p>ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event &ndash; Fireside Chat Series #8 | Manufacturing And Cyber Security &ndash; Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Mei Sen, Managing Director of PT Jaringan Intech Indonesia to join us as our keynote speaker, and Mr. Djuniarto Lukman, Country Manager of Sophos Indonesia to share technology updates at this event.</p>\n<p>With the global cyber security market slated to grow between 20 and 25 percent annually through 2021, cyber security is rapidly becoming a dominant concern for manufacturers. Up until recent years, cyber security is often applied to the consumer-driven parts of businesses, such as logins to internet sites and health care-related information. However, cyber security is now fast becoming a critical component of effective management in manufacturing. In the sessions, we looked at how cyber security is fast changing to become a key focus for the manufacturing industry, and what manufacturers should do to protect themselves against the ever evolving cyber threat landscape.</p>\n<p>In fireside chat series #8, we shared on how manufacturers should be aware of the management and maintenance of their security systems. Perspectives should be changed to understand that security can be approached in a different way, and anchored by three beliefs; Security must be comprehensive; Security can be made simpler; Security is more effective as a system. The second approach concludes that businesses face more risk than ever before because of the evolving threat landscape, and what they can do to deal with this evolving threat landscape. Updates on the latest trends and cyber security incidents in the manufacturing industry were also shared at the event.<br />We closed the day with a networking dinner, providing the guests an opportunity to network and discuss issues/ideas with their industry peers.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<h3>Manufacturing and Cyber Security &ndash; Creating Internal Peace Of Mind</h3>\n<p><strong>Sahid Jaya Hotel, Lippo Cikarang Indonesia, 25 August 2016</strong></p>\n<p>&nbsp;</p>\n<p>ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event &ndash; Fireside Chat Series #8 | Manufacturing And Cyber Security &ndash; Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Mei Sen, Managing Director of PT Jaringan Intech Indonesia to join us as our keynote speaker, and Mr. Djuniarto Lukman, Country Manager of Sophos Indonesia to share technology updates at this event.</p>\n<p>With the global cyber security market slated to grow between 20 and 25 percent annually through 2021, cyber security is rapidly becoming a dominant concern for manufacturers. Up until recent years, cyber security is often applied to the consumer-driven parts of businesses, such as logins to internet sites and health care-related information. However, cyber security is now fast becoming a critical component of effective management in manufacturing. In the sessions, we looked at how cyber security is fast changing to become a key focus for the manufacturing industry, and what manufacturers should do to protect themselves against the ever evolving cyber threat landscape.</p>\n<p>In fireside chat series #8, we shared on how manufacturers should be aware of the management and maintenance of their security systems. Perspectives should be changed to understand that security can be approached in a different way, and anchored by three beliefs; Security must be comprehensive; Security can be made simpler; Security is more effective as a system. The second approach concludes that businesses face more risk than ever before because of the evolving threat landscape, and what they can do to deal with this evolving threat landscape. Updates on the latest trends and cyber security incidents in the manufacturing industry were also shared at the event.<br />We closed the day with a networking dinner, providing the guests an opportunity to network and discuss issues/ideas with their industry peers.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/113-manufacturing-and-cyber-security-creating-internal-peace-of-mind.jpg','contents/list/17/thumb/113-manufacturing-and-cyber-security-creating-internal-peace-of-mind-thumb.jpg','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event – Fireside Chat Series #8 | Manufacturing And Cyber Security – Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Tjong Mei Sen, Managin','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','Manufacturing and Cyber Security – Creating Internal Peace Of Mind','ARIM Technologies, PT Jaringan Intech Indonesia, and Sophos jointly organized an invitation-only event – Fireside Chat Series #8 | Manufacturing And Cyber Security – Creating Internal Peace Of Mind, at the Sahid Jaya Hotel in Lippo Cikarang, on the 25th of August 2016. We were honored to have Mr. Tjong Mei Sen, Managin','2016-08-25','2','2016-09-15 14:09:16',NULL,1),(114,17,'','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware Swissôtel The Stamford Singapore, 27 July 2016 ARIM Technologies and Wizlynx Group','Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware Swissôtel The Stamford Singapore, 27 July 2016 ARIM Technologies and Wizlynx Group','<h3>Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware</h3>\n<p><strong>Swiss&ocirc;tel The Stamford Singapore, 27 July 2016</strong></p>\n<p>&nbsp;</p>\n<p>ARIM Technologies and Wizlynx Group jointly organised an invitation-only event &ndash; Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware, at the Swissotel in Singapore, on the 27th of July 2016. We were honoured to have Mr. Tay Chee Keong from Lonza Biologics to join us as our keynote speaker, and to also have Rafi Glickman, APAC Sales Director, and Ilan Sharoni, Director of Pre-Sales from ObserveIT present and share on Insider Threat Management strategies.</p>\n<p>In this Fireside Chat event, we shared new strategies at dealing with the consequences of cyber-attacks and insider threats. The first approach takes into consideration that threat actors are already inside the organization, and so focuses on preventing the real risk to the enterprise &ndash; the actual exfiltration and tampering of data. The second approach seeks to educate employees, and to detect risky behaviours to prevent internal malicious or unauthorised activities that may put your organisation at risk.</p>\n<p>Post the discussion, our participants took the opportunity to network and share ideas with our speakers and fellow industry peers over lunch.<br />&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<h3>Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware</h3>\n<p><strong>Swiss&ocirc;tel The Stamford Singapore, 27 July 2016</strong></p>\n<p>&nbsp;</p>\n<p>ARIM Technologies and Wizlynx Group jointly organised an invitation-only event &ndash; Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware, at the Swissotel in Singapore, on the 27th of July 2016. We were honoured to have Mr. Tay Chee Keong from Lonza Biologics to join us as our keynote speaker, and to also have Rafi Glickman, APAC Sales Director, and Ilan Sharoni, Director of Pre-Sales from ObserveIT present and share on Insider Threat Management strategies.</p>\n<p>In this Fireside Chat event, we shared new strategies at dealing with the consequences of cyber-attacks and insider threats. The first approach takes into consideration that threat actors are already inside the organization, and so focuses on preventing the real risk to the enterprise &ndash; the actual exfiltration and tampering of data. The second approach seeks to educate employees, and to detect risky behaviours to prevent internal malicious or unauthorised activities that may put your organisation at risk.</p>\n<p>Post the discussion, our participants took the opportunity to network and share ideas with our speakers and fellow industry peers over lunch.<br />&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/114-prevent-restore-or-break-3-strategies-to-deal-with-insider-threats-and-ransomware.jpg','contents/list/17/thumb/114-prevent-restore-or-break-3-strategies-to-deal-with-insider-threats-and-ransomware-thumb.jpg','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware Swissôtel The Stamford Singapore, 27 July 2016 ARIM Technologies and Wizlynx Group','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware','Fireside Chat Series #7 | Prevent, Restore, or Break: 3 Strategies to deal with insider threats and ransomware Swissôtel The Stamford Singapore, 27 July 2016 ARIM Technologies and Wizlynx Group','2016-07-27','2','2016-09-15 14:17:57',NULL,1),(115,17,'','Think out of the box: Innovate for survival against Advanced Cyber Threats','Think out of the box: Innovate for survival against Advanced Cyber Threats','SINGAPORE, Jan. 12, 2016 /PRNewswire/ — With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses','SINGAPORE, Jan. 12, 2016 /PRNewswire/ — With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses','<h3><strong>Think out of the box: Innovate for survival against Advanced Cyber Threats</strong></h3>\n<p>SINGAPORE, Jan. 12, 2016 /PRNewswire/ &mdash; With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses of all sizes. Two major firms in the fields of cyber-security and enterprise infrastructure and applications are about to make a partnership announcement at an upcoming press conference in Jakarta, Indonesia at the Le Meridien Hotel on January 12, 2016.</p>\n<blockquote>\n<p><strong>Singapore&rsquo;s ARIM Technologies Announces Partnership with Intech Indonesia</strong></p>\n</blockquote>\n<p class=\"Body\">Security breaches have become all too common, compromising some of the largest corporations in the world despite controls in place. Intech&rsquo;s vast experience in the software and infrastructure consulting business combined with ARIM&rsquo;s cyber expertise makes a holistic MSSP partnership. This strategic partnership will not only bring sorely needed cyber security expertise to a market with one of the highest rate of cyber attacks, but also introduce global innovations to deal with the evolving cyber threats landscape. Clients will be able to focus on their core business while leaving the management of their cyber security controls and programs to the professionals.</p>\n<p class=\"Body\">&ldquo;We realised that the cyber threat issues in Indonesia can be detrimental to the local enterprises&rsquo; growth plans,&rdquo; says Ivan Goh, CEO and Co-Founder of ARIM Technologies. &ldquo;But we have also seen for ourselves the lucrative potential on offer in the country. Our goals are to bring much needed cyber expertise to the Indonesian market, and to introduce innovative technologies to deal with the evolving cyber threats landscape. Partnering with Intech Indonesia provides the perfect platform to achieve these goals, allowing local enterprises to focus on their growth plans without worrying about the detrimental consequences of cyber attacks.&rdquo;</p>\n<p class=\"Body\">Intech&rsquo;s Managing Director, Mei Sen, says, &ldquo;The company is excited to be working with ARIM. With the growing and evolving cyber threats landscape, there&rsquo;s a definite need for cyber expertise in Indonesia. We believe that ARIM has the expertise and the right technologies to help Indonesian enterprises. Combining our local knowledge and experience in the software markets with ARIM&rsquo;s cyber expertise will allow us the opportunity to make a difference to the safety of the online economy across Indonesia.&rdquo;</p>\n<p class=\"Body\">ARIM Technologies specialises in launching innovative start-ups onto the Asian market. Combining their expert knowledge of the Asian Pacific region with a deep understanding of technological products and solutions, the result is an ability to market businesses in some of the most challenging climates in the world.</p>\n<p class=\"Body\">Since forming in 2000, Intech Indonesia has established itself as a leading Enterprise IT Solutions and Services Provider, partnering with customer organisations to help plan, build, manage and support their infrastructure, security and application requirements.</p>\n<p>This article was originally posted at <a href=\"https://beta.finance.yahoo.com/news/singapores-arim-technologies-announces-partnership-020000713.html\">Yahoo Finance</a>.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<h3><strong>Think out of the box: Innovate for survival against Advanced Cyber Threats</strong></h3>\n<p>SINGAPORE, Jan. 12, 2016 /PRNewswire/ &mdash; With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses of all sizes. Two major firms in the fields of cyber-security and enterprise infrastructure and applications are about to make a partnership announcement at an upcoming press conference in Jakarta, Indonesia at the Le Meridien Hotel on January 12, 2016.</p>\n<blockquote>\n<p><strong>Singapore&rsquo;s ARIM Technologies Announces Partnership with Intech Indonesia</strong></p>\n</blockquote>\n<p class=\"Body\">Security breaches have become all too common, compromising some of the largest corporations in the world despite controls in place. Intech&rsquo;s vast experience in the software and infrastructure consulting business combined with ARIM&rsquo;s cyber expertise makes a holistic MSSP partnership. This strategic partnership will not only bring sorely needed cyber security expertise to a market with one of the highest rate of cyber attacks, but also introduce global innovations to deal with the evolving cyber threats landscape. Clients will be able to focus on their core business while leaving the management of their cyber security controls and programs to the professionals.</p>\n<p class=\"Body\">&ldquo;We realised that the cyber threat issues in Indonesia can be detrimental to the local enterprises&rsquo; growth plans,&rdquo; says Ivan Goh, CEO and Co-Founder of ARIM Technologies. &ldquo;But we have also seen for ourselves the lucrative potential on offer in the country. Our goals are to bring much needed cyber expertise to the Indonesian market, and to introduce innovative technologies to deal with the evolving cyber threats landscape. Partnering with Intech Indonesia provides the perfect platform to achieve these goals, allowing local enterprises to focus on their growth plans without worrying about the detrimental consequences of cyber attacks.&rdquo;</p>\n<p class=\"Body\">Intech&rsquo;s Managing Director, Mei Sen, says, &ldquo;The company is excited to be working with ARIM. With the growing and evolving cyber threats landscape, there&rsquo;s a definite need for cyber expertise in Indonesia. We believe that ARIM has the expertise and the right technologies to help Indonesian enterprises. Combining our local knowledge and experience in the software markets with ARIM&rsquo;s cyber expertise will allow us the opportunity to make a difference to the safety of the online economy across Indonesia.&rdquo;</p>\n<p class=\"Body\">ARIM Technologies specialises in launching innovative start-ups onto the Asian market. Combining their expert knowledge of the Asian Pacific region with a deep understanding of technological products and solutions, the result is an ability to market businesses in some of the most challenging climates in the world.</p>\n<p class=\"Body\">Since forming in 2000, Intech Indonesia has established itself as a leading Enterprise IT Solutions and Services Provider, partnering with customer organisations to help plan, build, manage and support their infrastructure, security and application requirements.</p>\n<p>This article was originally posted at <a href=\"https://beta.finance.yahoo.com/news/singapores-arim-technologies-announces-partnership-020000713.html\">Yahoo Finance</a>.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/115-ireside-chat-series-5-think-out-of-the-box-innovate-for-survival-against-advanced-cyber-threats.jpg','contents/list/17/thumb/115-ireside-chat-series-5-think-out-of-the-box-innovate-for-survival-against-advanced-cyber-threats-thumb.jpg','Think out of the box: Innovate for survival against Advanced Cyber Threats','Think out of the box: Innovate for survival against Advanced Cyber Threats','SINGAPORE, Jan. 12, 2016 /PRNewswire/ — With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses','Think out of the box: Innovate for survival against Advanced Cyber Threats','Think out of the box: Innovate for survival against Advanced Cyber Threats','SINGAPORE, Jan. 12, 2016 /PRNewswire/ — With the proliferation of the Internet comes the threat of data breaches by cyber attackers. Not only are governments at risk, but also businesses','2016-01-12','2','2016-09-15 14:27:25','2016-09-15 15:00:22',1),(116,17,'','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','In response to overwhelming interests in our Malware & Advanced Targeted Attacks Workshop (Singapore) in September 2015, we have decided to extend the workshop to participants in Hong Kong and','In response to overwhelming interests in our Malware & Advanced Targeted Attacks Workshop (Singapore) in September 2015, we have decided to extend the workshop to participants in Hong Kong and','<p class=\"Body\">In response to overwhelming interests in our <em>Malware &amp; Advanced Targeted Attacks Workshop (Singapore)</em> in September 2015, we have decided to extend the workshop to participants in Hong Kong and Macau! Partnering with e-Cop HK, <em>Malware &amp; Targeted Attacks Workshop Round 2</em> took place in Harbour Plaza North Point, Hong Kong, on the 3rd of December 2015.</p>\n<p>We are highly honored to have Israeli Cyber Security Experts from enSilo, who were previously featured on <a href=\"http://www.darkreading.com/endpoint/startup-focuses-on-stopping-data-exfiltration/d/d-id/1319387\">Dark Reading</a>, <a href=\"http://www.forbes.com/sites/thomasbrewster/2015/06/09/from-israel-unit-8200-to-ad-men/\">Forbes</a>, <a href=\"http://www.securityweek.com/researchers-bypass-all-windows-protections-modifying-single-bit\">Security Week</a> etc., join us as guest speakers for the workshop. Participants were given hands-on opportunities to learn about malware, advanced code injection techniques (as presented in Black Hat Vegas 2015), OS vulnerabilities, and even engage in a hands-on mini-workshop dissecting malware.</p>\n<blockquote>\n<p><strong>Let&rsquo;s Get Technical: Malware &amp; Advanced Targeted Attacks Workshop Round 2 &ndash; Hong Kong</strong></p>\n</blockquote>\n<p class=\"Body\">In the keynote session, Roy Katmor (CEO &amp; Co-Founder of enSilo), an authoritative figure in cyber-security, shared his past and present experiences in addressing cyber-threats. He presented innovative approaches against advanced attacks and strategies dealing with trending cyber security issues from both technological and business perspectives.</p>\n<p>The CTO &amp; Co-Founder of enSilo, Udi Yavo, demonstrated advanced techniques in detecting windows kernel vulnerabilities that are becoming commonly used by threat actors to carry out their attacks while Tomer Bitton, VP Research &amp; Co-Founder of enSilo, exposed additional new user-and kernel-mode injection techniques. One of these techniques was coined &ldquo;code-less code injection&rdquo; since, as opposed to other known injection techniques, this technique does not require adding code to the injected process.</p>\n<p>After the break, Bitton carried on with a hands-on mini-workshop dissecting malware; answering questions like &ldquo;how do they bypass security solutions and Windows&rsquo; built-in mitigations?&rdquo;, &ldquo;What is a non-encrypting ransomware?&rdquo;.</p>\n<p>The event closed with an interactive session filled with technical debates and discussions around interesting and controversial issues facing the Cyber Security community.</p>\n<p>&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<p class=\"Body\">In response to overwhelming interests in our <em>Malware &amp; Advanced Targeted Attacks Workshop (Singapore)</em> in September 2015, we have decided to extend the workshop to participants in Hong Kong and Macau! Partnering with e-Cop HK, <em>Malware &amp; Targeted Attacks Workshop Round 2</em> took place in Harbour Plaza North Point, Hong Kong, on the 3rd of December 2015.</p>\n<p>We are highly honored to have Israeli Cyber Security Experts from enSilo, who were previously featured on <a href=\"http://www.darkreading.com/endpoint/startup-focuses-on-stopping-data-exfiltration/d/d-id/1319387\">Dark Reading</a>, <a href=\"http://www.forbes.com/sites/thomasbrewster/2015/06/09/from-israel-unit-8200-to-ad-men/\">Forbes</a>, <a href=\"http://www.securityweek.com/researchers-bypass-all-windows-protections-modifying-single-bit\">Security Week</a> etc., join us as guest speakers for the workshop. Participants were given hands-on opportunities to learn about malware, advanced code injection techniques (as presented in Black Hat Vegas 2015), OS vulnerabilities, and even engage in a hands-on mini-workshop dissecting malware.</p>\n<blockquote>\n<p><strong>Let&rsquo;s Get Technical: Malware &amp; Advanced Targeted Attacks Workshop Round 2 &ndash; Hong Kong</strong></p>\n</blockquote>\n<p class=\"Body\">In the keynote session, Roy Katmor (CEO &amp; Co-Founder of enSilo), an authoritative figure in cyber-security, shared his past and present experiences in addressing cyber-threats. He presented innovative approaches against advanced attacks and strategies dealing with trending cyber security issues from both technological and business perspectives.</p>\n<p>The CTO &amp; Co-Founder of enSilo, Udi Yavo, demonstrated advanced techniques in detecting windows kernel vulnerabilities that are becoming commonly used by threat actors to carry out their attacks while Tomer Bitton, VP Research &amp; Co-Founder of enSilo, exposed additional new user-and kernel-mode injection techniques. One of these techniques was coined &ldquo;code-less code injection&rdquo; since, as opposed to other known injection techniques, this technique does not require adding code to the injected process.</p>\n<p>After the break, Bitton carried on with a hands-on mini-workshop dissecting malware; answering questions like &ldquo;how do they bypass security solutions and Windows&rsquo; built-in mitigations?&rdquo;, &ldquo;What is a non-encrypting ransomware?&rdquo;.</p>\n<p>The event closed with an interactive session filled with technical debates and discussions around interesting and controversial issues facing the Cyber Security community.</p>\n<p>&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/116-lets-get-technical-malware-advanced-targeted-attacks-workshop-round-2-hong-kong.jpg','contents/list/17/thumb/116-lets-get-technical-malware-advanced-targeted-attacks-workshop-round-2-hong-kong-thumb.jpg','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','In response to overwhelming interests in our Malware & Advanced Targeted Attacks Workshop (Singapore) in September 2015, we have decided to extend the workshop to participants in Hong Kong and','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','Let’s Get Technical: Malware & Advanced Targeted Attacks Workshop Round 2 – Hong Kong','In response to overwhelming interests in our Malware & Advanced Targeted Attacks Workshop (Singapore) in September 2015, we have decided to extend the workshop to participants in Hong Kong and','2015-12-03','2','2016-09-15 14:36:13',NULL,1),(117,17,'','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','enSilo, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a Malware & Advanced Targeted Attacks Workshop in Singapore. The workshop was jointly presented by enSilo and ARIM','enSilo, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a Malware & Advanced Targeted Attacks Workshop in Singapore. The workshop was jointly presented by enSilo and ARIM','<p><a href=\"https://www.ensilo.com/\" target=\"_blank\" rel=\"nofollow\">enSilo</a>, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a <em>Malware &amp; Advanced Targeted Attacks Workshop</em> in <span class=\"xn-location\">Singapore</span>. The workshop was jointly presented by enSilo and ARIM Technologies in response to the increasing risk of advanced cyber-security attacks on Asian corporations and organizations. According to the<a href=\"http://www.aon.com/apac/risk/2015-asia-pacific-cyber-impact-report.jsp\" target=\"_blank\" rel=\"nofollow\">2015 Asia Pacific (APAC) Cyber Impact Report</a>, 44% of business respondents in the <span class=\"xn-location\">Asia-Pacific</span> region expect cyber risk exposure to increase in the next two years.</p>\n<p>&ldquo;The frequency, severity and cost of cyber-attacks is increasing worldwide and companies in the <span class=\"xn-location\">Asia Pacific</span> region are not immune to this global cyber-threat,&rdquo; noted enSilo CEO <span class=\"xn-person\">Roy Katmor</span>, &ldquo;The growing amount of incidents requires more measures and knowledge. That&rsquo;s exactly what we addressed in this workshop &ndash; not only what cyber threats corporations and organizations should be aware of, but also the technical know-how they need to properly address trending and emerging cyber-threats.&rdquo;</p>\n<p>enSilo came out of stealth mode in March, 2015 and recently announced a <span class=\"xn-money\">$10 million</span> Series A funding round from Lightspeed Venture Partners and Carmel Ventures. The company is changing the paradigm of cyber-security by operating under the assumption that external threat actors cannot be prevented from infiltrating networks, instead focusing on preventing the exfiltration and ransoming of critical data in the event of a cyber-attack. With enSilo&rsquo;s unique virtual patching technique which only blocks malicious outbound communications, employees are able to continue with work as usual on compromised devices while the attack is being resolved.</p>\n<p>The workshop was led by seasoned veterans in the cyber-security space, including three founders of enSilo &ndash; Roy Katmor (CEO),<span class=\"xn-person\">Udi Yavo</span> (CTO), <span class=\"xn-person\">Tomer Bitton</span> (VP Research) &ndash; as well as <span class=\"xn-person\">Ivan Goh</span> (CEO and Co-Founder of ARIM Technologies) and Liad Mizrachi (Malware and Cyber Security Expert for ARIM Technologies). The event included a range of technical discussions and a hands-on session focusing on malware forensics in order to equip attendees with the skills, know-how and information to better prepare their businesses against the growing threat of cyber-attacks. Spots for the workshop filled up within 48 hours &ndash; a testament to the growing awareness of the need for sophisticated and robust protection against cyber-attacks in the <span class=\"xn-location\">Asia-Pacific</span> region.</p>\n<p>&ldquo;Cyber-attackers are continuously&nbsp;coming up with new and increasingly creative attack methods, and without the opportunity to learn about new technologies to help cope with evolving cyber threats, Asian organizations are at risk of being compromised,&rdquo; noted ARIM Technologies CEO <span class=\"xn-person\">Ivan Goh</span>. &ldquo;The consistent feedback that&nbsp;I have received through engagements with <span class=\"xn-location\">Asia-Pacific</span> organizations is that there is a growing need for resources, knowledge and technologies to deal with advanced attacks. During this workshop, we shared both our knowledge on new attack methods as well as new technologies.&rdquo;</p>\n<p>This article was originally posted at <a href=\"http://goo.gl/mOclLg\" target=\"_blank\">Yahoo Finance</a>.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<p><a href=\"https://www.ensilo.com/\" target=\"_blank\" rel=\"nofollow\">enSilo</a>, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a <em>Malware &amp; Advanced Targeted Attacks Workshop</em> in <span class=\"xn-location\">Singapore</span>. The workshop was jointly presented by enSilo and ARIM Technologies in response to the increasing risk of advanced cyber-security attacks on Asian corporations and organizations. According to the<a href=\"http://www.aon.com/apac/risk/2015-asia-pacific-cyber-impact-report.jsp\" target=\"_blank\" rel=\"nofollow\">2015 Asia Pacific (APAC) Cyber Impact Report</a>, 44% of business respondents in the <span class=\"xn-location\">Asia-Pacific</span> region expect cyber risk exposure to increase in the next two years.</p>\n<p>&ldquo;The frequency, severity and cost of cyber-attacks is increasing worldwide and companies in the <span class=\"xn-location\">Asia Pacific</span> region are not immune to this global cyber-threat,&rdquo; noted enSilo CEO <span class=\"xn-person\">Roy Katmor</span>, &ldquo;The growing amount of incidents requires more measures and knowledge. That&rsquo;s exactly what we addressed in this workshop &ndash; not only what cyber threats corporations and organizations should be aware of, but also the technical know-how they need to properly address trending and emerging cyber-threats.&rdquo;</p>\n<p>enSilo came out of stealth mode in March, 2015 and recently announced a <span class=\"xn-money\">$10 million</span> Series A funding round from Lightspeed Venture Partners and Carmel Ventures. The company is changing the paradigm of cyber-security by operating under the assumption that external threat actors cannot be prevented from infiltrating networks, instead focusing on preventing the exfiltration and ransoming of critical data in the event of a cyber-attack. With enSilo&rsquo;s unique virtual patching technique which only blocks malicious outbound communications, employees are able to continue with work as usual on compromised devices while the attack is being resolved.</p>\n<p>The workshop was led by seasoned veterans in the cyber-security space, including three founders of enSilo &ndash; Roy Katmor (CEO),<span class=\"xn-person\">Udi Yavo</span> (CTO), <span class=\"xn-person\">Tomer Bitton</span> (VP Research) &ndash; as well as <span class=\"xn-person\">Ivan Goh</span> (CEO and Co-Founder of ARIM Technologies) and Liad Mizrachi (Malware and Cyber Security Expert for ARIM Technologies). The event included a range of technical discussions and a hands-on session focusing on malware forensics in order to equip attendees with the skills, know-how and information to better prepare their businesses against the growing threat of cyber-attacks. Spots for the workshop filled up within 48 hours &ndash; a testament to the growing awareness of the need for sophisticated and robust protection against cyber-attacks in the <span class=\"xn-location\">Asia-Pacific</span> region.</p>\n<p>&ldquo;Cyber-attackers are continuously&nbsp;coming up with new and increasingly creative attack methods, and without the opportunity to learn about new technologies to help cope with evolving cyber threats, Asian organizations are at risk of being compromised,&rdquo; noted ARIM Technologies CEO <span class=\"xn-person\">Ivan Goh</span>. &ldquo;The consistent feedback that&nbsp;I have received through engagements with <span class=\"xn-location\">Asia-Pacific</span> organizations is that there is a growing need for resources, knowledge and technologies to deal with advanced attacks. During this workshop, we shared both our knowledge on new attack methods as well as new technologies.&rdquo;</p>\n<p>This article was originally posted at <a href=\"http://goo.gl/mOclLg\" target=\"_blank\">Yahoo Finance</a>.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/117-lets-get-technical-malware-and-advanced-targeted-attacks-workshop.jpg','contents/list/17/thumb/117-lets-get-technical-malware-and-advanced-targeted-attacks-workshop-thumb.jpg','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','enSilo, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a Malware & Advanced Targeted Attacks Workshop in Singapore. The workshop was jointly presented by enSilo and ARIM','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','Let’s Get Technical – Malware and Advanced Targeted Attacks Workshop','enSilo, a cyber-security company providing a real-time data exfiltration prevention platform, hosted a Malware & Advanced Targeted Attacks Workshop in Singapore. The workshop was jointly presented by enSilo and ARIM','2015-09-29','2','2016-09-15 14:39:30',NULL,1),(118,17,'','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO & Co-Founder of enSilo, and ARIM’s advisory board members share their opinions, insights, and experience.','For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO & Co-Founder of enSilo, and ARIM’s advisory board members share their opinions, insights, and experience.','<p>For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO &amp; Co-Founder of enSilo, and ARIM&rsquo;s advisory board members share their&nbsp;opinions, insights, and experience. The event was hosted at The Singapore Turf Club on the 28th of August 2015.</p>\n<blockquote>\n<p><strong>Next Gen CIO/CISO &ndash; Innovate for survival against Cyber Threats</strong></p>\n</blockquote>\n<p>The event featured thought-provoking discussions about the challenges faced by CIOs, CISOs and security leaders in the face of advanced targeted attacks. In the evening, members took the opportunity to interact and share ideas with our panelists, speakers and industry leaders over dinner and drinks. All of this networking took place against the backdrop of a spirited and enjoyable live race event at The Singapore Turf Club.</p>\n<p style=\"text-align: center;\"><strong><u>Speakers, Panelists &amp; Moderator</u></strong></p>\n<p style=\"text-align: center;\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enSilo-turfclub-panelist-300x106.jpg\" alt=\"\" /></p>\n<p>&nbsp;</p>\n<p>The event kicked off with a welcome note by Ivan Goh, CEO and Co-Founder of ARIM Technologies; after which Roy Katmor, CEO and Co-Founder of enSilo, presented the keynote speeches. Entitled &lsquo;There is no perfect cyber-security solution, have we lost the game?&rsquo; and &lsquo;Virtual Patching against Advanced Targeted Attacks, Yes it does exist!&rsquo; These interesting and insightful presentations were well received by all our members and sparked a number of interesting conversations. Our guests and panelist speakers were then invited to participate in a discussion on the challenges faced by CIOs, CISOs and security leaders in the face of increasing advanced targeted attacks.</p>\n<p>The panel discussion on the topic of &lsquo;Evolution From Security to Cyber-risk Management&rsquo; was led by our panelist speakers Ian Guy Gillard, Executive Vice President of Bangkok Bank PCL, Michael Smith, CTO Asia Pacific of Akamai, and Roy Katmor. The panel discussion was moderated by Ivan, who oversaw a no&ndash;holds&ndash;barred, thought-provoking discussion.</p>\n<p>After a day of spirited debate and discussion, the evening was filled with a more light-hearted atmosphere. Members and panelist speakers from the various industries met over drinks before we close the evening&nbsp;with a dinner buffet and a fun filled live race event at The Singapore Turf Club.</p>\n<p>&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<p>For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO &amp; Co-Founder of enSilo, and ARIM&rsquo;s advisory board members share their&nbsp;opinions, insights, and experience. The event was hosted at The Singapore Turf Club on the 28th of August 2015.</p>\n<blockquote>\n<p><strong>Next Gen CIO/CISO &ndash; Innovate for survival against Cyber Threats</strong></p>\n</blockquote>\n<p>The event featured thought-provoking discussions about the challenges faced by CIOs, CISOs and security leaders in the face of advanced targeted attacks. In the evening, members took the opportunity to interact and share ideas with our panelists, speakers and industry leaders over dinner and drinks. All of this networking took place against the backdrop of a spirited and enjoyable live race event at The Singapore Turf Club.</p>\n<p style=\"text-align: center;\"><strong><u>Speakers, Panelists &amp; Moderator</u></strong></p>\n<p style=\"text-align: center;\"><img src=\"http://cobaweb.co/project/arimtechV2/contents/tinyMCE/enSilo-turfclub-panelist-300x106.jpg\" alt=\"\" /></p>\n<p>&nbsp;</p>\n<p>The event kicked off with a welcome note by Ivan Goh, CEO and Co-Founder of ARIM Technologies; after which Roy Katmor, CEO and Co-Founder of enSilo, presented the keynote speeches. Entitled &lsquo;There is no perfect cyber-security solution, have we lost the game?&rsquo; and &lsquo;Virtual Patching against Advanced Targeted Attacks, Yes it does exist!&rsquo; These interesting and insightful presentations were well received by all our members and sparked a number of interesting conversations. Our guests and panelist speakers were then invited to participate in a discussion on the challenges faced by CIOs, CISOs and security leaders in the face of increasing advanced targeted attacks.</p>\n<p>The panel discussion on the topic of &lsquo;Evolution From Security to Cyber-risk Management&rsquo; was led by our panelist speakers Ian Guy Gillard, Executive Vice President of Bangkok Bank PCL, Michael Smith, CTO Asia Pacific of Akamai, and Roy Katmor. The panel discussion was moderated by Ivan, who oversaw a no&ndash;holds&ndash;barred, thought-provoking discussion.</p>\n<p>After a day of spirited debate and discussion, the evening was filled with a more light-hearted atmosphere. Members and panelist speakers from the various industries met over drinks before we close the evening&nbsp;with a dinner buffet and a fun filled live race event at The Singapore Turf Club.</p>\n<p>&nbsp;</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/118-next-gen-ciociso-innovate-for-survival-against-cyber-threats.jpg','contents/list/17/thumb/118-next-gen-ciociso-innovate-for-survival-against-cyber-threats-thumb.jpg','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO & Co-Founder of enSilo, and ARIM’s advisory board members share their opinions, insights, and experience.','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','Next Gen CIO/CISO – Innovate for survival against Cyber Threats','For our Fireside Chat Series #2 event, we are honored to have Roy Katmor, CEO & Co-Founder of enSilo, and ARIM’s advisory board members share their opinions, insights, and experience.','2015-08-28','2','2016-09-15 14:49:56',NULL,1),(119,17,'','You cannot protect what you cannot see','You cannot protect what you cannot see','Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015. Do you agree that Cyber threats','Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015. Do you agree that Cyber threats','<p>Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015.</p>\n<blockquote>\n<p><strong>Do you agree that Cyber threats has become ubiquitous in government &amp; private entities?</strong></p>\n</blockquote>\n<p>&nbsp;</p>\n<p class=\"Body\">Today&rsquo;s businesses are feeling the heat. IT leaders are increasingly finding it challenging to cope with evolving cyber threats. As emerging technologies mature, and IT systems intertwine, it is critical to achieving visibility in an increasingly complex environment. Our presenters focused on the application of the NIST Cybersecurity Framework in today&rsquo;s threat landscape, and what can be done to manage complexity and to protect the enterprise network from rouge sources.</p>\n<p><strong><u>About speakers</u></strong></p>\n<p><em><strong>Jackson Jeow</strong><br /></em><em>Senior Security Consultant,&nbsp;ARIM Technologies</em></p>\n<p>Jackson is a cyber security consultant with more than eight years experience in engineering, consulting and delivery across defense, banking, and education sectors. His accomplishments include architecting DSTA&rsquo;s enterprise secure FTP solution (2007) and Bahrain NAF (2012), and delivering IAM solution for DBS (2013) and Credit Suisse (2013). He believes in making security accessible for all enterprises, large and small, and enjoys sharing his security know-how and passion with people in the industry.</p>\n<p><em><strong>Chong Chee</strong><br />Consultant &ndash; APAC, ForeScout&nbsp;</em></p>\n<p class=\"Body\">Chong Chee is a versatile security professional with a wealth of experience in end-to-end solutions. Over the span of a nine-year career, he has specialized in everything from applications to network and security solutions. He enjoys a good cup of coffee and loves new age music.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','<p>Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015.</p>\n<blockquote>\n<p><strong>Do you agree that Cyber threats has become ubiquitous in government &amp; private entities?</strong></p>\n</blockquote>\n<p>&nbsp;</p>\n<p class=\"Body\">Today&rsquo;s businesses are feeling the heat. IT leaders are increasingly finding it challenging to cope with evolving cyber threats. As emerging technologies mature, and IT systems intertwine, it is critical to achieving visibility in an increasingly complex environment. Our presenters focused on the application of the NIST Cybersecurity Framework in today&rsquo;s threat landscape, and what can be done to manage complexity and to protect the enterprise network from rouge sources.</p>\n<p><strong><u>About speakers</u></strong></p>\n<p><em><strong>Jackson Jeow</strong><br /></em><em>Senior Security Consultant,&nbsp;ARIM Technologies</em></p>\n<p>Jackson is a cyber security consultant with more than eight years experience in engineering, consulting and delivery across defense, banking, and education sectors. His accomplishments include architecting DSTA&rsquo;s enterprise secure FTP solution (2007) and Bahrain NAF (2012), and delivering IAM solution for DBS (2013) and Credit Suisse (2013). He believes in making security accessible for all enterprises, large and small, and enjoys sharing his security know-how and passion with people in the industry.</p>\n<p><em><strong>Chong Chee</strong><br />Consultant &ndash; APAC, ForeScout&nbsp;</em></p>\n<p class=\"Body\">Chong Chee is a versatile security professional with a wealth of experience in end-to-end solutions. Over the span of a nine-year career, he has specialized in everything from applications to network and security solutions. He enjoys a good cup of coffee and loves new age music.</p>\n<hr />\n<p><br />Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>','contents/list/17/119-you-cannot-protect-what-you-cannot-see.jpg','contents/list/17/thumb/119-you-cannot-protect-what-you-cannot-see-thumb.jpg','You cannot protect what you cannot see','You cannot protect what you cannot see','Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015. Do you agree that Cyber threats','You cannot protect what you cannot see','You cannot protect what you cannot see','Jointly presented by ForeScout and ARIM Technologies, our inaugural Fireside Chat Series event was successfully held in Singapore on the 21st of August 2015. Do you agree that Cyber threats','2015-08-21','2','2016-09-15 14:55:09',NULL,1),(120,17,'','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','The RSA Conference Asia Pacific & Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo,','The RSA Conference Asia Pacific & Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo,','<p>The RSA Conference Asia Pacific &amp; Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo, an Israeli cyber-security company providing a real-time data exfiltration prevention platform.</p>\n<p>Delegates who visited our booth were invited to attend a separate group session where ARIM Technologies&rsquo;s CEO and Co-Founder Ivan Goh presented on the topic of Preventing the Consequences of an Advanced Targeted Attack. Those who attended the private session were invited to a one-to-one meeting to discuss tailored strategy against Advanced Targeted Attacks and were given an opportunity to trial enSilo as part of their overall cyber security program.</p>\n<div class=\"entry-content\">\n<p>&nbsp;</p>\n<hr />\n<p><br />To find out more information on Fireside Chat, visit here &ndash;&nbsp;<a href=\"http://vaultup.com/firesidechat/\">vaultup.com/firesidechat/</a></p>\n<p>Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>\n</div>\n<div class=\"dfd-meta-container\">&nbsp;</div>','<p>The RSA Conference Asia Pacific &amp; Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo, an Israeli cyber-security company providing a real-time data exfiltration prevention platform.</p>\n<p>Delegates who visited our booth were invited to attend a separate group session where ARIM Technologies&rsquo;s CEO and Co-Founder Ivan Goh presented on the topic of Preventing the Consequences of an Advanced Targeted Attack. Those who attended the private session were invited to a one-to-one meeting to discuss tailored strategy against Advanced Targeted Attacks and were given an opportunity to trial enSilo as part of their overall cyber security program.</p>\n<div class=\"entry-content\">\n<p>&nbsp;</p>\n<hr />\n<p><br />To find out more information on Fireside Chat, visit here &ndash;&nbsp;<a href=\"http://vaultup.com/firesidechat/\">vaultup.com/firesidechat/</a></p>\n<p>Register for interest to become a part of our Fireside Chat community and receive an invitation for the upcoming events at <a href=\"mailto:enquiry@arim-tech.com\" target=\"_blank\">enquiry@arim-tech.com</a>.</p>\n</div>\n<div class=\"dfd-meta-container\">&nbsp;</div>','contents/list/17/120-rsa-conference-asia-pacific-japan-2015-ensilo-booth-e44.jpg','contents/list/17/thumb/120-rsa-conference-asia-pacific-japan-2015-ensilo-booth-e44-thumb.jpg','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','The RSA Conference Asia Pacific & Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo,','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','RSA Conference Asia Pacific & Japan 2015 – enSilo booth E44!','The RSA Conference Asia Pacific & Japan 2015 was held at Marina Bay Sands, Singapore and ran from the 22-24th June. ARIM Technologies was proud to be there representing enSilo,','2015-07-24','2','2016-09-15 14:58:12',NULL,1),(121,18,'','Aesthetic Treatment itu aman bagi Anda','Aesthetic Treatment itu aman bagi Anda','Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.','Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.','<p>Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.</p>','<p>Pellentesque bibendum facilisis massa. In blandit turpis nec sem blandit, nec sagittis est mollis.</p>','contents/list/18/121-aesthetic-treatment-itu-aman-bagi-anda.jpg','contents/list/18/thumb/121-aesthetic-treatment-itu-aman-bagi-anda-thumb.jpg','','','','','','','2016-12-23','2','2016-12-23 10:22:13',NULL,1),(122,18,'','Something Someday','Something Someday','Something Someday','Something Someday','<p>Duis pharetra, sapien in fringilla elementum, urna justo gravida eros, ut auctor sapien ligula sit amet est. Phasellus dignissim, turpis eget tempus ornare, nunc tortor vestibulum lorem, sed eleifend lorem nisl quis purus. Sed id nisi maximus, maximus justo non, ullamcorper odio. Mauris porttitor dapibus est eget eleifend. Suspendisse vehicula tristique lorem ut accumsan. Etiam venenatis tempus convallis. Integer porttitor finibus sapien, non facilisis ligula lacinia vel.</p>\n<p>Mauris ut tellus nec justo pharetra finibus. Vestibulum sit amet libero nec sem pharetra lobortis. Sed nec suscipit urna. Nullam luctus tellus vel libero aliquet facilisis. Nullam rutrum porta lacinia. Aenean tincidunt gravida ultricies. Vestibulum finibus lectus purus, sit amet mollis nisi elementum gravida. Sed et tellus nec augue malesuada rhoncus sodales vitae lectus. Phasellus sit amet odio sapien. Maecenas congue erat in justo pellentesque, sit amet mattis quam tempus. Quisque nec dignissim velit. Suspendisse ultrices, mi nec luctus auctor, velit ante porttitor mi, ac euismod mi sapien a orci. Fusce nibh enim, pulvinar in consequat quis, porta venenatis erat. Curabitur eleifend libero ac elit sodales viverra.</p>\n<p class=\"wide\">Nullam at mauris tincidunt, pharetra felis vel, dictum erat. Nunc tempus neque a nisl suscipit pretium. In vel diam ac ipsum hendrerit varius. Vivamus sollicitudin metus vel euismod efficitur. Nunc interdum laoreet nisl quis pellentesque. Morbi molestie arcu at dolor posuere, et maximus odio dapibus. Ut id nunc et est tincidunt tincidunt. Curabitur mi ex, imperdiet ut neque non, tristique finibus tortor. Nunc non ex dignissim, tristique ex sagittis, accumsan eros. Maecenas malesuada dui sit amet urna fermentum, eget efficitur turpis porttitor. Nunc vitae odio diam. Fusce eget dapibus tortor. Suspendisse mollis, dui ut efficitur dapibus, orci ligula bibendum quam, sed commodo purus libero vel quam. Maecenas at ante suscipit, ornare eros vitae, placerat turpis. Donec sit amet malesuada justo. Duis pellentesque, risus a sagittis varius, mauris massa finibus risus, ut suscipit ex mauris quis ligula.</p>\n<p>Suspendisse nec diam dictum, suscipit libero nec, condimentum nisi. Donec viverra tempor leo, in molestie felis ultrices a. Maecenas rhoncus suscipit nisi, quis lobortis erat rhoncus in. Maecenas semper lacus elementum cursus aliquet. Etiam a dictum turpis. Donec id bibendum tellus. Proin sed mi non mi ullamcorper tincidunt a vel ligula. Donec sagittis purus eget neque commodo faucibus. Pellentesque in nisi lobortis, tincidunt odio ac, sodales eros.</p>','<p>Duis pharetra, sapien in fringilla elementum, urna justo gravida eros, ut auctor sapien ligula sit amet est. Phasellus dignissim, turpis eget tempus ornare, nunc tortor vestibulum lorem, sed eleifend lorem nisl quis purus. Sed id nisi maximus, maximus justo non, ullamcorper odio. Mauris porttitor dapibus est eget eleifend. Suspendisse vehicula tristique lorem ut accumsan. Etiam venenatis tempus convallis. Integer porttitor finibus sapien, non facilisis ligula lacinia vel.</p>\n<p>Mauris ut tellus nec justo pharetra finibus. Vestibulum sit amet libero nec sem pharetra lobortis. Sed nec suscipit urna. Nullam luctus tellus vel libero aliquet facilisis. Nullam rutrum porta lacinia. Aenean tincidunt gravida ultricies. Vestibulum finibus lectus purus, sit amet mollis nisi elementum gravida. Sed et tellus nec augue malesuada rhoncus sodales vitae lectus. Phasellus sit amet odio sapien. Maecenas congue erat in justo pellentesque, sit amet mattis quam tempus. Quisque nec dignissim velit. Suspendisse ultrices, mi nec luctus auctor, velit ante porttitor mi, ac euismod mi sapien a orci. Fusce nibh enim, pulvinar in consequat quis, porta venenatis erat. Curabitur eleifend libero ac elit sodales viverra.</p>\n<p class=\"wide\">Nullam at mauris tincidunt, pharetra felis vel, dictum erat. Nunc tempus neque a nisl suscipit pretium. In vel diam ac ipsum hendrerit varius. Vivamus sollicitudin metus vel euismod efficitur. Nunc interdum laoreet nisl quis pellentesque. Morbi molestie arcu at dolor posuere, et maximus odio dapibus. Ut id nunc et est tincidunt tincidunt. Curabitur mi ex, imperdiet ut neque non, tristique finibus tortor. Nunc non ex dignissim, tristique ex sagittis, accumsan eros. Maecenas malesuada dui sit amet urna fermentum, eget efficitur turpis porttitor. Nunc vitae odio diam. Fusce eget dapibus tortor. Suspendisse mollis, dui ut efficitur dapibus, orci ligula bibendum quam, sed commodo purus libero vel quam. Maecenas at ante suscipit, ornare eros vitae, placerat turpis. Donec sit amet malesuada justo. Duis pellentesque, risus a sagittis varius, mauris massa finibus risus, ut suscipit ex mauris quis ligula.</p>\n<p>Suspendisse nec diam dictum, suscipit libero nec, condimentum nisi. Donec viverra tempor leo, in molestie felis ultrices a. Maecenas rhoncus suscipit nisi, quis lobortis erat rhoncus in. Maecenas semper lacus elementum cursus aliquet. Etiam a dictum turpis. Donec id bibendum tellus. Proin sed mi non mi ullamcorper tincidunt a vel ligula. Donec sagittis purus eget neque commodo faucibus. Pellentesque in nisi lobortis, tincidunt odio ac, sodales eros.</p>','contents/list/18/122-something-someday.jpg','contents/list/18/thumb/122-something-someday-thumb.jpg','','','','','','','2016-12-27','2','2016-12-27 16:55:42',NULL,1),(123,19,'','Video 1','Video 1','asdsaVideo 1','sssVideo 1','','','contents/list/19/123-video-1.jpg','contents/list/19/thumb/123-video-1-thumb.jpg','','','','','','','2016-12-31','2','2016-12-31 21:14:33','2016-12-31 21:15:14',1),(125,20,'','Coba','Cobaaa',' what\'s new',' what\'s new','<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>','<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>','contents/list/20/125-coba.jpg','contents/list/20/thumb/125-coba-thumb.jpg','','','','','','','2017-01-23','2','2017-01-23 15:47:57',NULL,1);
/*!40000 ALTER TABLE `page_list_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_post`
--

DROP TABLE IF EXISTS `page_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_post` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `background_type` int(1) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `content_bahasa` text DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_post`
--

LOCK TABLES `page_post` WRITE;
/*!40000 ALTER TABLE `page_post` DISABLE KEYS */;
INSERT INTO `page_post` VALUES (37,NULL,'History','History','<p>In sit amet ipsum ex. Ut non elementum urna. Nam at velit interdum, eleifend massa et, consequat magna. Donec in aliquet turpis, vitae scelerisque eros. Integer vel nisl enim. Aenean tincidunt lorem vel elit faucibus ultrices. In vitae dignissim lacus, vulputate commodo ipsum. Praesent mollis vitae nulla id ultricies. Donec nisi eros, facilisis quis aliquam et, posuere sit amet sapien. Nam facilisis nunc vitae mattis lobortis. Maecenas mauris urna, tempus eget interdum ac, mattis id lorem.</p>\n<p>Sed vel mauris purus. Mauris tristique elit ut finibus dictum. Praesent ullamcorper magna erat, eu egestas lectus dapibus nec. Curabitur pulvinar purus quis nisi pharetra pretium. Praesent dapibus justo sed maximus auctor. Cras mauris sem, lacinia in mollis eget, faucibus non tellus. Suspendisse placerat enim at est condimentum accumsan. Suspendisse luctus, risus et eleifend convallis, felis erat pretium mi, sed egestas est urna sit amet quam. Curabitur at elementum sem. Vestibulum imperdiet bibendum mi et suscipit.</p>\n<p>Aliquam erat volutpat. Donec pulvinar ex ex, nec dapibus odio porttitor vitae. In dignissim quam id purus tincidunt accumsan quis sed tortor. Proin porta feugiat quam, molestie varius sem semper in. Aenean faucibus ultrices sapien, vel semper est ultricies vel. Maecenas mattis odio non eros ultrices, id aliquet nisi feugiat. Morbi maximus diam volutpat, commodo mi eu, bibendum nisi. Sed libero lacus, viverra ac pulvinar sit amet, ornare et dui. Nulla facilisi. Nullam non lacinia erat.</p>','<p>In sit amet ipsum ex. Ut non elementum urna. Nam at velit interdum, eleifend massa et, consequat magna. Donec in aliquet turpis, vitae scelerisque eros. Integer vel nisl enim. Aenean tincidunt lorem vel elit faucibus ultrices. In vitae dignissim lacus, vulputate commodo ipsum. Praesent mollis vitae nulla id ultricies. Donec nisi eros, facilisis quis aliquam et, posuere sit amet sapien. Nam facilisis nunc vitae mattis lobortis. Maecenas mauris urna, tempus eget interdum ac, mattis id lorem.</p>\n<p>Sed vel mauris purus. Mauris tristique elit ut finibus dictum. Praesent ullamcorper magna erat, eu egestas lectus dapibus nec. Curabitur pulvinar purus quis nisi pharetra pretium. Praesent dapibus justo sed maximus auctor. Cras mauris sem, lacinia in mollis eget, faucibus non tellus. Suspendisse placerat enim at est condimentum accumsan. Suspendisse luctus, risus et eleifend convallis, felis erat pretium mi, sed egestas est urna sit amet quam. Curabitur at elementum sem. Vestibulum imperdiet bibendum mi et suscipit.</p>\n<p>Aliquam erat volutpat. Donec pulvinar ex ex, nec dapibus odio porttitor vitae. In dignissim quam id purus tincidunt accumsan quis sed tortor. Proin porta feugiat quam, molestie varius sem semper in. Aenean faucibus ultrices sapien, vel semper est ultricies vel. Maecenas mattis odio non eros ultrices, id aliquet nisi feugiat. Morbi maximus diam volutpat, commodo mi eu, bibendum nisi. Sed libero lacus, viverra ac pulvinar sit amet, ornare et dui. Nulla facilisi. Nullam non lacinia erat.</p>','contents/post/37/37-our-history.jpg','','','','','','','','',2,'2016-12-23 09:10:26','2016-12-26 21:17:11');
/*!40000 ALTER TABLE `page_post` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_slide`
--

DROP TABLE IF EXISTS `page_slide`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_slide` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `background_location` text DEFAULT NULL,
  `headline` text DEFAULT NULL,
  `headline_bahasa` text DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_keyword` text DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_title_bahasa` text DEFAULT NULL,
  `meta_keyword_bahasa` text DEFAULT NULL,
  `meta_description_bahasa` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_slide`
--

LOCK TABLES `page_slide` WRITE;
/*!40000 ALTER TABLE `page_slide` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_slide` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_slide_item`
--

DROP TABLE IF EXISTS `page_slide_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_slide_item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_slide` int(11) DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `title_bahasa` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `description_bahasa` text DEFAULT NULL,
  `image_location` text DEFAULT NULL,
  `thumbnail_location` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_slide_item`
--

LOCK TABLES `page_slide_item` WRITE;
/*!40000 ALTER TABLE `page_slide_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `page_slide_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `setting`
--

DROP TABLE IF EXISTS `setting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `setting` (
  `key` varchar(256) NOT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `setting`
--

LOCK TABLES `setting` WRITE;
/*!40000 ALTER TABLE `setting` DISABLE KEYS */;
INSERT INTO `setting` VALUES ('meta_description','Medikpro'),('meta_keyword','Medikpro'),('meta_robot','Medikpro'),('meta_title','Medikpro'),('meta_title_bahasa','Medikpro'),('meta_description_bahasa','Medikpro'),('meta_keyword_bahasa','Medikpro'),('logo_site','assets/front-end/images/logo-site.png'),('icon_site','assets/front-end/images/favicon.png'),('header_tag',''),('footer_tag','');
/*!40000 ALTER TABLE `setting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subscriber`
--

DROP TABLE IF EXISTS `subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscriber` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `full_name` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscriber`
--

LOCK TABLES `subscriber` WRITE;
/*!40000 ALTER TABLE `subscriber` DISABLE KEYS */;
/*!40000 ALTER TABLE `subscriber` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `testimonial`
--

DROP TABLE IF EXISTS `testimonial`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testimonial` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(250) DEFAULT NULL,
  `testimonial` text DEFAULT NULL,
  `position_company` varchar(250) DEFAULT NULL,
  `photo` text DEFAULT NULL,
  `published` int(1) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `modified_at` datetime DEFAULT NULL,
  `id_album_item` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `testimonial`
--

LOCK TABLES `testimonial` WRITE;
/*!40000 ALTER TABLE `testimonial` DISABLE KEYS */;
INSERT INTO `testimonial` VALUES (1,'My Name','Phasellus lobortis libero urna, non sollicitudin augue porta ac.','','contents/testimonial/1-my-name.jpg',1,'2017-01-24 21:22:57',NULL,84);
/*!40000 ALTER TABLE `testimonial` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voucher_item`
--

DROP TABLE IF EXISTS `voucher_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `voucher_item` (
  `id_voucher_item` int(11) NOT NULL AUTO_INCREMENT,
  `id_voucher` int(11) NOT NULL,
  `voucher_code` varchar(50) NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id_voucher_item`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voucher_item`
--

LOCK TABLES `voucher_item` WRITE;
/*!40000 ALTER TABLE `voucher_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `voucher_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voucher_redeem`
--

DROP TABLE IF EXISTS `voucher_redeem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `voucher_redeem` (
  `id_voucher_redeem` int(11) NOT NULL AUTO_INCREMENT,
  `id_member` int(11) NOT NULL,
  `id_voucher_item` int(11) NOT NULL,
  `voucher_code` varchar(255) NOT NULL,
  `voucher_value` int(11) NOT NULL,
  `notes` text NOT NULL,
  `created_date` datetime NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id_voucher_redeem`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voucher_redeem`
--

LOCK TABLES `voucher_redeem` WRITE;
/*!40000 ALTER TABLE `voucher_redeem` DISABLE KEYS */;
/*!40000 ALTER TABLE `voucher_redeem` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-07-03  4:53:26
