<?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>w3af - Open Source Web Application Security Scanner</title>
	<atom:link href="http://w3af.org/feed" rel="self" type="application/rss+xml" />
	<link>http://w3af.org</link>
	<description>A framework to secure the web</description>
	<lastBuildDate>Thu, 16 May 2013 19:08:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Is your site spreading malware?</title>
		<link>http://w3af.org/is-your-site-spreading-malware</link>
		<comments>http://w3af.org/is-your-site-spreading-malware#comments</comments>
		<pubDate>Wed, 15 May 2013 13:02:06 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[w3af]]></category>
		<category><![CDATA[clamav]]></category>
		<category><![CDATA[clamd]]></category>
		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=7062</guid>
		<description><![CDATA[A feature request appeared on our IRC, private conversations and mailing lists once every year or so: &#8220;I want to be able to detect if my site is spreading malware&#8221;. Last week it appeared again and this time it was implemented, so for your enjoyment I give you w3af &#8211; ClamAV integration.<br />
The basic idea is simple, w3af crawls the target site and sends all HTTP response bodies to ClamAV (using the clam daemon) for analysis. If ClamAV finds something ...]]></description>
				<content:encoded><![CDATA[<p>A feature request appeared on our <a title="#w3af channel at the Freenode IRC network" href="irc://irc.freenode.net:8001/w3af" target="_blank">IRC</a>, private conversations and mailing lists once every year or so: &#8220;I want to be able to detect if my site is spreading malware&#8221;. Last week it appeared again and this time it was implemented, so for your enjoyment I give you <a title="w3af - Web Application Attack and Audit Framework" href="http://w3af.org" target="_blank">w3af</a> &#8211; <a title="ClamAV - Open Source Anti Virus" href="http://www.clamav.net/" target="_blank">ClamAV</a> integration.</p>
<p>The basic idea is simple, w3af crawls the target site and sends all HTTP response bodies to ClamAV (using the clam daemon) for analysis. If ClamAV finds something in that stream we&#8217;ll parse it and show it to you in the report.</p>
<h2>Testing</h2>
<p>Before this gets to the master branch I would like you to test it and <a href="https://github.com/andresriancho/w3af/issues/new" title="w3af bug report">report any bugs or improvements</a>. Follow these steps to help us improve:<br />
<code><br />
git clone git@github.com:andresriancho/w3af.git<br />
cd w3af<br />
git checkout feature/clam<br />
git pull<br />
./w3af_console # Install the new clamd dependency using pip</p>
<p># Install clamd in your system (this is for ubuntu):<br />
sudo apt-get install clamav-daemon clamav-freshclam clamav-unofficial-sigs<br />
sudo freshclam<br />
sudo service clamav-daemon start</code></p>
<p>Then, run a scan against your site using the <a href="https://github.com/andresriancho/w3af/blob/feature/clam/plugins/grep/clamav.py" title="clamav.py source code">new grep.clamav plugin</a>. Remember that for the grep plugin to analyze your site, you need to activate a crawl plugin like <a href="http://w3af.org/plugins/crawl/web_spider" title="Web Spider plugin">web_spider</a>.</p>
<p>If you want to test with something &#8220;real&#8221;, remember you can use the <a href="http://www.eicar.org/85-0-Download.html">EICAR test binary</a>. Happy testing!</p>
<h2>Implementation</h2>
<p>The implementation of <a href="https://github.com/andresriancho/w3af/blob/feature/clam/plugins/grep/clamav.py" title="clamav.py source code">this new plugin</a> was fairly simple due to the excellent <a title="clamd integration with python" href="https://pypi.python.org/pypi/clamd">clamd</a> python module and the pre-existing features available in the w3af framework.</p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/is-your-site-spreading-malware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding HTML5 security</title>
		<link>http://w3af.org/understanding-html5-security</link>
		<comments>http://w3af.org/understanding-html5-security#comments</comments>
		<pubDate>Tue, 30 Apr 2013 19:16:16 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[web security]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[prezi]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[slides]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=7004</guid>
		<description><![CDATA[Last year was great, I had time to read and understand something that was a complete mystery for me: HTML5.<br />
After reading through the great documentation and examples at html5rocks, applying the knowledge while developing PoC applications and going through all the HTML5 security papers available it felt right to give a talk about it. This is my Prezi for &#8220;Understanding HTML5 Security&#8221;, enjoy!<br />
<br />
]]></description>
				<content:encoded><![CDATA[<p>Last year was great, I had time to read and understand something that was a complete mystery for me: <a title="HTML5" href="http://www.w3schools.com/html/html5_intro.asp" target="_blank">HTML5</a>.</p>
<p>After reading through the great documentation and examples at <a title="HTML5 examples and documentation" href="http://www.html5rocks.com/en/" target="_blank">html5rocks</a>, applying the knowledge while developing PoC applications and going through all the HTML5 security papers available it felt right to give a talk about it. This is my Prezi for &#8220;Understanding HTML5 Security&#8221;, enjoy!</p>
<p><iframe src="http://prezi.com/embed/k2ibkogftt2i/?bgcolor=ffffff&amp;lock_to_path=1&amp;autoplay=0&amp;autohide_ctrls=0&amp;features=undefined&amp;disabled_features=undefined" width="550" height="400" frameBorder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/understanding-html5-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First w3af workshop</title>
		<link>http://w3af.org/w3af-workshop-issa-charlotte</link>
		<comments>http://w3af.org/w3af-workshop-issa-charlotte#comments</comments>
		<pubDate>Thu, 18 Apr 2013 19:30:10 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[w3af]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=7005</guid>
		<description><![CDATA[Yesterday I delivered a two hour, free, w3af workshop at the ISSA Charlotte Summit. This was the first workshop of this type I&#8217;ve delivered and the experience was great. I&#8217;m sure many awesome things will come out of it! The workshop objectives are:<br />
<br />
Understand how web application scanning works and how w3af is implemented<br />
Identify vulnerabilities<br />
Vulnerability exploitation<br />
Contributing to the project: Create new plugin and submit a pull request at Github<br />
<br />
<br />
If you&#8217;re organizing a conference and ...]]></description>
				<content:encoded><![CDATA[<p>Yesterday I delivered a two hour, free, w3af workshop at the ISSA Charlotte Summit. This was the first workshop of this type I&#8217;ve delivered and the experience was great. I&#8217;m sure many awesome things will come out of it! The workshop objectives are:</p>
<ul>
<li>Understand how web application scanning works and how w3af is implemented</li>
<li>Identify vulnerabilities</li>
<li>Vulnerability exploitation</li>
<li>Contributing to the project: Create new plugin and submit a pull request at Github</li>
</ul>
<p><script async class="speakerdeck-embed" data-id="ba413ab0837b01302a1012313916093b" data-ratio="1.33507170795306" src="//speakerdeck.com/assets/embed.js"></script></p>
<p>If you&#8217;re organizing a conference and would like to have this workshop, contact me and I&#8217;m sure we&#8217;ll come to an agreement.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/w3af-workshop-issa-charlotte/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sentinela: Auto-shutdown cloud servers</title>
		<link>http://w3af.org/sentinela-auto-shutdown-cloud-servers</link>
		<comments>http://w3af.org/sentinela-auto-shutdown-cloud-servers#comments</comments>
		<pubDate>Sun, 07 Apr 2013 16:23:34 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[auto shutdown]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[sentinela]]></category>
		<category><![CDATA[watchdog]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=6991</guid>
		<description><![CDATA[During the last weeks I&#8217;ve been using some of my time to learn various aspects of cloud computing. I spend most of my time reading and testing some new ideas on Amazon&#8217;s cloud. After using Amazon&#8217;s console for a while, I started to use the Boto library for starting my instances and then pushing some code to them with Fabric.<br />
The problem came one day when, because of a mistake on my side, a few hundred ec2 instances were left running and completely ...]]></description>
				<content:encoded><![CDATA[<p>During the last weeks I&#8217;ve been using some of my time to learn various aspects of cloud computing. I spend most of my time reading and testing some new ideas on <a title="Amazon's cloud" href="http://aws.amazon.com/ec2/" target="_blank">Amazon&#8217;s cloud</a>. After using Amazon&#8217;s console for a while, I started to use the <a title="Boto" href="https://github.com/boto/boto" target="_blank">Boto library</a> for starting my instances and then pushing some code to them with <a title="Fabric - SSH made easy" href="http://fabric.readthedocs.org/en/1.6/" target="_blank">Fabric</a>.</p>
<p>The problem came one day when, <em>because of a mistake on my side,</em> a few hundred ec2 instances were left running and completely idle over the weekend. This translated into Amazon charges which I&#8217;ll sadly have to pay, and into <a title="OS Watchdog" href="https://github.com/andresriancho/sentinela" target="_blank">Sentinela</a>: an operating system watchdog that can take actions based on your specific rules.</p>
<p>From <a title="OS Watchdog" href="https://github.com/andresriancho/sentinela" target="_blank">Sentinela&#8217;s</a> site README.rst:</p>
<blockquote><p>
Sentinela is a highly configurable operating system watchdog which can take actions based on pre-configured rules.</p>
<p>The initial motivation was to create a daemon that would monitor a set of log files and if no activity was present shutdown the operating system. This was extremely useful for making sure my ec2 instances were shut down after a specified idle time.</p>
<p>Given Sentinela&#8217;s modular nature, you can also extend it to monitor network traffic, processes, disk usage, etc. and run any actions such as sending an email, send a SNMP alert, etc.
</p></blockquote>
<p><a title="Sentinela at Pypi" href="https://pypi.python.org/pypi/sentinela/" target="_blank">Sentinela has been uploaded to PyPi</a>, so installing is as easy as running &#8220;sudo pip install sentinela&#8221;.</p>
<p>Remember to setup your custom rules in order to shutdown your instances and avoid those expensive charges <img src='http://w3af.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/sentinela-auto-shutdown-cloud-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infrastructure as code</title>
		<link>http://w3af.org/infrastructure-as-code</link>
		<comments>http://w3af.org/infrastructure-as-code#comments</comments>
		<pubDate>Thu, 04 Apr 2013 13:08:23 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[w3af]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=6971</guid>
		<description><![CDATA[I&#8217;ve been experimenting with Amazon Web Services during the last month, and I have to say I&#8217;m impressed. There is a whole new world of things to learn and use, with endless possibilities. Since it all started with the migration of the w3af.org site to an Amazon ec2 instance, I decided to give a talk about that at the OWASP LATAM Tour, here are the slides!<br />
<br />
]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with Amazon Web Services during the last month, and I have to say<strong> I&#8217;m impressed</strong>. There is a whole new world of things to learn and use, with endless possibilities. Since it all started with the migration of the w3af.org site to an Amazon ec2 instance, I decided to give a talk about that at the OWASP LATAM Tour, here are the slides!</p>
<p><script async class="speakerdeck-embed" data-id="d5c65d507f5501303c5e22000a1d8ce4" data-ratio="1.33507170795306" src="//speakerdeck.com/assets/embed.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/infrastructure-as-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beta-testers wanted!</title>
		<link>http://w3af.org/beta-testers-wanted</link>
		<comments>http://w3af.org/beta-testers-wanted#comments</comments>
		<pubDate>Mon, 18 Feb 2013 20:59:06 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[w3af]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=6899</guid>
		<description><![CDATA[<br />
It&#8217;s time. The w3af project needs your help. I&#8217;ve been improving this software during the last months and now I need you to test it before the release. I&#8217;ve done my fair share of testing, but I&#8217;m also the developer and that&#8217;s never good.<br />
We&#8217;re looking for bugs, crashes, false positives, false negatives, typos, etc. anything that can be improved is welcome.<br />
Follow these steps for testing:<br />
cd ~<br />
git clone https://github.com/andresriancho/w3af.git<br />
cd w3af<br />
git checkout threading2<br />
<br />
# Backup ...]]></description>
				<content:encoded><![CDATA[<p><a href="http://w3af.org/wp-content/uploads/beta-testing.png"><img class=" wp-image-6906 alignright" alt="beta-testing" src="http://w3af.org/wp-content/uploads/beta-testing.png" width="240" height="185" /></a></p>
<p><strong>It&#8217;s time.</strong> The w3af project needs your help. I&#8217;ve been improving this software during the last months and now I need you to test it before the release. I&#8217;ve done my fair share of testing, but I&#8217;m also the developer and that&#8217;s never good.</p>
<p>We&#8217;re looking for <em>bugs, crashes, false positives, false negatives, typos</em>, etc. anything that can be improved is welcome.</p>
<p>Follow these steps for testing:</p>
<pre>cd ~
git clone https://github.com/andresriancho/w3af.git
cd w3af
git checkout threading2

# Backup your old profiles
mv ~/.w3af/profiles/ ~/w3af-profiles.old/
rm -rf ~/.w3af/

# Install the dependencies - bugs in this step are also welcome
./w3af_console

# Load the full audit profile
./w3af_console -p full_audit
    target set target http://your-target-goes-here-com/
    start</pre>
<p>&nbsp;</p>
<p>Report any issues <a title="w3af at github.com" href="https://github.com/andresriancho/w3af/issues/new">here</a> , if possible please attach the output.txt logfile to the bug report. Please DO NOT test the w3af_gui , it&#8217;s still being developed.</p>
<div>If no major bugs are reported, the new version should be released shortly after this beta testing phase. Thanks!</div>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/beta-testers-wanted/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Web 2.0!</title>
		<link>http://w3af.org/hello-web-2-0</link>
		<comments>http://w3af.org/hello-web-2-0#comments</comments>
		<pubDate>Mon, 14 Jan 2013 02:13:18 +0000</pubDate>
		<dc:creator>andres.riancho</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[w3af]]></category>
		<category><![CDATA[goodbye old site]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://w3af.org/?p=1</guid>
		<description><![CDATA[We had our old, static and boring project page for too much time. It was difficult for me to update it, didn&#8217;t allow me to blog about the project news in a format that was readable and eye-candy and many other things that I won&#8217;t mention.<br />
Now I present you the new w3af.org website! Hopefully, this will solve all the issues with the old site and enhance the communication between all members of the w3af community.<br />
]]></description>
				<content:encoded><![CDATA[<p>We had our old, static and boring project page for too much time. It was difficult for me to update it, didn&#8217;t allow me to blog about the project news in a format that was readable and eye-candy and many other things that I won&#8217;t mention.</p>
<p>Now I present you the new <a title="www.w3af.org" href="http://www.w3af.org">w3af.org</a> website! Hopefully, this will solve all the issues with the old site and enhance the communication between all members of the <a title="Community" href="http://w3af.org/community">w3af community</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://w3af.org/hello-web-2-0/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
