<?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>NGCoders - Next Generation Coders &#187; Security</title>
	<atom:link href="http://www.ngcoders.com/category/security/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ngcoders.com</link>
	<description>Personal Blog of Vikas Patial.</description>
	<lastBuildDate>Sun, 01 Jan 2012 20:13:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>File System Filter Driver Frameworks</title>
		<link>http://www.ngcoders.com/security/file-system-filter-driver-frameworks</link>
		<comments>http://www.ngcoders.com/security/file-system-filter-driver-frameworks#comments</comments>
		<pubDate>Fri, 28 Oct 2011 18:36:05 +0000</pubDate>
		<dc:creator>Vikas Patial</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.ngcoders.com/?p=348</guid>
		<description><![CDATA[Unless you are expert in device driver development I would not recommend anyone to attempt doing a file system filter driver themself if they are on a tight deadline. I would recommend you pick up framework and build on that , it easier and more reliable. I had one such requirement from a client which [...]]]></description>
			<content:encoded><![CDATA[<p>Unless you are expert in device driver development I would not recommend anyone to attempt doing a file system filter driver themself if they are on a tight deadline. I would recommend you pick up framework and build on that , it easier and more reliable. I had one such requirement from a client which required on the fly data modification ( encryption and Access control ) and after some search found the following &#8211; </p>
<ul>
<li>Very hard to write,avoid unless you know what you are doing.</li>
<li>Hard to debug and develop</li>
<li>Very few experts and project development costs are very expensive if outsourced</li>
<li>No real reference source code unless you wish to invest a lot of time</li>
<li><a href="http://www.osronline.com/page.cfm?name=ListServer">OSR</a> is where the experts hang out and best resource and forum if you plan to do it yourself.</li>
</ul>
<p>Doing some research we planned to use a commercial framework for faster turn around and more reliability, since I am not a Device driver experts and here are some which i found which offer File system filter driver with sources. </p>
<ul>
<li><a href="http://www.cryptodriver.com/">Crypto Driver</a> &#8211; Its a new entrant , plug and play architecture which is easily extendable. Not much documentation or support options for now. </li>
<li><a href="http://www.alfasp.com/order.html">Alfa Transparent File Encryptor</a> &#8211; Well documented and complete in most ways. You cannot change crypto unless you get the code. </li>
<li><a href="http://www.eldos.com/cbflt/">CallBackFilter</a> &#8211; Very flexible,well documented and was found easiest to use, They have very flexible pricing which is startup friendly. </li>
<li><a href="http://www.osr.com/dmk.html">OSR DMK</a> &#8211; Best in the league but was way out of our budget.</li>
</ul>
<p>If you find more do let me know i will add them to my list and keep them for reference. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ngcoders.com/security/file-system-filter-driver-frameworks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website hacked to finding the exploit</title>
		<link>http://www.ngcoders.com/general/website-hacked-to-finding-the-exploit</link>
		<comments>http://www.ngcoders.com/general/website-hacked-to-finding-the-exploit#comments</comments>
		<pubDate>Tue, 30 Sep 2008 18:58:41 +0000</pubDate>
		<dc:creator>Vikas Patial</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[exploit tracking]]></category>
		<category><![CDATA[raw access logs]]></category>

		<guid isPermaLink="false">http://www.ngcoders.com/?p=47</guid>
		<description><![CDATA[Recently one of my sites was hacked , It was a closed source web application. I came to know next day when i saw changes made to some settings for my web &#8211; application. Anyhow here is how i tracked down what was wrong , might help some one in the same mess i was [...]]]></description>
			<content:encoded><![CDATA[<p>Recently one of my sites was hacked , It was a closed source web application. I came to know next day when i saw changes made to some settings for my web &#8211; application. Anyhow here is how i tracked down what was wrong , might help some one in the same mess i was in. </p>
<p>The first thing i noticed was that Administrator account passwords were changed, So i instantly knew something was wrong.</p>
<p>Since i usually store main settings in a file for faster access , i just opened FTP to look at the <b>time stamp</b> associated with the file. This showed me the <b>last modifed</b> date of the file and an approximate idea when the hacker changed the details.</p>
<p>Next step was to dig up the <b>raw access logs</b> from CPanel , After downloading the access logs for that specific file i opened them in PSPad ( My fav editor ) . Logs are not small of busy sites so you will be looking at a very large amount of data.</p>
<p>But i knew specific url which can be used to change the settings so i just did a Ctrl-F and put in the url with a <b>POST prefix</b> , as a form has to be submitted to change settings . This gave me a few instances of that URL with POST request. </p>
<p>Now looking at the time stamp i was able to find out when the hacker did the settings change. Means I had the <b>IP</b>.Doing another another <b>CTRL-F on the IP and pressing list</b> put all the hacker logs in another window , which makes its easy for us to go step by step at his efforts to crack the system.</p>
<p>After going from the start i noticed after certain URL he suddenly had got access to the admin section , And once i put in the url myself, i knew what the problem was. </p>
<p>And so it was fixed. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ngcoders.com/general/website-hacked-to-finding-the-exploit/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

