<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>a4apphack &#187; automate</title>
	<atom:link href="http://a4apphack.com/index.php/tag/automate/feed" rel="self" type="application/rss+xml" />
	<link>http://a4apphack.com</link>
	<description>Get more out of the Apps!</description>
	<lastBuildDate>Thu, 26 Apr 2012 15:44:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<image>
<link>http://a4apphack.com</link>
<url>http://a4apphack.com/blog/wp-content/themes/primus/favicon.ico</url>
<title>a4apphack</title>
</image>
		<item>
		<title>Extract Android apk from Market and Decompile it to Java Source</title>
		<link>http://a4apphack.com/security/sec-code/extract-android-apk-from-market-and-decompile-it-to-java-source</link>
		<comments>http://a4apphack.com/security/sec-code/extract-android-apk-from-market-and-decompile-it-to-java-source#comments</comments>
		<pubDate>Wed, 20 Apr 2011 18:29:53 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[scan]]></category>

		<guid isPermaLink="false">http://a4apphack.com/?p=2152</guid>
		<description><![CDATA[This post talks about process of extracting apk file of any app available in market and then decompiling it to Java source. This can be helpful for those who perform code review (for security vulnerabilities) on apps whose source code is not available. Once Java source code is obtained, we can either do manual code [...]]]></description>
			<content:encoded><![CDATA[<p>This post talks about process of extracting apk file of any app available in market and then decompiling it to Java source. This can be helpful for those who perform code review (for security vulnerabilities) on apps whose source code is not available. Once Java source code is obtained, we can either do manual code review or run any free/commercial automated code scanners.</p>
<p><span id="more-2152"></span></p>
<h3>Download .apk file from market</h3>
<ol>
<li>Search in market for the app you want to decompile and install it on your phone.</li>
<li>Install Astro File Manager from market (<a title="Astro File Manager (Android Market Link)" href="https://market.android.com/details?id=com.metago.astro">link</a>). Open Astro &gt; Tools &gt; Application Manager/Backup and select the application to backup on to the SD card .</li>
<li>Mount phone as USB drive and access <code>'\backups\apps\'</code> folder to find the apk of target app (lets call it targetapp.apk) . Copy it to your local drive.</li>
</ol>
<h3>Decomiling apk to Dex format</h3>
<ol>
<li>Download Dex2Jar (<a title="Dex2Jar" href="http://code.google.com/p/dex2jar/">link</a>) (Android runs applications which are in <a rel="nofollow" href="http://en.wikipedia.org/wiki/Dalvik_%28software%29">Dalvik Executable (.dex) format</a>).</li>
<li>Run the command to convert apk to jar<code></code><code></code></li>
</ol>
<p><code>dex2jar targetapp.apk file(./dex2jar targetapp.apk on terminal)</code></p>
<p style="padding-left: 30px;">File ‘targetapp.apk.dex2jar.jar’ is created</p>
<p><a href="http://img.a4apphack.com/androiddecompile-04.jpg" rel="lightbox[2152]" title="Converting Apk (Dex) to Jar"><img title="Converting Apk (Dex) to Jar" src="http://img.a4apphack.com/androiddecompile-04.jpg" alt="Converting Apk (Dex) to Jar" width="600" height="396" /></a></p>
<h3>Viewing/Decompiling the Jar files to Java</h3>
<h4>Method 1 : Use JavaDecompiler (JD)</h4>
<ol>
<li>Open ‘targetapp.apk.dex2jar.jar’ with jd-gui (<a title="JD GUI" href="http://java.decompiler.free.fr/?q=jdgui">link</a>)</li>
<li>File &gt; Save All Sources to sava the class files in jar to java files.</li>
</ol>
<p><a href="http://img.a4apphack.com/androiddecompile-05.jpg" rel="lightbox[2152]" title="JD GUI Viewer"><img class="alignnone" title="JD GUI Viewer" src="http://img.a4apphack.com/androiddecompile-05.jpg" alt="JD GUI Viewer" width="600" height="374" /></a></p>
<h4>Method 2: JAD</h4>
<ol>
<li>Extract contents of jar file on to a folder named src. Use and unarchival utility like 7zip</li>
<li>Keep ‘src’ folder in the same directory where JAD and targetapp jar is present</li>
<li>Open JAD in cmd and execute the following command</li>
<li><code>jad -o -r -sjava -dsrc src/**/*.class</code> (./jad on terminal)</li>
</ol>
<p><a href="http://img.a4apphack.com/androiddecompile-07.jpg" rel="lightbox[2152]" title="Extract jar contents to src folder"><img class="alignnone" title="Extract jar contents to src folder" src="http://img.a4apphack.com/androiddecompile-07.jpg" alt="Extract jar contents to src folder" width="600" height="441" /></a></p>
<p><a href="http://img.a4apphack.com/androiddecompile-08.jpg" rel="lightbox[2152]" title="Running jad command"><img class="alignnone" title="Running jad command" src="http://img.a4apphack.com/androiddecompile-08.jpg" alt="Running jad command" width="600" height="413" /></a></p>
<p>Now src will contain decompiled Java files ready for manual code review.</p>
<p><a href="http://img.a4apphack.com/androiddecompile-09.jpg" rel="lightbox[2152]" title="Decompiled java files"><img class="alignnone" title="Decompiled java files" src="http://img.a4apphack.com/androiddecompile-09.jpg" alt="Decompiled java files" width="600" height="413" /></a></p>
<h3>Tools Used</h3>
<ol>
<li>Sample app &#8211; RemoteDroid (Opensource &#8211; <a title="RemoteDroid" href="http://code.google.com/p/remotedroid/downloads/detail?name=RemoteDroid-v1.4.apk&amp;can=2&amp;q=">link</a>)</li>
<li>Astro File Manager (Android Market &#8211; <a title="Astro File Manager (Android Market Link)" href="https://market.android.com/details?id=com.metago.astro">link</a>)</li>
<li>Dex2Jar (<a title="Dex2Jar" href="http://code.google.com/p/dex2jar/">link</a>)</li>
<li>jd-gui (<a title="JD GUI" href="http://java.decompiler.free.fr/?q=jdgui">link</a>)</li>
<li>JAD (<a title="Java Decompiler Download" href="http://www.varaneckas.com/jad">link</a>)</li>
</ol>
<table id="cft">
  <thead>
  <tr>
    <th colspan="2">Dex2Jar Info</th>
  </tr>
  </thead>
  <tbody>
    <tr>
      <td  width="40%">App Name</td>
      <td>Dex2Jar</td>
    </tr>
    <tr>
      <td>License</td>
      <td>free</td>
    </tr>
    <tr>
      <td>Type</td>
      <td><ul>
<li>portable</li>
<li>code</li>
</ul>
</td>
    </tr>
    <tr>
      <td>App URL</td>
      <td>
      <a target="_blank" href="http://code.google.com/p/dex2jar/"><img
 style="" alt="Download"
 src="http://img.a4apphack.com/site/a4apphack-download.png"
 title="Download" witdh="30" height="30"></a></td>
    </tr>
    <tr>
      <td>More Info</td>
      <td> <a href="http://code.google.com/p/dex2jar/">link</a></td>
    </tr>
  </tbody>
</table>

<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=2152&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/security/sec-code/extract-android-apk-from-market-and-decompile-it-to-java-source/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Free Web Vulnerability Assessment Tool &#8211; CAT</title>
		<link>http://a4apphack.com/featured/free-web-vulnerability-assessment-tool-cat</link>
		<comments>http://a4apphack.com/featured/free-web-vulnerability-assessment-tool-cat#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:07:43 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[appsec]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://a4apphack.com/index.php/?p=1638</guid>
		<description><![CDATA[Its very rare to find out a good n effective web application security assessment tool and would make it almost impossible if you want it for free. After a long time of hunt, I found one; CAT &#8211; Context App Tool. Although its free, it offers a good GUI and powerful features along with the [...]]]></description>
			<content:encoded><![CDATA[<p>Its very rare to find out a good n effective web application security assessment tool and would make it almost impossible if you want it for free. After a long time of hunt, I found one; CAT &#8211; Context App Tool. Although its free, it offers a good GUI and powerful features along with the basic ones which comes with a every proxy available.</p>
<h3>Features</h3>
<p>There are a number of features which CAT has to enable a wide variety of testing to be conducted:</p>
<ul>
<li><strong>Request Repeater</strong> – Used for repeating a single request</li>
<li><strong>Proxy</strong> – Classic Inline proxy</li>
<li><strong>Fuzzer</strong> – Allows for batch of tests to be sent to a server for brute forcing, parameter fuzzing, forced browsing etc.</li>
<li><strong>Log</strong> – View a list of requests to sort, search repeat etc. Allows for a sequence of requests to be repeated and modified.</li>
<li><strong>Authentication Checker</strong> – Two synchronised proxies which can be used to check authentication and authorisation controls.</li>
<li><strong>SSL Checker</strong> – Request a specific page with various SSL ciphers and versions.</li>
<li><strong>Notepad</strong> – A text/RTF editor which can be used as a scratch pad for conversions etc.</li>
<li><strong>Web Browser</strong> – An integrated web browser with proxy pre-configured based on the Internet Explorer&#8217;s rendering engine.</li>
</ul>
<h3>Reasons to use CAT</h3>
<p>There are a number of differences between CAT and currently available web proxies.  Some key differences are:</p>
<ul>
<li>Uses Internet Explorer&#8217;s rendering engine for accurate HTML representation</li>
<li>Supports many different types of text conversions including: URL, Base64, Hex, Unicode, HTML/XML, SQL and JavaScript no Quotes</li>
<li>Integrated SQL Injection and XSS Detection</li>
<li>Synchronised Proxies for Authentication and Authorisation checking</li>
<li>Faster due to HTTP connection caching</li>
<li>SSL Version and Cipher checker using OpenSSL</li>
<li>Greater flexibility for importing/exporting logs and saving projects</li>
<li>Tabbed Interface allowing for multiple tools at once e.g. multiple repeaters and different logs</li>
<li>The ability to repeat and modify a sequence of requests (particularly useful in SSO testing)</li>
<li>Free!</li>
</ul>
<p><span id="more-1638"></span></p>
<p><strong>Proxy &amp; Authentication Checker<br />
 </strong></p>
<p>I generally use multiple browsers during web app assessments. This helps me to analyze the difference in the responses received from the server for same requests sent with different login credentials. This can also help me during the tests performed for horizontal/vertical privilege escalations. CAT listens to multiple ports at the same time, which means that you can use 2 browsers (or <a href="http://a4apphack.com/index.php/featured/secfox-turn-firefox-into-an-ultimate-hacking-tool-part-1" title="SecFox – Turn Firefox Into an Ultimate Hacking tool" >browser profiles</a>) and direct the traffic to one proxy &#8211; CAT. CAT displays the traffic from different sources in different tabs.</p>
<p><br class="spacer_" /></p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://img.a4apphack.com/catvulnscan-browserproxy.jpg" rel="lightbox[1638]" title="Multiple Browsers Via Proxies"><img title="Multiple Browsers Via Proxies" src="http://img.a4apphack.com/catvulnscan-browserproxy.jpg" alt="Multiple Browsers Via Proxies" width="600" height="407" /></a><p class="wp-caption-text">Multiple Browsers Via Proxies</p></div>
<p><br class="spacer_" /></p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://img.a4apphack.com/catvulnscan-appproxy.jpg" rel="lightbox[1638]" title="CAT Listening Via Multiple Proxies"><img title="CAT Listening Via Multiple Proxies" src="http://img.a4apphack.com/catvulnscan-appproxy.jpg" alt="CAT Listening Via Multiple Proxies" width="600" height="383" /></a><p class="wp-caption-text">CAT Listening Via Multiple Proxies</p></div>
<p><br class="spacer_" /></p>
<p>While doing the authentication testing, we can login with the user having higher privilege in browser 1 and user with lower privilege in browser 2. Access various pages in browser 1 and identical requests are sent using the cookies stored in browser 2. CAT leaves us the response pairs behind for manual analysis.</p>
<p><br class="spacer_" /></p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://img.a4apphack.com/catvulnscan-authchecker.png" rel="lightbox[1638]" title="Auth Checker"><img title="Auth Checker" src="http://img.a4apphack.com/catvulnscan-authchecker.png" alt="Auth Checker" width="600" height="474" /></a><p class="wp-caption-text">Auth Checker</p></div>
<h3>SSL Strength Check</h3>
<p>Why use SSLDigger/Open SSL if your proxy has built-in SSL strength checking feature.</p>
<p><br class="spacer_" /></p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://img.a4apphack.com/catvulnscan-sslchecker.jpg" rel="lightbox[1638]" title="SSL Strength Checker"><img title="SSL Strength Checker" src="http://img.a4apphack.com/catvulnscan-sslchecker.jpg" alt="SSL Strength Checker" width="600" height="398" /></a><p class="wp-caption-text">SSL Strength Checker</p></div>
<p><br class="spacer_" /></p>
<p><strong>Download:</strong> <a target="_blank" href="http://cat.contextis.com/cat/cat.msi"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a>  (More Info <a title="CAT Details" href="http://cat.contextis.com/cat/explanation.htm">here </a>)</p>
<p><br class="spacer_" /></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=1638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/featured/free-web-vulnerability-assessment-tool-cat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SecFox &#8211; XSSMe, Automated XSS Detection in Firefox</title>
		<link>http://a4apphack.com/featured/secfox-xssme-automated-xss-detection-in-firefoxpart-3</link>
		<comments>http://a4apphack.com/featured/secfox-xssme-automated-xss-detection-in-firefoxpart-3#comments</comments>
		<pubDate>Thu, 03 Sep 2009 12:42:17 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=1270</guid>
		<description><![CDATA[In this part of SecFox series, detection of XSS vulnerabilities with FireFox is explained. Here, we talk about XSSMe addon which can be is used to automate the tests for XSS thereby saving our precious time. &#8220;The tool works by submitting your HTML forms and substituting the form value with strings that are representative of [...]]]></description>
			<content:encoded><![CDATA[<p>In this part of SecFox series, detection of XSS vulnerabilities with FireFox is explained. Here, we talk about XSSMe addon which can be is used to automate the tests for XSS thereby saving our precious time.</p>
<p><a href="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmerunning.jpg" rel="lightbox[1270]" title="XSSMe Running"><img class="alignnone size-full wp-image-1272" title="XSSMe Running" src="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmerunning.jpg" alt="XSSMe Running" width="313" height="196" /></a></p>
<blockquote><p>&#8220;The tool works by submitting your HTML forms and substituting the form value with strings that are representative of an XSS attack. If the resulting HTML page sets a specific JavaScript value (document.vulnerable=true) then the tool marks the page as vulnerable to the given XSS string. The tool does not attempting to compromise the security of the given system. It looks for possible entry points for an attack against the system&#8221; &#8211; <a class="profileLink" href="https://addons.mozilla.org/en-US/firefox/user/1792636">Security Compass</a></p></blockquote>
<p><span id="more-1270"></span><br />
<a href="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmesidebar.jpg" rel="lightbox[1270]" title="XSSMe Sidebar"><img class="alignright size-full wp-image-1273" title="XSSMe Sidebar" src="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmesidebar-102x315-custom.jpg" alt="XSSMe Sidebar" width="102" height="315" /></a></p>
<p>XSSMe addon is a sidebar tool where we can see all the details of the forms in the current page and select the fields we want to test for XSS. To make things simpler, we have 2 buttons which can be used to test all the fields for Top/All XSS tests.</p>
<p><em>Click on the image at the right to view it larger</em></p>
<p>Once we click on test button, we get a dialog box which displays the progress of the running tests. It takes few minutes to complete the tests and depends on the Internet connection speed. We can easily tweak the options if we need this to run quickly and is explained in the latter part of the post.</p>
<h4>Working</h4>
<p>XSSMe detects the XSS vulnerabilities by automatically submitting the forms which has its field values tampered with XSS scripts and then analyses the response to check whether the output was encoded or not. Each page is loaded in a new tab and then the values are submitted and the tab are closed automatically before testing for the next script.</p>
<h4>XSSMe in Action</h4>
<p><object type="application/x-shockwave-flash" style="width:530px;height:440px" data="http://www.youtube.com/v/wlzLD4fZKwU&amp;hl=en&amp;fs=1"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/wlzLD4fZKwU&amp;hl=en&amp;fs=1" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>
<h4>XSSMe Options</h4>
<p>There are few options available in this addon which can help us tweak the results we are looking for. We can change the character set, which XSSMe uses by default, to speed up the process. We can add/remove custom XSS vectors (XSS scripts). The whole list can be exported so that it can be reused later.</p>
<p><object type="application/x-shockwave-flash" style="width:530px;height:440px" data="http://www.youtube.com/v/qnjNApXJnnI&amp;hl=en&amp;fs=1"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/qnjNApXJnnI&amp;hl=en&amp;fs=1" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>
<p><strong>Final Report</strong></p>
<p>Once the assessment is complete, final report is displayed which gives us the information on which fields are vulnerable and which XSS scripts got executed. At a quick glance we can check the characters which came out unencoded from the &#8216;XSS Heuristic Test Results&#8217; section. From the below screenshot, we can find that all the special characters which are used for constructing malicious scripts were found to be unencoded when passed through <strong>field1</strong>. This implies that field1 is vulnerable to XSS attacks.</p>
<p><a href="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmetestresults.jpg" rel="lightbox[1270]" title="Test Results"><img class="alignnone size-full wp-image-1274" title="Test Results" src="http://a4apphack.com/blog/wp-content/uploads/2009/06/xssmetestresults-349x330-custom.jpg" alt="Test Results" width="349" height="330" /></a></p>
<p><strong>Download XSSMe :</strong><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/7598"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a></p>
<p style="text-align: right;"><strong>(To be continued&#8230;)</strong></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=1270&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/featured/secfox-xssme-automated-xss-detection-in-firefoxpart-3/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[Secfox]]></series:name>
	</item>
		<item>
		<title>Quickly Create and Compile Batch Files With Portable BatchRun</title>
		<link>http://a4apphack.com/softwares/system-tools/quickly-create-compile-batch-files-with-portable-batchrun</link>
		<comments>http://a4apphack.com/softwares/system-tools/quickly-create-compile-batch-files-with-portable-batchrun#comments</comments>
		<pubDate>Sun, 26 Apr 2009 08:19:54 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Portable]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=1157</guid>
		<description><![CDATA[Windows Batch files can be used to automate or to run a sequence of operations. This includes starting multiple applications when windows starts up, clearing temp folder when a shortcut key is clicked, Ending certain unwanted processes etc You can even do more than starting programs with the built-in file management functions like Copy, Rename, [...]]]></description>
			<content:encoded><![CDATA[<p>Windows <a title="Batch Files" href="http://en.wikipedia.org/wiki/Batch_file">Batch files</a> can be used to automate or to run a sequence of operations. This includes starting multiple applications when windows starts up, clearing temp folder when a shortcut key is clicked, Ending certain unwanted processes etc</p>
<p><a href="http://a4apphack.com/blog/wp-content/uploads/2009/04/batchrunmain.jpg" rel="lightbox[1157]" title="Batch Run"><img class="alignnone size-full wp-image-1166" title="Batch Run" src="http://a4apphack.com/blog/wp-content/uploads/2009/04/batchrunmain.jpg" alt="Batch Run" width="530" height="265" /></a></p>
<p><span id="more-1157"></span>You can even do more than starting programs with the built-in file management functions like Copy, Rename, Makedir, Delete, End Process, Kill Process and Text to Clipboard. Batchrun batch files can be launched from Explorer or placed in StartUp folder or on the Desktop.</p>
<p>Check how to <a title="Enable or Disable USB drive with batch file" href="http://a4apphack.com/softwares/system-tools/quickly-create-compile-batch-files-with-portable-batchrun">enable and disable USB devices with batch programming</a></p>
<h3><span style="color: #000000;"><strong> Features</strong></span></h3>
<p><strong> </strong></p>
<ul>
<li>Launch files of any filetype and dialup connections</li>
<li>Internal commands: Run, Copy, Rename, Makedir, Delete, DelTree, End Process, Kill Process, Text to Clipboard</li>
<li>Wildcard support for Copy, Delete and DelTree</li>
<li>Makedir nested folder creation</li>
<li>Drag and Drop between Explorer and Batchrun</li>
<li>Support for date and time tags</li>
<li>Command line parameters can be passed to Batchrun script files</li>
<li>Save batch files directly to Startup and Desktop</li>
</ul>
<p><strong>Note: </strong>If you are using the portable version of BatchRun make sure that you associate &#8216;<strong>*.brs</strong>&#8216; files with this application.</p>
<p><a href="http://a4apphack.com/blog/wp-content/uploads/2009/04/openwith.jpg" rel="lightbox[1157]" title="Open brs files With"><img class="alignnone size-full wp-image-1168" title="Open brs files With" src="http://a4apphack.com/blog/wp-content/uploads/2009/04/openwith.jpg" alt="Open brs files With" width="406" height="327" /></a></p>
<p><strong>Download BatchRun :</strong> <a target="_blank" href="http://download.outertech.com/batchrun_portable.zip"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a></p>
<p>More Info at <a title="BatchRun Homepage" href="http://batchrun.outertech.com/">BatchRun HomePage</a></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=1157&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/softwares/system-tools/quickly-create-compile-batch-files-with-portable-batchrun/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defrag Effectively And Efficiently With SmartDefrag</title>
		<link>http://a4apphack.com/softwares/system-tools/defrag-effectively-and-efficiently</link>
		<comments>http://a4apphack.com/softwares/system-tools/defrag-effectively-and-efficiently#comments</comments>
		<pubDate>Sat, 28 Feb 2009 18:36:50 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[System Tools]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[systools]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=857</guid>
		<description><![CDATA[I always hate to use the stock defrag tool which comes bundled with windows, due to couple of reasons 1. It takes hell lot of time to complete the process and 2. It eats up all of my RAM that my PC will be dead for sometime. I&#8217;m sure that many would have faced the [...]]]></description>
			<content:encoded><![CDATA[<p>I always hate to use the stock defrag tool which comes bundled with windows, due to  couple of reasons 1. It takes hell lot of time to complete the process and 2. It eats  up all of my RAM that my PC will be dead for sometime. I&#8217;m sure that  many would have faced the same problem and one good solution that I can suggest is  to use a third party, free defragmentation tool. After a long search I found out  one and that is <a href="http://www.iobit.com/iobitsmartdefrag.html">SmartDefrag</a>.</p>
<p>SmartDefrag is one of the best free and award winning defrag tools available  in the market.</p>
<div id="attachment_868" class="wp-caption alignnone" style="width: 536px"><a title="SmartDefrag Screenshot" href="http://img.a4apphack.com/smartdefrag-screen.jpg" rel="lightbox[857]"><img title="Defrag Screen" src="http://img.a4apphack.com/smartdefrag-screen.jpg" alt="SmartDefrag Screenshot" width="526" height="400" /></a><p class="wp-caption-text">SmartDefrag Screenshot</p></div>
<p><span id="more-857"></span>We have an options to optimize files after the defrag phase. This will further enhance the whole process and once the defragmentation is complete, a summary report is displayed.</p>
<div id="attachment_865" class="wp-caption alignnone" style="width: 485px"><a title="Final Report" href="http://img.a4apphack.com/smartdefrag-finalreport.jpg" rel="lightbox[857]"><img class="" title="Final Report" src="http://img.a4apphack.com/smartdefrag-finalreport.jpg" alt="Final Report" width="475" height="512" /></a><p class="wp-caption-text">Final Report</p></div>
<h2>Features</h2>
<ul>
<li>Efficient Defragmentation</li>
<li>Optimize  						Disk Performance</li>
<li>Work Automatically in the background when idle</li>
<li>Options to schedule the task</li>
<li>Free</li>
</ul>
<h2>Comparison Chart</h2>
<p>I found this chart in their site, where they have compared their features with similar other tools</p>
<div class="wp-caption alignnone" style="width: 449px"><a title="Comparison Chart" href="http://img.a4apphack.com/smartdefrag-comparison.jpg" rel="lightbox[857]"><img title="Comparison Chart" src="http://img.a4apphack.com/smartdefrag-comparison.jpg" alt="Comparison Chart" width="439" height="283" /></a><p class="wp-caption-text">Comparison Chart</p></div>
<p><strong>Download SmartDefrag :</strong> <a target="_blank" href="http://www.iobit.com/iobitsmartdefrag.html"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a></p>
<p>[Note : To make this portable, download the exe and extract the files as mentioned in here <a title="Uniextract" href="http://a4apphack.com/index.php/tips-tricks/creating-portable-applications-with-uniextract">uniextract</a>]</p>
<p><a href="http://www.iobit.com/iobitsmartdefrag.html"><img title="Smart Defrag Logo" src="http://img.a4apphack.com/smartdefrag-logo.jpg" alt="Smart Defrag Logo" width="150" height="39" /></a></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=857&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/softwares/system-tools/defrag-effectively-and-efficiently/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AppKeys &#8211; Suite of Simple Utilites With AHK</title>
		<link>http://a4apphack.com/featured/appkeys-suite-of-simple-utilites-with-ahk</link>
		<comments>http://a4apphack.com/featured/appkeys-suite-of-simple-utilites-with-ahk#comments</comments>
		<pubDate>Mon, 23 Feb 2009 17:54:13 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ahk]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[rightclick]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[systools]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=630</guid>
		<description><![CDATA[AppKeys is a suit of applications built based on AHK scripting language which can be invoked by using various keyboard shortcuts. The shortcuts can be modified by editing the ahk scripts. Running this ahk file will consume very less amount of memory and can run each command almost instantaneously. This suite of apps replaces dozens [...]]]></description>
			<content:encoded><![CDATA[<p>AppKeys is a suit of applications built based on AHK scripting language which can be invoked by using various keyboard shortcuts. The shortcuts can be modified by editing the ahk scripts. Running this ahk file will consume very less amount of memory and can run each command almost instantaneously. This suite of apps replaces dozens of applications which needs to be installed otherwise to do the same operations.</p>
<p><span id="more-630"></span></p>
<h2>Operations</h2>
<ul>
<li>Inserts a linebreak.</li>
<li>Inserts a tab.</li>
<li>Move the mouse with the arrow keys.</li>
<li>Googles selected text, if its a URL then its opened in browser</li>
<li>Change case of selected text</li>
<li>Dsiplay AutoHotkey help file.</li>
<li>Terminate active application</li>
<li>Disables the Windows keys. For use with fullscreen games.</li>
<li>Toggle active window &#8220;Always On Top&#8221;.</li>
<li>Eject/Retract the CD tray</li>
<li>Turn Monitor off</li>
<li>Hide/Unhide the active window.</li>
<li>Unhide all windows that were hidden this way.</li>
<li>Toggle Window Transparency</li>
<li>Pastes clipboard contents as plain text OR path of file/folder</li>
<li>Toggle text wrapping to a specific width</li>
<li>Quick shutdown menu</li>
<li>RegEx replace on selected text.</li>
<li>Appends BBCode tags for selected text</li>
<li>Appends HTML tags for selected text</li>
<li>Comments/Uncomments a block of AutoHotkey code.</li>
</ul>
<h2>Gallery</h2>
<p>Have mentioned few features below.</p>
<p><strong>1. Window Transparency</strong></p>
<div class="wp-caption alignnone" style="width: 536px"><a title="Toogle Window Transparency" href="http://img.a4apphack.com/appkeys-windowtransparency.jpg" rel="lightbox[630]"><img title="Toogle Window Transparency" src="http://img.a4apphack.com/appkeys-windowtransparency.jpg" alt="Toogle Window Transparency" width="526" height="343" /></a><p class="wp-caption-text">Toogle Window Transparency</p></div>
<p>
 <strong>2. Always On Top</strong></p>
<div class="wp-caption alignnone" style="width: 325px"><a title="AlwaysOnTop" href="http://img.a4apphack.com/appkeys-alwaysontop.jpg" rel="lightbox[630]"><img title="AlwaysOnTop" src="http://img.a4apphack.com/appkeys-alwaysontop.jpg" alt="AlwaysOnTop" width="315" height="267" /></a><p class="wp-caption-text">AlwaysOnTop</p></div>
<p><strong>3. Custom Shutdown Menu</strong></p>
<div class="wp-caption alignnone" style="width: 264px"><a title="Custom Shutdown Menu" href="http://img.a4apphack.com/appkeys-customshutdownmenu.jpg" rel="lightbox[630]"><img title="Custom Shutdown Menu" src="http://img.a4apphack.com/appkeys-customshutdownmenu.jpg" alt="Custom Shutdown Menu" width="254" height="160" /></a><p class="wp-caption-text">Custom Shutdown Menu</p></div>
<p><strong>5. HTML Tag Completion</strong></p>
<div class="wp-caption alignnone" style="width: 334px"><a title="HTML Tag Completion" href="http://img.a4apphack.com/appkeys-htmltagcompletion.gif" rel="lightbox[630]"><img title="HTML Tag Completion" src="http://img.a4apphack.com/appkeys-htmltagcompletion.gif" alt="HTML Tag Completion" width="324" height="124" /></a><p class="wp-caption-text">HTML Tag Completion</p></div>
<p><strong>6. Paste File Path</strong></p>
<div class="wp-caption alignnone" style="width: 610px"><a title="Paste File Path" href="http://img.a4apphack.com/appkeys-pastefilepath.gif" rel="lightbox[630]"><img title="Paste File Path" src="http://img.a4apphack.com/appkeys-pastefilepath.gif" alt="Paste File Path" width="600" height="405" /></a><p class="wp-caption-text">Paste File Path</p></div>
<p><strong>7. Terminate Application</strong></p>
<div class="wp-caption alignnone" style="width: 222px"><a title="Terminate Application" href="http://img.a4apphack.com/appkeys-terminateapplication.jpg" rel="lightbox[630]"><img title="Terminate Application" src="http://img.a4apphack.com/appkeys-terminateapplication.jpg" alt="Terminate Application" width="212" height="117" /></a><p class="wp-caption-text">Terminate Application</p></div>
<h2>AppKeys CheatSheet</h2>
<div class="wp-caption alignnone" style="width: 610px"><a title="Appkeys Cheatsheet" href="http://img.a4apphack.com/appkeys-cheatsheet.jpg" rel="lightbox[630]"><img class="" title="Appkeys Cheatsheet" src="http://img.a4apphack.com/appkeys-cheatsheet.jpg" alt="Appkeys Cheatsheet" width="600" height="404" /></a><p class="wp-caption-text">Appkeys Cheatsheet (Click to Enlarge)</p></div>
<p><br class="spacer_" /></p>
<p><strong>Download Appkeys :</strong> <a target="_blank" href="http://img.a4apphack.com/dl/appkeys.ahk.txt"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a> (Rename the file to appkeys.ahk)</p>
<p>Note: Check the <a title="AppsKeys - a &quot;suite&quot; of simple utility hotkeys" href="http://www.autohotkey.com/forum/topic27797.html&amp;highlight=always+top">authors post</a> for the latest ahk file.</p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=630&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/featured/appkeys-suite-of-simple-utilites-with-ahk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secfox &#8211; Hackbar, Audit / Penetration Test Tool in Firefox</title>
		<link>http://a4apphack.com/security/hackbar-audit-penetration-test-tool</link>
		<comments>http://a4apphack.com/security/hackbar-audit-penetration-test-tool#comments</comments>
		<pubDate>Thu, 19 Feb 2009 06:59:00 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[appsec]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[Secfox]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=686</guid>
		<description><![CDATA[Hackbar is a tiny toolbar in Firefox with features to aid in application pen-testing. This can be used to perform our security tests quickly and effectively. 1. Manipulate integer values: Click on Load URL and then Split URL. Now select the Integer under interest and click on the INT +1 or INT -1 as required. [...]]]></description>
			<content:encoded><![CDATA[<p>Hackbar is a tiny toolbar in Firefox with features to aid in application pen-testing. This can be used to perform our security tests quickly and effectively.</p>
<p><img class="alignnone" title="Hackbar" src="http://img.a4apphack.com/hackbar-featured.jpg" alt="" width="349" height="199" /></p>
<p><span id="more-686"></span></p>
<h3>1. Manipulate integer values:</h3>
<p>Click on Load URL and then Split URL. Now select the Integer under interest and click on the INT +1 or INT -1 as required. This will automatically load the page with the new modified param value. This can help us while checking for &#8216;forceful browsing&#8217; or &#8216;revealing hidden pages&#8217; kind of tests.</p>
<div class="wp-caption alignnone" style="width: 610px"><a title="Change Integer Value" href="http://img.a4apphack.com/hackbar-changeintegervalue.jpg" rel="lightbox[686]"><img title="Change Integer Value" src="http://img.a4apphack.com/hackbar-changeintegervalue.jpg" alt="Change Integer Value" width="600" height="513" /></a><p class="wp-caption-text">Change Integer Value</p></div>
<h3>2. Calculate MD5 of selected string</h3>
<p>Some of the sites amateur developers might do poor encoding for the sensitive data which is communicated between server and the client. But with Hackbar the values can be easily decoded with a single click.</p>
<div class="wp-caption alignnone" style="width: 610px"><a title="Hash Selected Value" href="http://img.a4apphack.com/hackbar-hashselectedvalue.jpg" rel="lightbox[686]"><img class="" title="Hash Selected Value" src="http://img.a4apphack.com/hackbar-hashselectedvalue.jpg" alt="Hash Selected Value" width="600" height="513" /></a><p class="wp-caption-text">Hash Selected Value</p></div>
<h3>3. Calculate MySQL Char code of selected string.</h3>
<p>MySQL CHAR() button can help us in calculating the charcode of the selected string. This can help in injecting the char code value during some tests which usually are not stripped of while performing server side validation.</p>
<div class="wp-caption alignnone" style="width: 610px"><a title="Calculate Char Code" href="http://img.a4apphack.com/hackbar-calculatecharcode.jpg" rel="lightbox[686]"><img title="Calculate Char Code" src="http://img.a4apphack.com/hackbar-calculatecharcode.jpg" alt="Calculate Char Code" width="600" height="513" /></a><p class="wp-caption-text">Calculate Char Code</p></div>
<h2>Features</h2>
<ul>
<li>Increment/Decrement the numeric value of the params (e.g. change pageid to reveal hidden page, session ids etc)</li>
<li>Above operation on HEX values</li>
<li>SQL and XSS vectors string construction</li>
<li>Built-In string encryption options (MD5, SHA-1, SHA-256)</li>
<li>Encode and Decode URL (Base 64, URL Encoding)</li>
<li>Strings for performing BoF attacks.</li>
</ul>
<p><strong>Download Hackbar :</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/hackbar/"><img style="vertical-align: middle;" title="Hackbar Logo" src="http://img.a4apphack.com/hackbar-logo.png" alt="Hackbar Logo" /></a></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=686&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/security/hackbar-audit-penetration-test-tool/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portable Movie Database Which Automatically Fetches Movie Details From IMDB</title>
		<link>http://a4apphack.com/featured/portable-movie-database-which-automatically-fetches-movie-details-from-imdb</link>
		<comments>http://a4apphack.com/featured/portable-movie-database-which-automatically-fetches-movie-details-from-imdb#comments</comments>
		<pubDate>Mon, 16 Feb 2009 06:07:07 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Portable]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=588</guid>
		<description><![CDATA[Personal Video Database is a powerful utility for managing your favorite movie collections in your PC. Information related to movie is automatically downloaded from sites like IMDB or Yahoo Movies and are stored in the database, so that it can be viewed offline anytime. Pressing the &#8216;New Movie Master&#8217; Button from the toolbar (Cntrl+M) will [...]]]></description>
			<content:encoded><![CDATA[<p>Personal Video Database is a powerful utility for managing your favorite movie collections in your PC. Information related to movie is automatically downloaded from sites like IMDB or Yahoo Movies and are stored in the database, so that it can be viewed offline anytime.</p>
<div id="attachment_590" class="wp-caption alignnone" style="width: 610px"><a title="PVD Dissected ScreenshotDissected " href="http://img.a4apphack.com/moviedb-main.jpg" rel="lightbox[588]"><img class="size-full wp-image-590" title="PVD Dissected Screenshot" src="http://img.a4apphack.com/moviedb-main.jpg" alt="PVD Dissected Screenshot" width="600" height="545" /></a><p class="wp-caption-text">PVD Dissected ScreenshotDissected</p></div>
<p><span id="more-588"></span>Pressing the &#8216;New Movie Master&#8217; Button from the toolbar (Cntrl+M) will invoke a screen as shown below. Just enter the title and click &#8216;Ok&#8217; to get all the movie info and the posters automatically added to your database.</p>
<p>Tip: Instead of adding the title and the browsing for the movie file, just browse for the movie file first; the movie title will be added automatically by extracting the name of the file.</p>
<p>The service which provides the movie info can be modified from the preferences.</p>
<div id="attachment_592" class="wp-caption alignnone" style="width: 402px"><a title="New Movie Master" href="http://img.a4apphack.com/moviedb-newmovie.jpg" rel="lightbox[588]"><img class="size-medium wp-image-592" title="New Movie Master" src="http://img.a4apphack.com/moviedb-newmovie.jpg" alt="New Movie Master" width="392" height="356" /></a><p class="wp-caption-text">New Movie Master</p></div>
<p>There are various views in the Statistics window which displays charts and helps us in analyzing all the movies in our repository in a single shot.</p>
<div id="attachment_591" class="wp-caption alignnone" style="width: 360px"><a title="Movie Statistics" href="http://img.a4apphack.com/moviedb-stats.jpg" rel="lightbox[588]"><img class="size-full wp-image-591" title="Movie Statistics" src="http://img.a4apphack.com/moviedb-stats.jpg" alt="Movie Statistics" width="350" height="344" /></a><p class="wp-caption-text">Movie Statistics</p></div>
<h2>Features</h2>
<ul>
<li>Movie details like IMDB rating, cast, plot etc are downloaded automatically.</li>
<li>Movie posters are also downloaded from Amazon and other popular sites, which can be customized.</li>
<li>Highly flexible interface and layouts.</li>
<li>Able to play the movies within PVD.</li>
<li>Able to categorize movies into &#8216;seen&#8217; and &#8216;wish&#8217; categories.</li>
<li>Variety of statics can be queried from the database.</li>
<li>Its free and portable</li>
<li>There are much more which are not listed&#8230; Try and discover more&#8230;</li>
</ul>
<p><strong>PVD Download Page :</strong> <a target="_blank" href="http://www.videodb.info/forum_en/index.php?action=down"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a></p>
<p>More Info at <a title="PVD Homepage" href="http://www.videodb.info/">PVD Homepage</a></p>
<p>Note: For portable mode, download the Zip version from the downloads page</p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=588&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/featured/portable-movie-database-which-automatically-fetches-movie-details-from-imdb/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>3 Ways to Find Broken Links In Your Websites</title>
		<link>http://a4apphack.com/internet/find-broken-links-in-your-website</link>
		<comments>http://a4apphack.com/internet/find-broken-links-in-your-website#comments</comments>
		<pubDate>Wed, 11 Feb 2009 16:48:50 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[Portable]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=545</guid>
		<description><![CDATA[Its very important to ensure that all the pages you have linked in your site are reachable. But its impossible to manually crawl each page and check the status of the links and update accordingly. In this post I&#8217;m listing down 3 types of broken link checkers and its features, a portable one, as a [...]]]></description>
			<content:encoded><![CDATA[<p>Its very important to ensure that all the pages you have linked in your site are reachable. But its impossible to manually crawl each page and check the status of the links and update accordingly.</p>
<p>In this post I&#8217;m listing down 3 types of broken link checkers and its features, a portable one, as a wordpress plugin and an online app. Read this article, choose your link checker and do mention in the comments.</p>
<h2>1. Portable Tool &#8211; Xenu&#8217;s Link Sleuth</h2>
<p>Xenu&#8217;s Link Sleuth is a free tool which can be used to verify the status of the links in your site. This tool is a must have for any web master/blogger who uses a good amount of external/internal links in their sites.</p>
<p><a title="Link Sleuth Screenshot" href="http://img.a4apphack.com/brokenlinks-xenuscreen.jpg" rel="lightbox[545]"><img class="size-full wp-image-546 alignnone" title="Link Sleuth Screenshot" src="http://img.a4apphack.com/brokenlinks-xenuscreen.jpg" alt="Link Sleuth Screenshot" width="600" height="381" /></a></p>
<p><span id="more-545"></span></p>
<p>This tool generates a neat report in html format and gives all the information regarding the link status. It also gives us a quick summary at the end of the report</p>
<div id="attachment_549" class="wp-caption alignnone" style="width: 260px"><a title="Report Summary" href="http://img.a4apphack.com/brokenlinks-reportsummary.png" rel="lightbox[545]"><img class="size-full wp-image-549" title="Report Summary" src="http://img.a4apphack.com/brokenlinks-reportsummary.png" alt="Report Summary" width="250" height="289" /></a><p class="wp-caption-text">Report Summary</p></div>
<p><strong>Features</strong></p>
<ul>
<li> Simple user-interface</li>
<li> Can re-check broken links (useful for temporary network errors)</li>
<li> Simple report format</li>
<li> Executable file smaller than 1MB</li>
<li> Supports SSL websites (&#8220;https:// &#8220;)</li>
<li> Partial testing of ftp and gopher sites</li>
<li> Detects and reports redirected URLs</li>
<li> Site Map</li>
</ul>
<p>Check the Wiki article on Link Sleuth <a title="Xenu's Link Sleuth" href="http://en.wikipedia.org/wiki/Xenu%27s_Link_Sleuth">here</a></p>
<p><strong>Download Link Sleuth : </strong><a target="_blank" href="http://home.snafu.de/tilman/XENU.ZIP"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a> (More Info @ <a title="Xenu's Link Sleuth Homepage" href="http://home.snafu.de/tilman/xenulink.html">Xenu Link Sleuth Homepage</a>)</p>
<p><br class="spacer_" /></p>
<h2>2. WordPress Plugin &#8211; Broken Link Checker</h2>
<p>This plugin will monitor your blog looking for broken links and let you know if any are found.</p>
<div class="wp-caption alignnone" style="width: 405px"><a title="Broken Link Checker WP Plugin" href="http://img.a4apphack.com/brokenlinks-wpplugin.jpg" rel="lightbox[545]"><img title="Broken Link Checker WP Plugin" src="http://img.a4apphack.com/brokenlinks-wpplugin.jpg" alt="Broken Link Checker WP Plugin" width="395" height="102" /></a><p class="wp-caption-text">Broken Link Checker WP Plugin</p></div>
<p><strong>Features</strong></p>
<ul>
<li>Monitors links in your posts, pages, the blogroll, and custom fields (optional).</li>
<li>Detects links that don&#8217;t work and missing images.</li>
<li>Notifies you on the Dashboard if any are found.</li>
<li>Also detects redirected links.</li>
<li>Makes broken links display differently in posts (optional).</li>
<li>Link checking intervals can be configured.</li>
<li>New/modified posts are checked ASAP.</li>
<li>You view broken links, redirects, and a complete list of links used on your site, in the <em>Tools -&gt; Broken Links</em> tab. </li>
<li>Each link can be edited or unlinked directly via the plugin&#8217;s page, without manually editing each post.</li>
</ul>
<p><strong>Install Broken Links Checker :</strong> <a target="_blank" href="http://wordpress.org/extend/plugins/broken-link-checker"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a></p>
<h2>3. Online Version &#8211; iWebTools Broken Link Checker</h2>
<p>This is the simplest and online version of the previously mentioned broken link checker. Just submit the URL you want to check for and the broken links are represented by the &#8216;cross&#8217; mark. The links are checked in the background and displayed through Ajax so we dont have to wait and refresh the page for each check. Go to <a title="Broken Link Checker Online" href="http://www.iwebtool.com/broken_link_checker">iWebTools</a></p>
<div class="wp-caption alignnone" style="width: 610px"><a title="Broken Link Checker Online" href="http://img.a4apphack.com/brokenlinks-online.jpg" rel="lightbox[545]"><img style="border: 1px solid black;" title="Broken Link Checker Online" src="http://img.a4apphack.com/brokenlinks-online.jpg" alt="Broken Link Checker Online" width="600" height="419" /></a><p class="wp-caption-text">Broken Link Checker Online</p></div>
<p>Check <a title="Broken Link Checker Online" href="http://www.iwebtool.com/broken_link_checker">iWebTools Broken Link Checker</a></p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=545&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/internet/find-broken-links-in-your-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileReplicator &#8211; Searches and Replaces Multiple files</title>
		<link>http://a4apphack.com/tips-tricks/filereplicator-searches-and-replaces-multiple-files</link>
		<comments>http://a4apphack.com/tips-tricks/filereplicator-searches-and-replaces-multiple-files#comments</comments>
		<pubDate>Mon, 05 Jan 2009 13:05:56 +0000</pubDate>
		<dc:creator>rajivvishwa</dc:creator>
				<category><![CDATA[Portable]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[versions]]></category>

		<guid isPermaLink="false">http://a4apphack.com/blog/?p=268</guid>
		<description><![CDATA[FileReplicator is a handy tool for developers who keep multiple copies of the files in different folders, updates a single file and want to update all of them in a single stroke. This can help in updating a particular folder with the new set of files without having to search the older ones manually. This [...]]]></description>
			<content:encoded><![CDATA[<p>FileReplicator is a handy tool for developers who keep multiple copies of the files in different folders, updates a single file and want to update all of them in a single stroke. This can help in updating a particular folder with the new set of files without having to search the older ones manually. This simple tool can be very much helpful and save pretty amount of time if you frequently update the files and want to maintain consistency all over.</p>
<p><span id="more-268"></span>Many a times we might want to update the files to the newer version for that we possibly search through the our entire workspace then find the instances of the old file, go to each folder and overwrite the old with the new one. This process needs to be repeated as many times as the number of search results displayed. FileReplicator does all these tasks automatically. With this tool we have to specify the search folder path and the path of the new file which replaces the search results.</p>
<h3>Features</h3>
<ul>
<li>Option to specify the folder where the files are to be searched</li>
<li>Searches and replaces the files with the specified new file in 3 simple steps</li>
<li>Search results displayed along with the path before requesting for replace operation</li>
<li>Confirmation option can be set for each file replace so as to exclude certain files</li>
<li>Can be run as Portable Application</li>
</ul>
<h3>Gallery</h3>
<p><a title="FileReplicator GUI" href="http://img.a4apphack.com/filereplica-gui.jpg" rel="lightbox[268]"><img src="http://img.a4apphack.com/filereplica-gui.jpg" alt="FileReplicator GUI" width="125" height="125"/></a> <a title="FileReplicator Options" href="http://img.a4apphack.com/filereplica-options.jpg" rel="lightbox[268]"><img src="http://img.a4apphack.com/filereplica-options.jpg" alt="FileReplicator Options" width="125" height="125"/></a> <a title="FileReplicator Search" href="http://img.a4apphack.com/filereplica-search.jpg" rel="lightbox[268]"><img src="http://img.a4apphack.com/filereplica-search.jpg" alt="FileReplicator Search" width="125" height="125" /></a> <a title="FileReplicator Replace" href="http://img.a4apphack.com/filereplica-replacecomplete.jpg" rel="lightbox[268]"><img src="http://img.a4apphack.com/filereplica-replacecomplete.jpg" alt="FileReplicator Replace" width="125" height="125" /></a></p>
<p><strong>Download FileReplicator: </strong> <a target="_blank" href="http://www.tylerretelle.com/downstable.html"><img style="vertical-align: middle;" height="30" width="30" alt="Download" src="http://img.a4apphack.com/site/a4apphack-download.png" title="Download"/></a> (Go to <a title="FileReplicator Homepage" href="http://www.tylerretelle.com/released.html">FileReplicator Homepage</a>)</p>
<img src="http://a4apphack.com/blog/?ak_action=api_record_view&id=268&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://a4apphack.com/tips-tricks/filereplicator-searches-and-replaces-multiple-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (Requested URI is rejected)
Object Caching 1426/1462 objects using disk: basic

Served from: a4apphack.com @ 2012-05-22 09:05:09 -->
