<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>HexEsec &#124; a pentester's view &#187; tools</title>
	<atom:link href="http://hexesec.wordpress.com/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://hexesec.wordpress.com</link>
	<description>sudo apt-get install ... security?</description>
	<lastBuildDate>Wed, 16 Dec 2009 23:34:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='hexesec.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/92201dabe8b4987549fde15513466bfb?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>HexEsec &#124; a pentester's view &#187; tools</title>
		<link>http://hexesec.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hexesec.wordpress.com/osd.xml" title="HexEsec | a pentester&#8217;s view" />
		<item>
		<title>pentesting with an ubuntu box</title>
		<link>http://hexesec.wordpress.com/2009/11/20/pentesting-with-an-ubuntu-box/</link>
		<comments>http://hexesec.wordpress.com/2009/11/20/pentesting-with-an-ubuntu-box/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 03:39:07 +0000</pubDate>
		<dc:creator>jcran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[pentesting]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hexesec.wordpress.com/?p=306</guid>
		<description><![CDATA[here&#8217;s  a recent drop of a script i use to configure my ubuntu box for pentesting. yes, i could use backtrack (and i do &#8212; especially if i&#8217;m having wireless issues), but this is a quick way to get an ubuntu box up &#38; running. cheers -jcran
#!/bin/bash
# System Configuration &#38; Utilities
apt-get -y install build-essential
apt-get -y [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hexesec.wordpress.com&blog=4149787&post=306&subd=hexesec&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>here&#8217;s  a recent drop of a script i use to configure my ubuntu box for pentesting. yes, i could use backtrack (and i do &#8212; especially if i&#8217;m having wireless issues), but this is a quick way to get an ubuntu box up &amp; running. cheers -jcran</p>
<blockquote><p>#!/bin/bash</p>
<p># System Configuration &amp; Utilities<br />
apt-get -y install build-essential<br />
apt-get -y install linux-headers-`uname -r`<br />
apt-get -y install sysvconfig<br />
apt-get -y install bum         ## Boot-Up Manager<br />
apt-get -y install tofrodos    ## DOS utils<br />
apt-get -y install xinetd      ## why not.<br />
apt-get -y install unrar       ## RAR support<br />
apt-get -y install p7zip-full  ## 7-Zip support<br />
apt-get -y install fcrackzip   ## Zip cracking<br />
apt-get -y install ipcalc      ## handy<br />
apt-get -y install sharutils   ## uuencode / uudecode<br />
apt-get -y install xclip       ## piping is handy<br />
apt-get -y install ldap-utils<br />
apt-get -y install cabextract  ## damn microsoft and their fascist compression formats!<br />
apt-get -y install g++<br />
apt-get -y install ssh</p>
<p>## Network services<br />
apt-get -y install samba<br />
apt-get -y install nis<br />
apt-get -y install nfs<br />
apt-get -y install smbfs       ## samba utilities<br />
## apt-get -y install tftpd    ## you need to modify the /etc/init.d file&#8230;</p>
<p># system monitoring<br />
apt-get -y install ntop        ##<br />
apt-get -y install sysstat     ## iostat,sar,mpstat<br />
apt-get -y install procinfo</p>
<p># Package Management<br />
#apt-get -y install apt-build<br />
#apt-get -y install apt-dpkg-ref<br />
#apt-get -y install apt-listbugs<br />
apt-get -y install apt-file<br />
#apt-get -y install apt-howto<br />
apt-get -y install apt-utils<br />
apt-get -y install apt-listchanges<br />
apt-get -y install dconf</p>
<p># Terminal Emulators<br />
apt-get -y install tn5250<br />
apt-get -y install screen</p>
<p># Filesystem Support<br />
apt-get -y install sshfs<br />
apt-get -y install ntfs-3g<br />
apt-get -y install ntfs-config<br />
apt-get -y install ntfsprogs<br />
apt-get -y install mkisofs</p>
<p># Gnome-Specific Configuration<br />
apt-get -y install gconf<br />
apt-get -y install gnomebaker<br />
apt-get -y install nautilus-open-terminal</p>
<p># ISAKMPD<br />
# apt-get -y install isakmpd<br />
apt-get -y install vpnc</p>
<p># Multimedia<br />
apt-get -y install amarok<br />
apt-get -y install xmms<br />
apt-get -y install xmms-skins<br />
apt-get -y install xmms-mp4<br />
apt-get -y install mpg123<br />
apt-get -y install totem-xine<br />
apt-get -y install ksnapshot<br />
apt-get -y install istanbul<br />
apt-get -y install recordmydesktop<br />
apt-get -y install gtk-recordmydesktop<br />
apt-get -y install xvidcap</p>
<p># Basics</p>
<p># Netcat &amp; Tunnelling<br />
apt-get -y install netcat<br />
apt-get -y install sbd<br />
apt-get -y install cryptcat<br />
apt-get -y install socat<br />
apt-get -y install vtun<br />
apt-get -y install stunnel</p>
<p># Scanning Tools<br />
apt-get -y install nmap<br />
apt-get -y install nessusd<br />
apt-get -y install nessus<br />
apt-get -y install fping<br />
apt-get -y install hping2<br />
apt-get -y install hping3<br />
apt-get -y install scapy<br />
apt-get -y install snmp<br />
#apt-get -y install sing     #send icmp nasty garbage<br />
apt-get -y install traceroute<br />
apt-get -y install tcptraceroute<br />
apt-get -y install ike-scan ## ipsec vpn tool<br />
apt-get -y install nbtscan ## cifs info tool<br />
apt-get -y install sslscan</p>
<p># Passive Scanning Tools<br />
apt-get -y install p0f<br />
apt-get -y install pads</p>
<p># Sniffing Tools<br />
apt-get -y install wireshark<br />
apt-get -y install ettercap<br />
apt-get -y install ettercap-gtk<br />
apt-get -y install tcpdump<br />
apt-get -y install tcpflow<br />
apt-get -y install ssldump<br />
apt-get -y install nemesis   # packet injection<br />
apt-get -y install dsniff<br />
apt-get -y install etherape</p>
<p># Libraries<br />
apt-get -y install libssl        #Medusa<br />
apt-get -y install libssl-dev        #Medusa<br />
apt-get -y install libssh-2        #Medusa<br />
apt-get -y install python-pycurl    #wfuzz<br />
apt-get -y install libnet-dns-perl    #fierce.pl<br />
apt-get -y install libsnmp-perl        #??<br />
apt-get -y install libcrypt-ssleay-perl #HEAD,GET,POST, libwhisker<br />
apt-get -y install libnet-ssleay-perl   # &#8220;&#8221;     &#8220;&#8221;<br />
apt-get -y install ncurses-dev        # kismet-newcore<br />
apt-get -y install libpcap-dev        # kismet-newcore</p>
<p># Cracking Tools<br />
apt-get -y install john<br />
apt-get -y install medusa<br />
## apt-get -y install hydra? ## not really that useful..</p>
<p># Wireless Tools<br />
##apt-get -y install kismet ## disabled because of kismet-ng<br />
apt-get -y install aircrack<br />
apt-get -y install aircrack-ng</p>
<p># App Layer Tools<br />
apt-get -y install wget<br />
apt-get -y install curl<br />
apt-get -y install nikto</p>
<p>## Scripting<br />
apt-get -y install ruby<br />
apt-get -y install python<br />
apt-get -y install perl<br />
apt-get -y install perl-doc<br />
apt-get -y install gawk<br />
apt-get -y install vim-ruby<br />
apt-get -y install vim-python</p>
<p>## Ruby &#8211; Gems<br />
apt-get -y install gems<br />
apt-get -y install rubygems</p>
<p>## Metasploit dependencies<br />
apt-get -y install libopenssl-ruby<br />
apt-get -y install ruby-libglade2<br />
apt-get -y install libgtk2-ruby</p>
<p>## Scapy &#8211; Python Dependencies &#8211; http://www.secdev.org/projects/scapy/portability.html<br />
apt-get -y install graphviz        # graph stuff<br />
apt-get -y install imagemagick        # graph stuff<br />
apt-get -y install python-gnuplot    # PacketList.plot()<br />
apt-get -y install python-crypto    # WEP Stuff<br />
apt-get -y install python-visual    # 3D Stuff<br />
apt-get -y install python-pyx        # pdfdump() / psdump()<br />
apt-get -y install acroread<br />
apt-get -y install gv<br />
apt-get -y install sox</p>
<p>## ProxyStrike Dependencies<br />
apt-get -y install python-qt4<br />
apt-get -y install python-openssl</p>
<p>## W3af Dependencies<br />
apt-get -y install python-pyparsing<br />
apt-get -y install python-pydot<br />
apt-get -y install python-soappy</p>
<p>## Coding<br />
##apt-get -y install eclipse &#8211; get the latest version&#8230;<br />
apt-get -y install kdevelop<br />
apt-get -y install subversion<br />
apt-get -y install rapidsvn<br />
apt-get -y install vim-full<br />
apt-get -y install git<br />
apt-get -y install git-core</p>
<p>## Documentation<br />
apt-get -y install notecase<br />
apt-get -y install vim<br />
apt-get -y install liferea</p>
<p>## Web / Browser Utilities<br />
apt-get -y install azureus<br />
apt-get -y install opera<br />
apt-get -y install filezilla<br />
apt-get -y install flashplugin-nonfree<br />
apt-get -y install pidgin<br />
apt-get -y install pidgin-otr<br />
apt-get -y install thunderbird<br />
apt-get -y install lightning-extension<br />
apt-get -y install enigmail<br />
apt-get -y install irssi<br />
apt-get -y install silc<br />
apt-get -y install tor</p>
<p>## Windows Stuff<br />
apt-get -y install wine<br />
apt-get -y install quicksynergy</p>
<p>## Encryption<br />
apt-get -y install dmsetup<br />
apt-get -y install password-gorilla<br />
apt-get -y install gpa<br />
apt-get -y install seahorse</p>
<p>## Java<br />
apt-get -y install sun-java6-jre<br />
apt-get -y install sun-java6-plugin</p>
<p>#set our java version to java-6-sun as this plays well with burpsuite<br />
update-java-alternatives -s java-6-sun</p>
<p>## Upgrade &amp; Such<br />
apt-get update<br />
apt-get upgrade<br />
apt-get dist-upgrade</p>
<p>## Remove auto-start services<br />
update-rc.d -f exim4 remove<br />
update-rc.d -f tor remove<br />
update-rc.d -f ntop remove<br />
update-rc.d -f p0f remove ## not sure this is necessary<br />
update-rc.d -f pads remove<br />
update-rc.d -f isakmpd remove<br />
update-rc.d -f nessusd remove<br />
update-rc.d -f cups remove<br />
update-rc.d -f samba remove<br />
update-rc.d -f nis remove<br />
update-rc.d -f nfs-common remove</p>
<p>### Manual installs<br />
### &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
### truecrypt &#8212; http://www.howtogeek.com/howto/ubuntu/install-truecrypt-on-ubuntu-edgy/<br />
###            &#8211; you will need the linux kernel source for this one&#8230;<br />
### onesixtyone &#8212; http://www.phreedom.org/solar/onesixtyone/<br />
### libdvdcss2 &#8212; &#8220;sudo /usr/share/doc/libdvdread3/./install-css.sh&#8221;</p>
<p>### oh yes, and pull down the &#8220;real&#8221; toolkit from subversion -  email if you&#8217;re interested in this -&gt; jcran_AT_0&#215;0e.org</p></blockquote>
<p>you can also download the script here: <a href="http://www.0x0e.org/x/consultant_ubuntu_setup.sh">http://www.0&#215;0e.org/x/consultant_ubuntu_setup.sh</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hexesec.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hexesec.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hexesec.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hexesec.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hexesec.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hexesec.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hexesec.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hexesec.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hexesec.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hexesec.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hexesec.wordpress.com&blog=4149787&post=306&subd=hexesec&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hexesec.wordpress.com/2009/11/20/pentesting-with-an-ubuntu-box/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7ddf41647a2dd583835558cdf11b280?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jcran</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox Extensions Dump</title>
		<link>http://hexesec.wordpress.com/2008/09/23/firefox-extensions-dump/</link>
		<comments>http://hexesec.wordpress.com/2008/09/23/firefox-extensions-dump/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 19:16:51 +0000</pubDate>
		<dc:creator>jcran</dc:creator>
				<category><![CDATA[attack]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[pentest]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://hexesec.wordpress.com/?p=92</guid>
		<description><![CDATA[This is a dump of my current set of Firefox extensions. Some of these are absolutely critical for pentesting: HackBar, TamperData, FireBug and ModifyHeaders. Some are not so critical, but helpful: Shazou (Geolocation), FormFox (See where forms submit to), PDF Download (yeah.), etc.
Aardvark &#8211; aardvark.xpi
Powerful and user-friendly selector utility for selecting elements and doing various [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hexesec.wordpress.com&blog=4149787&post=92&subd=hexesec&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a dump of my current set of Firefox extensions. Some of these are absolutely critical for pentesting: HackBar, TamperData, FireBug and ModifyHeaders. Some are not so critical, but helpful: Shazou (Geolocation), FormFox (See where forms submit to), PDF Download (yeah.), etc.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4111"><strong>Aardvark &#8211; aardvark.xpi</strong></a><br />
Powerful and user-friendly selector utility for selecting elements and doing various actions on them. It can be used for cleaning up a page prior to printing it (by removing and isolating elements), for making the page more readable, and (most appreciated by web developers), for analyzing the structure of a page.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/573"><strong>Add N Edit Cookies &#8211; add_n_edit_cookies-0.2.1.3-fx+mz.xpi</strong></a><br />
Cookie Editor that allows you add and edit &#8220;session&#8221; and saved cookies.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2072"><strong>AS Number &#8211; asnumber-1.0beta9-fx.xpi</strong></a><br />
The AS Number Extension displays interesting information the Internet Service Provider of every website visited. Along with it come some additional statistics for those who want to know what happens behind the Webs shiny surface.</p>
<p><a href="http://www.bookburro.org/"><strong>Book Burro &#8211; bookburro.xpi</strong></a><br />
An extension for FireFox &amp; Flock web browsers to save you time and money when browsing books.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1964"><strong>Cert Viewer Plus &#8211; cert_viewer_plus-1.4-fx+tb+sm.xpi</strong></a><br />
Certificate viewer enhancements: PEM format view, file export</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4703"><strong>Cookie Monster &#8211; cookie_monster-0.94-fx.xpi</strong></a><br />
Cookie Monster features: &#8211; Temporary Permission for sites to leave cookies (permission removed and cookies deleted for site with temporary permission upon restart of Firefox) &#8211; New option to set general Firefox setting to block all cookies &#8211; Updated menu structure &#8211; Menu options to view cookies for current site or all sites &#8211; A panel indicating the current status of cookies for the current site and domain appears while hovering over the cookie status indicating icon in the status bar In a nutshell, Cookie Monster allows for easier managing of what sites a user allows to set cookies and what sites cannot. It works best for users who do NOT accept cookies by default, although this is not necessary.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2497"><strong>Cookie Safe &#8211; cookiesafe-3.0.3-fx+tb+sm.xpi</strong></a><br />
This extension will allow you to easily control cookie permissions. It will appear on your statusbar. Just click on the icon to allow, block, or temporarily allow the site to set cookies. You can also view or clear the cookies and exceptions by&#8230;</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1201"><strong>Cookie Watcher &#8211; cookie_watcher-0.7-fx.xpi</strong></a><br />
It is a simple extension. It helps testing web applications &#8211; it quickly can wipe &#8217;session&#8217; cookie or it helps to identify cluster node in clustered environments using cookie value.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3615"><strong>Delicious Bookmarks &#8211; delicious_bookmarks-2.0.104-fx.xpi</strong></a><br />
Delicious Bookmarks is the official Firefox add-on for Delicious, the world&#8217;s leading social bookmarking service (formerly del.icio.us). It integrates your bookmarks and tags with Firefox and keeps them in sync for easy, convenient access.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/26"><strong>Download Statusbar &#8211; download_statusbar-0.9.6.3-fx.xpi</strong></a><br />
View and manage downloads from a tidy statusbar &#8211; without the download window getting in the way of your web browsing.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4510"><strong>Edit Cookies &#8211; EditCookies.xpi</strong></a><br />
Edit your cookies right in Firefox!</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1243"><strong>Extended Cookie Manager &#8211; extended_cookie_manager-0.9-fx.xpi</strong></a><br />
Easier cookie managment for Firefox</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1269"><strong>FasterFox &#8211; Fasterfox{2.0.0}.xpi</strong></a><br />
Performance and network tweaks for Firefox</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843"><strong>FireBug &#8211; firebug-1.2.1-fx.xpi</strong></a><br />
Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/6683"><strong>FireCookie &#8211; firecookie-0.6-fx.xpi</strong></a><br />
Firecookie is an extension for Firebug that makes possible to view and manage cookies in your browser</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/5791"><strong>FlagFox &#8211; flagfox-3.3.1-fx.xpi</strong></a><br />
Displays a country flag depicting the location of the current website&#8217;s server and provides quick access to detailed location and webserver information.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1579"><strong>FormFox &#8211; formfox-1.6.2-fx.xpi</strong></a><br />
Do you know where your form information is going? This extension displays the form action (the site to which the information you&#8217;ve entered is being sent.)</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2464"><strong>FoxyProxy &#8211; foxyproxy-2.8.5-fx.xpi</strong></a><br />
FoxyProxy is an advanced proxy management tool that completely replaces Firefox&#8217;s limited proxying capabilities. It offers more features than SwitchProxy, ProxyButton, QuickProxy, xyzproxy, ProxyTex, TorButton, etc.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/748"><strong>GreaseMonkey &#8211; greasemonkey-0.8.20080609.0-fx.xpi</strong></a><br />
Allows you to customize the way a webpage displays using small bits of JavaScript. Hundreds of scripts, for a wide variety of popular sites, are already available at http://userscripts.org. You can write your own scripts, too. Check out http://wiki.greasespot.net/ to get started.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3899"><strong>HackBar &#8211; hackbar-1.3.2-fx.xpi</strong></a><br />
Simple security audit / Penetration test tool.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4276"><strong>HeaderSpy &#8211; HeaderSpy{1.2.2}.xpi</strong></a><br />
Shows HTTP headers on statusbar.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/8769"><strong>Hide Navigation Bar &#8211; hide_navigation_bar-1.2-fx.xpi</strong></a><br />
This extension enables you to hide the navigation bar through a toggle button. Currently the toggle button is the F2 key. You can change the key in the extensions options, as well as configure whether you want the Navigation Bar to be displayed on an initial Firefox launch. Also allows you to enable an Auto-Hide mode if you wish to use that instead.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/6647"><strong>HttpFox &#8211; httpfox-0.8.2-fx.xpi</strong></a><br />
An HTTP analyzer addon for Firefox</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1419"><strong>IETab &#8211; ietab-1.5.20080618-addons</strong></a><br />
This is a great tool for web developers, since you can easily see how your web page displayed in IE with just one click and then switch back to Firefox.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3863"><strong>IMacros For Firefox &#8211; imacros_for_firefox-6.0.7.5-fx+mz+sm.xpi</strong></a><br />
Automate Firefox. Record and replay repetitious work. If you love the Firefox web browser, but are tired of repetitive tasks like visiting the same sites every days, filling out forms, and remembering passwords, then iMacros for Firefox is the solution you’ve been dreaming of! ***Whatever you do with Firefox, iMacros can automate it.***</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2076"><strong>JSView &#8211; jsview-2.0.5-fx+sm.xpi</strong></a><br />
ll browsers include a &#8220;View Source&#8221; option, but none of them offer the ability to view the source code of external files. Most websites store their javascripts and style sheets in external files and then link to them within a web page&#8217;s source code. Previously if you wanted to view the source code of an external javascript/stylesheet you would have to manually look through the source code to find the url and then type that into your browser.rnrnWell now there&#8217;s a much easier way.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3829"><strong>Live HTTP Headers &#8211; live_http_headers-0.14-fx+sm.xpi</strong></a><br />
View HTTP headers of a page and while browsing.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1731"><strong>Live IP Address &#8211; live_ip_address-1.82-fx.xpi</strong></a><br />
Retrieves your Live IP Address and displays it on Firefox&#8217;s status bar&#8230; Additional features: i) Easy copy of IP address to the clipboard, ii)Set update interval iii) Force update option</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4014"><strong>LocationBar &#8211; Locationbar{0.9.1}.xpi</strong></a><br />
Puts emphasis on the domain to reduce spoofing risk. Linkifies URL segments (press Ctrl, Meta, Shift or Alt). More URL formatting options configurable.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/967"><strong>Modify Headers &#8211; modify_headers-0.6.4-fx+mz+sm.xpi</strong></a><br />
Add, modify and filter http request headers. You can modify the user agent string, add headers to spoof a mobile request (e.g. x-up-calling-line-id) and much more.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/722"><strong>NoScript &#8211; noscript-1.8.1.3-fx+mz+sm.xpi</strong></a><br />
The best security you can get in a web browser!<br />
Allow active content to run only from sites you trust, and protect yourself against XSS attacks.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/636"><strong>PDF Download &#8211; pdf_download-2.0.0.0-fx.xpi</strong></a><br />
Use PDF Download to do whatever you like with PDF files on the Web. Regain control of them and eliminate browser problems, view PDFs directly in Firefox as HTML, and use the all-new Web-to-PDF toolbar to save and share Web pages as high-quality PDF files.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2691"><strong>Poster &#8211; poster-1.7.1-fx.xpi</strong></a><br />
A developer tool for interacting with web services and other web resources that lets you make HTTP requests, set the entity body, and content type. This allows you to interact with web services and inspect the results&#8230;</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/953"><strong>RefControl &#8211; refcontrol-0.8.11-fx.xpi</strong></a><br />
Control what gets sent as the HTTP Referer on a per-site basis.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/115"><strong>ReloadEvery &#8211; reloadevery-2.0-fx.xpi</strong></a><br />
Reloads web pages every so many seconds or minutes. The function is accessible via the context menu (menu you get when you right click on a web page) or via a drop down menu on the reload button</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2993"><strong>Shazou &#8211; shazou-2.1-fx.xpi</strong></a><br />
Finally mapping is integrated with the Firefox browser. The product called Shazou (pronounced Shazoo it is Japanese for mapping) enables the user with one-click to map and geo-locate any website they are currently viewing.<br />
<strong><br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/590"> ShowIP &#8211; showip-0.8.08r14b0251-fx+mz.xpi</a></strong><br />
Show the IP address(es) of the current page in the status bar. It also allows querying custom information services by IP (right mouse button) and hostname (left mouse button), like whois, netcraft. Additionally you can copy the IP address to the clipboard.</p>
<p><a href="http://securitycompass.com/exploitme.shtml"><strong>SQL Inject Me &#8211; sqlime-0.2.xpi [Doesn't Work with FF3]</strong></a><br />
SQL Injection vulnerabilites can cause a lot of damage to a web application. A malicious user can possibly view records, delete records, drop tables or gain access to your server. SQL Inject-Me is the Exploit-Me tool used to test for SQL Injection vulnerabilities.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1122"><strong>Tab Mix Plus &#8211; tab_mix_plus-dev-build.xpi</strong></a><br />
Tab Mix Plus enhances Firefox&#8217;s tab browsing capabilities. It includes such features as duplicating tabs, controlling tab focus, tab clicking options, undo closed tabs and windows, plus much more. It also includes a full-featured session manager.<br />
<strong><br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/966"> TamperData &#8211; tamper_data-10.1.0-fx.xpi</a></strong><br />
Use tamperdata to view and modify HTTP/HTTPS headers and post parameters. Trace and time http response/requests. Security test web applications by modifying POST parameters.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1813"><strong>TrashMail.net &#8211; trashmail.net-1.0.12-fx.xpi</strong></a><br />
Create free disposable email addresses and paste them directly in forms. This helps to protect you from spam mails and could be useful when subscribing to forums or newsletters</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/5081"><strong>TwitterFox &#8211; twitterfox-1.7-fx.xpi</strong></a><br />
TwitterFox is a Firefox extension that notifies you of your friends&#8217; statuses of Twitter.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/59"><strong>User Agent Switcher &#8211; user_agent_switcher-0.6.11-fx+sm.xpi</strong></a><br />
Adds a menu and a toolbar button to switch the user agent of the browser.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/60"><strong>Web Developer Toolbar &#8211; web_developer-1.1.6-fx.xpi</strong></a><br />
Adds a menu and a toolbar with various web developer tools.</p>
<p><a href="http://securitycompass.com/exploitme.shtml"><strong>XSS Inject Me &#8211; xssme-0.2.1.xpi [Doesn't Work with FF3]</strong></a><br />
Cross-Site Scripting (XSS) is a common flaw found in todays web applications. XSS flaws can cause serious damage to a web application. Detecting XSS vulnerabilities early in the development process will help protect a web application from unnecessary flaws. XSS-Me is the Exploit-Me tool used to test for reflected XSS</p>
<p>you can download them all as one big zip <a href="http://www.0x0e.net/x/firefoxPlugins09232008.zip">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hexesec.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hexesec.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hexesec.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hexesec.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hexesec.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hexesec.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hexesec.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hexesec.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hexesec.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hexesec.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hexesec.wordpress.com&blog=4149787&post=92&subd=hexesec&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hexesec.wordpress.com/2008/09/23/firefox-extensions-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7ddf41647a2dd583835558cdf11b280?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jcran</media:title>
		</media:content>
	</item>
	</channel>
</rss>