<?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>Anthony Reinke &#187; security</title>
	<atom:link href="http://www.anthonyreinke.com/category/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anthonyreinke.com</link>
	<description>Rambling Thoughts of a Random Mind</description>
	<lastBuildDate>Wed, 01 Feb 2012 22:03:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing SNMP through the Command Line &#8211; Part 2</title>
		<link>http://www.anthonyreinke.com/2012/02/01/installing-snmp-through-the-command-line-part-2/</link>
		<comments>http://www.anthonyreinke.com/2012/02/01/installing-snmp-through-the-command-line-part-2/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 22:01:19 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=474</guid>
		<description><![CDATA[I added a batch script I wrote to install SNMP on a bunch of machine back on Jan. 14, 2012 (http://www.anthonyreinke.com/2012/01/14/installing-snmp-through-the-command-line/). &#160;I have since modified the script. &#160;Changing the file from a .bat to a .cmd will allow you to right click and run as administrator on Windows 2008. &#160;Also I noticed in 2008, it [...]]]></description>
			<content:encoded><![CDATA[<p>I added a batch script I wrote to install SNMP on a bunch of machine back on Jan. 14, 2012 (<a href="http://www.anthonyreinke.com/2012/01/14/installing-snmp-through-the-command-line/">http://www.anthonyreinke.com/2012/01/14/installing-snmp-through-the-command-line/</a>). &nbsp;I have since modified the script. &nbsp;Changing the file from a .bat to a .cmd will allow you to right click and run as administrator on Windows 2008. &nbsp;Also I noticed in 2008, it defaults in to having the localhost as the only system that can communicate to the SNMP Service.</p>
<p>PsExec.exe @hosts.txt -s -c installsnmp.cmd</p>
<p>Below is the file to download. &nbsp;Rename the file to installsnmp.cmd<br />
<a href="http://www.anthonyreinke.com/wp-content/uploads/2012/02/installsnmp.cmd_.txt">installsnmp.cmd.txt</a></p>
<p>As always, please contact me if you have questions.</p>
<pre><span style="color: #00ff00;">@echo off</span></pre>
<pre><span style="color: #00ff00;">cls</span></pre>
<pre><span style="color: #00ff00;">REM Detect if the system is Windows Server 2003</span>
<span style="color: #00ff00;">systeminfo | find "2003" &gt; nul</span>
<span style="color: #00ff00;">if %ERRORLEVEL% == 0 goto 2003</span></pre>
<pre><span style="color: #00ff00;">REM Detect if the system is Windows XP</span>
<span style="color: #00ff00;">systeminfo | find "XP Pro" &gt; nul</span>
<span style="color: #00ff00;">if %ERRORLEVEL% == 0 goto XPPro</span></pre>
<pre><span style="color: #00ff00;">REM Detect if the system is Windows XP</span>
<span style="color: #00ff00;">systeminfo | find "2008" &gt; nul</span>
<span style="color: #00ff00;">if %ERRORLEVEL% == 0 goto 2008</span></pre>
<pre><span style="color: #00ff00;">REM If the system is Windows Vista, Windows Server 2008, or higher, </span>
<span style="color: #00ff00;">REM they have the required files built in.</span>
<span style="color: #00ff00;">goto ERROR</span></pre>
<pre><span style="color: #00ff00;">:2003</span>
<span style="color: #00ff00;">REM If Windows 2003, set the path to the i386 directory</span>
<span style="color: #00ff00;">REM Note: The path needs to be one level above the i386 directory</span>
<span style="color: #00ff00;">REM Example: if the path is \\server\share\windows2003\i386\ then</span>
<span style="color: #00ff00;">REM the path would be \\server\share\windows2003\</span>
<span style="color: #00ff00;">REM Note that the you need both a 32bit and 64bit versions</span></pre>
<pre><span style="color: #00ff00;">if (%PROCESSOR_ARCHITECTURE%) == (AMD64) (</span>
<span style="color: #00ff00;">echo Windows Registry Editor Version 5.00</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]</span>
<span style="color: #00ff00;">echo "SourcePath"="\\\\server\\share\\Extracted\\Win2003x64\\"</span>
<span style="color: #00ff00;">echo "ServicePackSourcePath"="\\\\server\\share\\Extracted\\Win2003x64\\"</span>
<span style="color: #00ff00;">) &gt; %temp%\setW2003Path.reg</span></pre>
<pre><span style="color: #00ff00;">IF (%PROCESSOR_ARCHITECTURE%) == (x86) (</span>
<span style="color: #00ff00;">echo Windows Registry Editor Version 5.00</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]</span>
<span style="color: #00ff00;">echo "SourcePath"="\\\\server\\share\\Extracted\\Win2003\\"</span>
<span style="color: #00ff00;">echo "ServicePackSourcePath"="\\\\server\\share\\Extracted\\Win2003\\"</span>
<span style="color: #00ff00;">) &gt; %temp%\setW2003Path.reg</span></pre>
<pre>
<span style="color: #00ff00;">REM Installing the created Registry File</span>
<span style="color: #00ff00;">regedit /s /q %temp%\setW2003Path.reg</span></pre>
<pre><span style="color: #00ff00;">goto SNMP</span></pre>
<pre><span style="color: #00ff00;">:XPPro</span>
<span style="color: #00ff00;">REM If Windows XP Professional, set the path to the i386 directory</span>
<span style="color: #00ff00;">REM Note: The path needs to be one level above the i386 directory</span>
<span style="color: #00ff00;">REM Example: if the path is \\server\share\windowsXP\i386\ then</span>
<span style="color: #00ff00;">REM the path would be \\server\share\windowsXP\</span>
<span style="color: #00ff00;">if (%PROCESSOR_ARCHITECTURE%) == (AMD64) (</span>
<span style="color: #00ff00;">(</span>
<span style="color: #00ff00;">echo Windows Registry Editor Version 5.00</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]</span>
<span style="color: #00ff00;">echo "SourcePath"="\\\\server\\share\\Extracted\\XPProx64\\"</span>
<span style="color: #00ff00;">echo "ServicePackSourcePath"="\\\\server\\share\\Extracted\\XPProx64\\"</span>
<span style="color: #00ff00;">) &gt; %temp%\setXPProPath.reg</span>
<span style="color: #00ff00;">) ELSE IF (%PROCESSOR_ARCHITECTURE%) == (x86)</span>
<span style="color: #00ff00;">(</span>
<span style="color: #00ff00;">echo Windows Registry Editor Version 5.00</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]</span>
<span style="color: #00ff00;">echo "SourcePath"="\\\\server\\share\\Extracted\\XPPro\\"</span>
<span style="color: #00ff00;">echo "ServicePackSourcePath"="\\\\server\\share\\Extracted\\XPPro\\"</span>
<span style="color: #00ff00;">) &gt; %temp%\setXPProPath.reg</span>
<span style="color: #00ff00;">)</span></pre>
<pre><span style="color: #00ff00;">REM Installing the created Registry File</span>
<span style="color: #00ff00;">regedit /s /q %temp%\setXPProPath.reg.reg</span></pre>
<pre><span style="color: #00ff00;">goto SNMP</span></pre>
<pre><span style="color: #00ff00;">:2008</span>
<span style="color: #00ff00;">REM Since 2008 stopped using the sysocmgr.exe to install features, in Vista and higher</span>
<span style="color: #00ff00;">REM you need to use the servermanagercmd.exe to add features. A great list of the </span>
<span style="color: #00ff00;">REM features and their command line install string is at:</span>
<span style="color: #00ff00;">REM http://www.techrepublic.com/blog/datacenter/install-windows-server-2008-features-with-servermanagercmd/294</span></pre>
<pre><span style="color: #00ff00;">servermanagercmd.exe -install SNMP-Services</span></pre>
<pre><span style="color: #00ff00;">goto Strings</span></pre>
<pre><span style="color: #00ff00;">:SNMP</span>
<span style="color: #00ff00;">REM Building the Unattended Install</span></pre>
<pre><span style="color: #00ff00;">(</span>
<span style="color: #00ff00;">echo ;SetupMgrTag</span>
<span style="color: #00ff00;">echo [NetOptionalComponents]</span>
<span style="color: #00ff00;">echo SNMP=1</span>
<span style="color: #00ff00;">echo [SNMP]</span>
<span style="color: #00ff00;">echo Any_Host=YES</span>
<span style="color: #00ff00;">) &gt; %temp%\snmp.txt</span></pre>
<pre><span style="color: #00ff00;">REM Installing the SNMP application with the Unattended Install</span></pre>
<pre><span style="color: #00ff00;">sysocmgr /i:%windir%\inf\sysoc.inf /u:%temp%\snmp.txt</span></pre>
<pre><span style="color: #00ff00;">goto Strings</span></pre>
<pre><span style="color: #00ff00;">:Strings</span></pre>
<pre><span style="color: #00ff00;">REM Removing the public string</span>
<span style="color: #00ff00;">(</span>
<span style="color: #00ff00;">echo Windows Registry Editor Version 5.00</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SNMP\Parameters\ValidCommunities]</span></pre>
<pre><span style="color: #00ff00;">REM Removing the only allow localhost communication, by default 2008 will only allow the </span>
<span style="color: #00ff00;">REM localhsot to talk to the SNMP service</span>
<span style="color: #00ff00;">echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\SNMP\Parameters\PermittedManagers]</span></pre>
<pre><span style="color: #00ff00;">REM Setting the SNMP strings</span>
<span style="color: #00ff00;">echo.</span></pre>
<pre><span style="color: #00ff00;">REM Setting the SNMP Contact Info</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SNMP\Parameters\RFC1156Agent]</span>
<span style="color: #00ff00;">echo "sysContact"="Server Administrators"</span>
<span style="color: #00ff00;">echo "sysLocation"="Server Room"</span>
<span style="color: #00ff00;">echo "sysServices"=dword:0000004f</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">REM Setting the Read Only and Read Write Communities</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SNMP\Parameters\ValidCommunities]</span>
<span style="color: #00ff00;">echo "readonly"=dword:00000004</span>
<span style="color: #00ff00;">echo "readwrite"=dword:00000008</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">REM Creating the Permitted Managers Key</span>
<span style="color: #00ff00;">echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\SNMP\Parameters\PermittedManagers]</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">) &gt; %temp%\setupsnmp.reg</span></pre>
<pre><span style="color: #00ff00;">REM Installing the created Registry File</span></pre>
<pre><span style="color: #00ff00;">regedit /s /q %temp%\setupsnmp.reg</span></pre>
<pre><span style="color: #00ff00;">REM Cleaning Up</span></pre>
<pre><span style="color: #00ff00;">IF EXIST %temp%\setupsnmp.reg del %temp%\setupsnmp.reg</span>
<span style="color: #00ff00;">IF EXIST %temp%\setW2003Path.reg del %temp%\setW2003Path.reg</span>
<span style="color: #00ff00;">IF EXIST %temp%\setXPProPath.reg.reg del %temp%\setXPProPath.reg.reg</span>
<span style="color: #00ff00;">IF EXIST %temp%\snmp.txt del %temp%\snmp.txt</span></pre>
<pre><span style="color: #00ff00;">echo %COMPUTERNAME% Complete &gt;&gt; \\server\share\SNMP\SNMPInstall.txt</span></pre>
<pre><span style="color: #00ff00;">goto END</span></pre>
<pre><span style="color: #00ff00;">:ERROR</span>
<span style="color: #00ff00;">echo.</span>
<span style="color: #00ff00;">echo Could not determine the OS type</span>
<span style="color: #00ff00;">pause</span></pre>
<pre><span style="color: #00ff00;">goto END</span></pre>
<pre><span style="color: #00ff00;">:END</span></pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2012/02/01/installing-snmp-through-the-command-line-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FBI needs you!</title>
		<link>http://www.anthonyreinke.com/2011/03/30/fbi-needs-you/</link>
		<comments>http://www.anthonyreinke.com/2011/03/30/fbi-needs-you/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:22:25 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=416</guid>
		<description><![CDATA[On June 30, 1999, sheriff’s officers in St. Louis, Missouri discovered the body of 41-year-old Ricky McCormick. He had been murdered and dumped in a field. The only clues regarding the homicide were two encrypted notes found in the victim’s pants pockets. Pictures of notes and more details here: http://www.fbi.gov/news/stories/2011/march/cryptanalysis_032911/cryptanalysis_032911]]></description>
			<content:encoded><![CDATA[<p>On June 30, 1999, sheriff’s officers in St. Louis, Missouri discovered the body of 41-year-old Ricky McCormick. He had been murdered and dumped in a field. The only clues regarding the homicide were two encrypted notes found in the victim’s pants pockets.</p>
<p>Pictures of notes and more details here:<br />
<a href="http://www.fbi.gov/news/stories/2011/march/cryptanalysis_032911/cryptanalysis_032911">http://www.fbi.gov/news/stories/2011/march/cryptanalysis_032911/cryptanalysis_032911</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2011/03/30/fbi-needs-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WarDriving on the Droid</title>
		<link>http://www.anthonyreinke.com/2010/10/26/wardriving-on-the-droid/</link>
		<comments>http://www.anthonyreinke.com/2010/10/26/wardriving-on-the-droid/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 04:36:04 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[war]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wigle]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=311</guid>
		<description><![CDATA[I was playing around on the Android market place and notice Wigle Wifi.  I remembered Wigle from the old War Driving days.  I downloaded the app and started to play with it. It is pretty easy to work with.  Lauch the app and off you go.  When you are done, click &#8220;Upload to WiGLE.net&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p>I was playing around on the Android market place and notice Wigle Wifi.  I remembered Wigle from the old War Driving days.  I downloaded the app and started to play with it.</p>
<p>It is pretty easy to work with.  Lauch the app and off you go.  When you are done, click &#8220;Upload to WiGLE.net&#8221; and your data is being processed.  In just a quick drive I found 385 networks.</p>
<p><a href="http://www.cyrket.com/p/android/net.wigle.wigleandroid/" target="_blank">&lt;more about the app&gt;</a></p>
<p><img class="alignnone" title="Wigle Stats" src="http://wigle.net/bi/CJslL_7x2yUjicp4igaqVQ.png" alt="" width="200" height="50" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/10/26/wardriving-on-the-droid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web (http) Certificate for Splunk</title>
		<link>http://www.anthonyreinke.com/2010/07/09/web-http-certificate-for-splunk/</link>
		<comments>http://www.anthonyreinke.com/2010/07/09/web-http-certificate-for-splunk/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 16:17:13 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ca]]></category>
		<category><![CDATA[cert]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[self]]></category>
		<category><![CDATA[signed]]></category>
		<category><![CDATA[splunk]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=257</guid>
		<description><![CDATA[I prefer to use a signed web certificate and not the self signed certificate.  I found a couple different topics on the process, but found that most of them referred to the distributive searching certificate.  Here are the step to generate the certificate and get it in to the right place for Splunk to use [...]]]></description>
			<content:encoded><![CDATA[<p>I prefer to use a signed web certificate and not the self signed certificate.  I found a couple different topics on the process, but found that most of them referred to the distributive searching certificate.  Here are the step to generate the certificate and get it in to the right place for Splunk to use it.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>## Generate the local key<br />
openssl genrsa -out linux0001.key 4096</p>
<p>## Generate the csr<br />
opensll req -new -key linux0001.key -out linux0001.csr</p>
<p>## Submit the .csr file to the CA</p>
<p>## Move the original certs for backup purposes<br />
mv cert.pem cert.pem.bak<br />
mv privkey.pem privkey.pem.bak</p>
<p>## Convert the binary cert to a standard cert<br />
openssl x509 -in certnew.cer -inform DER -out cert.pem -outform PEM</p>
<p>## Copy the new files in the Splunk folder<br />
cp linux0001.key /opt/splunk/share/splunk/certs/privkey.pem<br />
cp cert.pem /opt/splunk/share/splunk/certs/cert.pem</p>
<p>## Restart Splunk<br />
/opt/splunk/bin/splunk restart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/07/09/web-http-certificate-for-splunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Generation Application Security Testing Software.</title>
		<link>http://www.anthonyreinke.com/2010/05/07/new-generation-application-security-testing-software/</link>
		<comments>http://www.anthonyreinke.com/2010/05/07/new-generation-application-security-testing-software/#comments</comments>
		<pubDate>Fri, 07 May 2010 12:38:27 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=249</guid>
		<description><![CDATA[Demo of Hacktics&#8217; Seeker New Generation Application Security Testing Software. Software is getting scary.  Almost to the Hollywood Hacker style of breaking in to websites.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Demo of Hacktics&#8217; Seeker New Generation Application Security Testing Software.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/cn4AIAFhULE" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/cn4AIAFhULE"></embed></object></p>
<p style="text-align: left;">Software is getting scary.  Almost to the Hollywood Hacker style of breaking in to websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/05/07/new-generation-application-security-testing-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splunk Dashboards</title>
		<link>http://www.anthonyreinke.com/2010/05/02/splunk-dashboards/</link>
		<comments>http://www.anthonyreinke.com/2010/05/02/splunk-dashboards/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:24:38 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[central]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[splunk]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=245</guid>
		<description><![CDATA[I have begun building my own dashboards in Splunk.  Once I have the custom views built, I will post them up here.  So far everything I have been working on is with a system&#8217;s administrator in mind because that is what I have been doing for the past 12 years (wow, thats a long time). [...]]]></description>
			<content:encoded><![CDATA[<p>I have begun building my own dashboards in Splunk.  Once I have the custom views built, I will post them up here.  So far everything I have been working on is with a system&#8217;s administrator in mind because that is what I have been doing for the past 12 years (wow, thats a long time).  Currently I am building a view for searching failed logins and the source of lockouts.  They tie in to one another.  Our technicians want to be more involved in the systems administration and hopefully this will help them respond quicker to our customers.  Everything comes from Splunk being installed on all our domain controllers.  From there we get all the logs in to our central logging system (Splunk).  Due to the amount of data we are pushing now everyday, we might have to build a backup environment just for our Splunk data.  How awesome is this!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/05/02/splunk-dashboards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another good report</title>
		<link>http://www.anthonyreinke.com/2010/03/24/another-good-report/</link>
		<comments>http://www.anthonyreinke.com/2010/03/24/another-good-report/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:54:34 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[daily]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[splunk]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=239</guid>
		<description><![CDATA[This will help to track down failed logins.  This could be due to someone changing their password and still are logged in to a server with the old account information.  The other side is that someone could be trying to brute force an account. Type=&#8221;Failure Audit&#8221; sourcetype=&#8221;WinEventLog:Security&#8221; &#124; chart count by User_Name &#124; sort &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>This will help to track down failed logins.  This could be due to someone changing their password and still are logged in to a server with the old account information.  The other side is that someone could be trying to brute force an account.</p>
<p>Type=&#8221;Failure Audit&#8221; sourcetype=&#8221;WinEventLog:Security&#8221; | chart count by User_Name | sort &#8211; count</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/03/24/another-good-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Splunk Reports</title>
		<link>http://www.anthonyreinke.com/2010/03/24/daily-splunk-reports/</link>
		<comments>http://www.anthonyreinke.com/2010/03/24/daily-splunk-reports/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 13:45:14 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[daily]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[splunk]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=237</guid>
		<description><![CDATA[So I am a full convert and profit of Splunk now.  I have been using it at work for around 4 months now.  I have rolled it out to our domain controllers and have started rolling it to all our Windows and *nix servers.  The ability to find out who did what has made my [...]]]></description>
			<content:encoded><![CDATA[<p>So I am a full convert and profit of <a href="http://www.splunk.com" target="_blank">Splunk</a> now.  I have been using it at work for around 4 months now.  I have rolled it out to our domain controllers and have started rolling it to all our Windows and *nix servers.  The ability to find out who did what has made my job so much easier.  There was an incident where an OU was deleted in our AD.  I was able to see exactly who and when did it.  Normally this type of searching wasn&#8217;t possible or at least hard to get due to the size of our infrastructure.  Our Event Logs roll over around once an hour.  The OU was deleted 8 hours before we were contacted.</p>
<p>Here is a few of the reports I have scheduled to get every morning to take a look at what has happened in my environment.</p>
<p>User Accounts deleted:</p>
<p>EventCode=&#8221;630&#8243; | fields Caller_User_Name, Target_Domain,  Target_Account_Name, host | collect | rename Caller_User_Name as Who_Did_It | rename Target_Account_Name as Deleted_Account | rename host as DomainController | rename Target_Domain as Users_Domain</p>
<p>User Accounts created:</p>
<p>EventCode=&#8221;624&#8243; | fields Caller_User_Name, New_Domain, New_Account_Name, host | collect | rename Caller_User_Name as Who_Did_It | rename Target_Account_Name as Modified_Account | rename host as DomainController | rename New_Domain as New_Account_Domain</p>
<p>Computer Accounts deleted:</p>
<p>EventCode=&#8221;647&#8243; | fields Caller_User_Name, Target_Domain, Target_Account_Name, host | collect | rename Caller_User_Name as Who_Did_It | rename Target_Account_Name as Deleted_Computer | rename host as DomainController | rename Target_Domain as Removed_Domain</p>
<p>Computer Accounts created:</p>
<p>EventCode=&#8221;645&#8243; | fields Caller_User_Name, New_Domain, New_Account_Name, host | collect | rename Caller_User_Name as Who_Did_It | rename New_Account_Name as New_Computer | rename host as DomainController | rename New_Domain as Joined_Domain</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/03/24/daily-splunk-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FourSquare – Why would you use this?</title>
		<link>http://www.anthonyreinke.com/2010/02/18/foursquare-why-would-you-use-this/</link>
		<comments>http://www.anthonyreinke.com/2010/02/18/foursquare-why-would-you-use-this/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:20:16 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[security]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[please]]></category>
		<category><![CDATA[rob]]></category>
		<category><![CDATA[tracking]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=235</guid>
		<description><![CDATA[I don&#8217;t understand the need for people to share all their information with everyone.  This software will let you let the world know where you are.  Ok, great, but why?  There have been reports now that people are getting their houses/apartments broken in to when people see they are on vacation or away from their [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t understand the need for people to share all their information with everyone.  This software will let you let the world know where you are.  Ok, great, but why?  There have been reports now that people are getting their houses/apartments broken in to when people see they are on vacation or away from their place.  This software has now generated a website call Please Rob Me (<a href="http://www.pleaserobme.com" target="_blank">http://www.pleaserobme.com</a>).  This will list people that are no longer in their home location that you set in the application.</p>
<p>The searches below show how this can be used wrongly.</p>
<p><span style="font-size: small;">Want to know who goes to the Bank of America at E 4th Street in New York City?<br />
<a href="http://foursquare.com/venue/246931">http://foursquare.com/venue/246931</a></span></p>
<p><span style="font-size: small;">or the Quiznos on Broadway and 12th in New York?<br />
<a href="http://foursquare.com/venue/129297">http://foursquare.com/venue/129297</a></span></p>
<p><span style="font-size: small;">People have been complaining that &#8220;Big Brother&#8221; is always watching them and their privacy is being invaded.  How can this be when you share everything about your life online?</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/02/18/foursquare-why-would-you-use-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About My Hack</title>
		<link>http://www.anthonyreinke.com/2010/02/10/about-my-hack/</link>
		<comments>http://www.anthonyreinke.com/2010/02/10/about-my-hack/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:42:49 +0000</pubDate>
		<dc:creator>Anthony Reinke</dc:creator>
				<category><![CDATA[security]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.anthonyreinke.com/?p=232</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.anthonyreinke.com/2010/02/10/about-my-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

