<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Log Management &#38; SIEM for Security, Compliance, Operations &#124; the dialog</title>
	<atom:link href="http://blog.logrhythm.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.logrhythm.com</link>
	<description>Log Management &#38; SIEM for Security, Compliance, Operations &#124; the dialog</description>
	<lastBuildDate>Tue, 24 Apr 2012 15:35:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>&#8220;Reverse&#8221; SQL Injection Using HTTP Headers</title>
		<link>http://blog.logrhythm.com/security/reverse-sql-injection-using-http-headers/</link>
		<comments>http://blog.logrhythm.com/security/reverse-sql-injection-using-http-headers/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 15:35:28 +0000</pubDate>
		<dc:creator>Zachary Wolff</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[SIEM]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[DROP TABLES]]></category>
		<category><![CDATA[http headers]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[NginX]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[sqli]]></category>

		<guid isPermaLink="false">http://blog.logrhythm.com/?p=990</guid>
		<description><![CDATA[I&#8217;ve been doing a good deal of research on HTTP Headers recently and was intrigued when I saw the following tweet last week. &#160; The link takes you to a list of hosts that respond with the value &#8220;DROP TABLE&#8221; somewhere &#8230; <a href="http://blog.logrhythm.com/security/reverse-sql-injection-using-http-headers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing a good deal of research on HTTP Headers recently and was intrigued when I saw the following tweet last week.</p>
<p><img class="alignnone size-full wp-image-1009" src="http://blog.logrhythm.com/wp-content/uploads/2012/04/tweet2.jpg" alt="" width="440" height="73" /><br />
&nbsp;<br />
The <a href="http://www.shodanhq.com/search?q=DROP+TABLE">link</a> takes you to a list of hosts that respond with the value &#8220;DROP TABLE&#8221; somewhere within the servers HTTP headers.</p>
<p>In case you aren&#8217;t already familiar with the HTTP protocol, when you make a request to a web site, lets say logrhythm.com,  something like this is going on in the background.</p>
<p><img class="aligncenter size-full wp-image-995" src="http://blog.logrhythm.com/wp-content/uploads/2012/04/lr_headers.jpg" alt="" width="754" height="429" /></p>
<p>In this case, we place a GET request for logrhythm.com and everything after the &#8220;HTTP/1.1 200 OK&#8221;  are the HTTP header fields that the remote server server sent back to us.  As we can see above, the server claims to be IIS/6.0.  Based off of other returned header data, &#8220;X-powered-By:PleskWin, ASP.NET&#8221; for example, it&#8217;s probably a safe bet that it&#8217;s a windows server.  Back to the point though, in the case of Mikko&#8217;s example, the servers listed don&#8217;t respond with a know server type, instead the following text:</p>
<p>Server: &#8216;; <strong>DROP</strong> <strong>TABLE</strong> servertypes; &#8211;</p>
<p>Clearly, this is not an actual server type, instead a SQL injection command.</p>
<h3>Why would someone configure a server to respond this way?</h3>
<p>Well, if we read the SQL it&#8217;s pretty simple.  It&#8217;s telling the server to delete/remove the table <em>servertypes</em>. So who would be inserting HTTP Header response codes into a DB and would have a table named <em>servertypes</em>? Spiders, bots and crawlers of course! Well i&#8217;m guessing that&#8217;s the idea anyway.</p>
<p>So a bot hits your site, parses your header responses and tries to insert the value from &#8220;Server:&#8221; into a DB . If it happens to have a table named, <em>servertype </em>and SQL the statements aren&#8217;t being prepared or sanitized properly, then the table gets dropped.</p>
<p>Ultimately, it&#8217;s probably a joke more than anything but it&#8217;s interesting to think about. This assessment seems to be pretty accurate based on a Reddit mod&#8217;s explanation of why Reddit does it <a href="http://news.ycombinator.com/item?id=1352858">here</a>.  At this point I will have to also admit that this is not really &#8220;reverse&#8221; SQLi because that doesn&#8217;t really add up technically.</p>
<p>In event that you would like to configure your servers to reply with different responses, check out the following links:</p>
<p>Apache: <a href="http://httpd.apache.org/docs/2.0/mod/mod_headers.html">http://httpd.apache.org/docs/2.0/mod/mod_headers.html</a></p>
<p>IIS7:<a href="http://technet.microsoft.com/en-us/library/cc753133(v=ws.10).aspx">http://technet.microsoft.com/en-us/library/cc753133(v=ws.10).aspx</a></p>
<p>NginX:<a href="http://blog.secaserver.com/2012/03/customize-server-header-nginx/">http://blog.secaserver.com/2012/03/customize-server-header-nginx/</a></p>
<p>Also, I like this site for viewing HTTP headers where standard proxy means are not ideal. <a href="http://pgl.yoyo.org/http/server-headers.php">http://pgl.yoyo.org/http/server-headers.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.logrhythm.com/security/reverse-sql-injection-using-http-headers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Finding Security Issues in the HTTP Request Headers, and the Mac OSX Flashback Botnet</title>
		<link>http://blog.logrhythm.com/digital-forensics/finding-security-issues-in-the-http-request-headers-and-the-mac-osx-flashback-botnet/</link>
		<comments>http://blog.logrhythm.com/digital-forensics/finding-security-issues-in-the-http-request-headers-and-the-mac-osx-flashback-botnet/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 15:52:19 +0000</pubDate>
		<dc:creator>dpack</dc:creator>
				<category><![CDATA[Digital Forensics]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SIEM]]></category>
		<category><![CDATA[flashback]]></category>
		<category><![CDATA[http headers]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[sqli]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://blog.logrhythm.com/?p=976</guid>
		<description><![CDATA[LogRhythm Labs has recently initiated a research project into HTTP Request Header analysis, to include User Agent strings, both in proxy logs as well as web server logs.  A few recent events have validated our interest in this topic. The &#8230; <a href="http://blog.logrhythm.com/digital-forensics/finding-security-issues-in-the-http-request-headers-and-the-mac-osx-flashback-botnet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>LogRhythm Labs has recently initiated a research project into HTTP Request Header analysis, to include User Agent strings, both in proxy logs as well as web server logs.  A few recent events have validated our interest in this topic.</p>
<p>The recently identified botnet targeting Mac OSX machines, reportedly with more than 600,000 hosts compromised (conficker-sized!), uses the bot’s <a href="https://twitter.com/#%21/mikko">MAC address as the User Agent</a> when phoning home to C&amp;C.  Hosts infected with the Backdoor.Flashback.39 trojan can be identified with a simple regex looking for MAC address patterns in an organization’s proxy logs (see below for example regex&#8217;s).</p>
<p>We’ve also gotten our hands on some IIS log data from a recent high-profile breach.  What we found was very interesting.  The attackers didn’t bother to change the User Agent for the SQLi tools that were used.  Both Havij and sqlmap were identified.  Some simple whitelisting or blacklisting against the UA in the IIS logs would have easily caught these low-hanging fruit.</p>
<p>Stay tuned for more in-depth analysis of User Agent strings and HTTP Request Headers, as well as out-of-the-box content to help secure web applications using SIEM.</p>
<p>&nbsp;</p>
<p>Example MAC Address Regex&#8217;s:</p>
<p>No dashes, colons, or spaces: <em>[a-fA-F0-9]{12}</em></p>
<p>With dashes, colons, or spaces:<em> ([a-fA-F0-9]{2}(:|-|\s)){5}[a-fA-F0-9]</em></p>
<p><strong>UPDATE:</strong></p>
<p><a href="http://www.securelist.com/en/blog/208193441/Flashfake_Mac_OS_X_botnet_confirmed">Kaspersky Labs</a> gives an example User Agent string for the Flashback malware.  Here&#8217;s a regex that will match it in proxy logs: <em>id:[a-fA-F0-9]{8}-\w{4}-[a-fA-F0-9]{4}-\w{4}-[a-fA-F0-9]{12}</em></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.logrhythm.com/digital-forensics/finding-security-issues-in-the-http-request-headers-and-the-mac-osx-flashback-botnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Monitoring: How a SIEM Platform Can Help with this Daunting Requirement</title>
		<link>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-3/</link>
		<comments>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-3/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:25:40 +0000</pubDate>
		<dc:creator>jwalderbach</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[Digital Forensics]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[IT Optimization]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SIEM]]></category>

		<guid isPermaLink="false">http://blog.logrhythm.com/?p=964</guid>
		<description><![CDATA[(3rd in a series of 3) Today’s blog entry is the third and final blog in the series on SIEM features which support continuous monitoring requirements. The past two blog entries covered situational awareness, threats, assessing security controls, and collecting, &#8230; <a href="http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>(3rd in a series of 3)</p>
<p>Today’s blog entry is the third and final blog in the series on SIEM  features which support continuous monitoring requirements. The past two  blog entries covered situational awareness, threats, assessing security  controls, and collecting, correlating, and analyzing security  information. In today’s entry I will cover security status communication  and risk management requirements for continuous monitoring.</p>
<p>The FIFTH requirement is “providing  actionable communication of security status across all tiers of the  organization.” This requirement has to do with the organizations  capability to provide accurate communication on the current security  status of the organization at all levels within the organization and  provide recommended action when needed. This particular requirement is  focused on defining, providing, and communicating security status and  metrics. A SIEM should be capable  of providing notification of security-related issues to owners of  particular systems allowing them to take remediation action as necessary.  The more advance SIEMs actually have the  capability to provide automated remediation actions when specific issues  are identified. The metric portion of the requirement quantifies the  current status of information security at all levels of the  organization. The SIEM at a minimum should be able to provide an audit trail of the actual uses of the SIEM as part of a metric. The SIEM  should audit alerts generated by critical events, the analyst’s  acknowledgment of the alert, investigations initiated by the analyst in  response to the event, and actions taken to remediate the threat of the  event, and review of the event by management.</p>
<p>The SIXTH and final requirement is “active  management of risk by organizational officials.” This particular  requirement indicates that management must actively manage  organizational risks. This is really an extension of the risk assessment  process which ensures all risks are identified, mitigated, and  acknowledged by management. A SIEM should  extend managements view of the organizations risk landscape by providing  a view of critical risks such as threats and vulnerabilities, and  provide visibility to the effectiveness of mitigating controls such as  anti-malware, firewalls, IDS, patch management, vulnerability scanners, etc…<br />
A SIEM can be a powerful tool to meet  continuous monitoring requirements through automated means. Keep in mind  not all SIEMs are created equally and some provide limited  functionality at a premium price. Ensure the organization performs an  in-depth review of the regulatory requirements along with functional  requirements before a SIEM selection is made.  Robust SIEMs often provide mappings of key features directly to  regulatory control requirements which they meet or supplement. Advance  SIEMs which provide capability such as built-in alerts, threat  advisories, and automated remediation functionality can help  organizations stay informed and better prepared to quickly remediate  security risks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Monitoring: How a SIEM Platform Can Help with this Daunting Requirement</title>
		<link>http://blog.logrhythm.com/it-optimization/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-2/</link>
		<comments>http://blog.logrhythm.com/it-optimization/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-2/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 12:00:36 +0000</pubDate>
		<dc:creator>jwalderbach</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[IT Optimization]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SIEM]]></category>

		<guid isPermaLink="false">http://blog.logrhythm.com/?p=960</guid>
		<description><![CDATA[Blog 2 of 3 &#8211; the beginning of the series is below. Today’s blog entry is a continuation of yesterday’s blog on SIEM features which support continuous monitoring requirements. Yesterday’s blog covered situational awareness and threats. In today’s entry I &#8230; <a href="http://blog.logrhythm.com/it-optimization/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>Blog 2 of 3 &#8211; the beginning of the series is below.</em></p>
<p>Today’s blog entry is a continuation of yesterday’s blog on SIEM  features which support continuous monitoring requirements. Yesterday’s  blog covered situational awareness and threats. In today’s entry I will  cover continuous monitoring requirements for assessing security controls  and collecting, correlating, and analyzing security information.</p>
<p>The THIRD requirement is “assessing all  security controls.” For this requirement the organization must assess  all implemented security controls to insure they properly mitigate the  threat as intended. This is best accomplished by having a 3rd party  perform an annual review of the organizations information security  controls. The third party should be versed in reviewing controls  specific to the organizations regulatory requirements. Organizations  should also be conducting internal assessment in an ongoing basis in  order to supplement the third party review. A SIEM  should be able to help with this assessment by providing support for  vulnerability and patch management. SIEMs should be capable of  collecting notifications of vulnerabilities from anti-malware,  firewalls, IDSs, and vulnerability scanners along with patch management  notifications from hosts. The more advanced SIEMs actually have the  capability to import vulnerability scan results or even launch scans  from the console which allows for the verification of an identified  vulnerability.</p>
<p>The FOURTH requirement is “collecting,  correlating, and analyzing security-related information.” This is a  mandate for organizations to collect security relate information,  correlate the information with multiple sources, and analyze the  information in order to properly assess the risk. All SIEMs should  directly support the event &amp; incident management process by  automating the collection, correlation, analysis, and risk rating of  security related information. SIEMs should collect information from a  variety of logs (applications, hosts, network devices, physical devices,  security devices, etc…). One of the most important things to understand  about a particular SIEM is what systems they  can collect logs from, how the collection occurs, and what can be done  if a system log is not supported. A SIEM  compatible with an organization should have the capability either native  or through custom parsing to collect security information from all in  scope systems. It is best practice for SIEMs to archive and retain logs  in the original state for no less than one year in order to provide  forensic investigation support. Be sure to tune in for tomorrow’s blog  entry where I will finish the discussion by covering security status  communication and risk management requirements for continuous  monitoring.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.logrhythm.com/it-optimization/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Monitoring: How a SIEM Platform Can Help with this Daunting Requirement</title>
		<link>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement/</link>
		<comments>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 13:27:43 +0000</pubDate>
		<dc:creator>jwalderbach</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[Digital Forensics]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[IT Optimization]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SIEM]]></category>

		<guid isPermaLink="false">http://blog.logrhythm.com/?p=949</guid>
		<description><![CDATA[Blog 1 of 3 Continuous monitoring is one area where most organizations often experience audit related issues during their regulatory review. The most typical issues are often related to analyzing security related information and assessing security controls. Many of my &#8230; <a href="http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>Blog 1 of 3</em></p>
<p>Continuous monitoring is one area where most organizations often  experience audit related issues during their regulatory review. The most  typical issues are often related to analyzing security related  information and assessing security controls. Many of my clients would  enable logging on the majority of their systems but would not actually  analyze any of their logs due to the large volume. I can certainly  empathize with them having been in their shoes myself. However it’s not  acceptable to stop monitoring critical system logs because the task  seems too daunting, there is a better way. A robust SIEM  (Security Information and Event Management) solution can centrally  collect millions of logs, correlate information across the  organizational infrastructure, and alarm on user-defined critical  conditions resulting in a manageable subset of security related events.  There are many different players in the SIEM  market and a wide range of functionality offered; over the next three  days my blog entries will tell you about specific features to look for  in a SIEM to help meet continuous monitoring requirements.</p>
<p><iframe width="480" height="270" src="http://www.youtube.com/embed/L1HH_B2dRHE?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>FIRST, it is important to understand the six main continuous monitoring requirements outlined in NIST (National Institute of Standards and technology) 800-137 before seeking a SIEM  solution. The first requirement is “maintaining situational awareness  of all systems across the organization.” This describes the need for the  organization to keep an awareness of all systems in their organization.  Organizations should have an asset management program which actively  maintains inventories of systems, software, and network diagrams. A SIEM  should supplementary support the asset management program by providing  details of all known assets (hosts, network devices, physical devices,  security devices, etc…) within the organizations infrastructure. It is  also best practice to implement technologies such as NAC  (Network Access Control Systems) which have the ability to detect  unidentified systems and deny them access to the infrastructure. A SIEM should also collect logs from these types of devices and generate alarms when unidentified systems are detected.</p>
<p>The SECOND requirement is “maintaining an  understanding of threats and threat activities.” Organization must stay  up to date on current threats and have the capacity to identify specific  threats to their organization to meet this requirement. They are  expected to keep their knowledge of threats current by researching  in-scope threats to their systems on a regular basis. There are a  variety of content providers which focus on providing threat advisories  via RSS feeds. Organizational threats should be identified and assessed through the risk assessment process. However a SIEM  should provide continuous threat assessment by collecting, correlating,  and identifying threats from network and host anti-malware systems,  firewalls, and IDSs (Intrusion Detection Systems). The more advanced  SIEMs have the capability to give additional information about an  identified threat through knowledge bases or 3rd party advisories.</p>
<p>Tune in for tomorrow’s blog entry where I will continue the  discussion by covering requirements for assessing security controls and  collecting, correlating, and analyzing security information.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.logrhythm.com/general/continuous-monitoring-how-a-siem-platform-can-help-with-this-daunting-requirement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

