<?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>tanasi.it &#187; OSs and Apps</title>
	<atom:link href="http://www.tanasi.it/category/oss-and-apps/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tanasi.it</link>
	<description>Alessandro `jekil` Tanasi blog</description>
	<lastBuildDate>Fri, 02 Jul 2010 11:06:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Helpful Oracle Queries</title>
		<link>http://www.tanasi.it/1239-helpful-oracle-queries.html</link>
		<comments>http://www.tanasi.it/1239-helpful-oracle-queries.html#comments</comments>
		<pubDate>Mon, 09 Jun 2008 17:48:32 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1144</guid>
		<description><![CDATA[A list of helpful Oracle queries and tips. Returns a list of all tables (System and User)select &#42; from all_tables; Returns a list of all db_links (System and User)select &#42; from all_db_links; Returns a list of all views (System and User)select &#42; from all_views; Returns a list of all table columns (System and User)select &#42; [...]]]></description>
			<content:encoded><![CDATA[<p>A list of helpful Oracle queries and tips.</p>
<p><b>Returns a list of all tables  (System and User)</b><br />select &#42; from all_tables;</p>
<p><b>Returns a list of all db_links (System and User)</b><br />select &#42; from all_db_links;</p>
<p><b>Returns a list of all views (System and User)</b><br />select &#42; from all_views;</p>
<p><b>Returns a list of all table columns (System and User)</b><br />select &#42; from all_tab_columns;</p>
<p><b>List current sessions and do some stuff</b><br />SELECT &#42; FROM v$session s;<br />SELECT s.sid,s.serial#,s.osuser,s.username FROM v$session s;<br />ALTER SYSTEM KILL SESSION ’sid,serial#’;</p>
<p><b>Converts a number or date to a string</b><br />select to_char(INSERT_DT,’YYYY-MM-DD’) the_date<br />
from CREDIT_REPORT where<br />
CREDIT_REPORT_ID = 8000076;</p>
<p><b>Converts a string to a date</b><br />select to_date(’2007-01-30&#8242;,’YYYY-MM-DD’) the_date<br />
from CREDIT_REPORT where<br />
CREDIT_REPORT_ID = 8000076;</p>
<p><b>Substitutes a value when a null value is encountered</b><br />select NVL(supplier_city, ‘n/a’) from supplier;</p>
<p><b>The functionality of an IF-THEN-ELSE statement</b><br />SELECT supplier_name, decode(supplier_id, 10000, ‘IBM’, 10001, ‘Microsoft’, 10002, ‘Hewlett Packard’, ‘Gateway’) result<br />
FROM suppliers;</p>
<p><b>Testing for an empty BLOB</b><br />select credit_report_id, BLOB_COLUMN<br />
from CREDIT_REPORT<br />
where<br />
BLOB_COLUMN is not null and dbms_lob.getLength(BLOB_COLUMN) &gt; 0;</p>
<p><b>Converting BLOB to VARCHAR</b><br />select<br />
utl_raw.cast_to_varchar2(dbms_lob.substr(BLOB_COLUMN, dbms_lob.getLength(BLOB_COLUMN), 1)) BLOB_AS_VARCHAR<br />
from<br />
CREDIT_REPORT<br />
where<br />
CREDIT_REPORT_ID = 8000056;</p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1076-oracle-forensics.html" title="Oracle Forensics">Oracle Forensics</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1239-helpful-oracle-queries.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla port banning</title>
		<link>http://www.tanasi.it/1235-mozilla-port-banning.html</link>
		<comments>http://www.tanasi.it/1235-mozilla-port-banning.html#comments</comments>
		<pubDate>Mon, 02 Jun 2008 23:06:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[port banning]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1141</guid>
		<description><![CDATA[Using a specially crafted HTML page, an attacker can trick a browser displaying this HTML page into accessing SMTP, NNTP, POP3, IRC, or other servers, possibly behind a firewall. Cert issued a Vulnerability Note VU#476267 for a &#34;Cross-Protocol&#34; scripting attack, known as the HTML Form Protocol Attack which allowed sending arbitrary data to most TCP [...]]]></description>
			<content:encoded><![CDATA[<p>Using a specially crafted HTML page, an attacker can trick a browser displaying this HTML page into accessing SMTP, NNTP, POP3, IRC, or other servers, possibly behind a firewall.</p>
<p>Cert issued a<br />
    <a href="http://www.kb.cert.org/vuls/id/476267">Vulnerability Note VU#476267</a><br />
    for a &quot;Cross-Protocol&quot; scripting attack, known as the <a href="http://www.remote.org/jochen/sec/hfpa/index.html">HTML<br />
      Form Protocol Attack</a> which allowed sending arbitrary data to most TCP ports.<br />
    A simple exploit of this hole allows an attacker to send forged unsigned mail through<br />
a mail server behind your firewall: A really nasty hole.
</p>
<p>I found the list of ports blocked by Mozilla here: <a href="http://www.mozilla.org/projects/netlib/PortBanning.html">http://www.mozilla.org/projects/netlib/PortBanning.html</a></p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1254-a-browser-as-web-hacking-platform.html" title="A browser as web hacking platform">A browser as web hacking platform</a></li><li><a href="http://www.tanasi.it/1118-how-to-create-firefox-extensions.html" title="How to create Firefox extensions">How to create Firefox extensions</a></li><li><a href="http://www.tanasi.it/1053-useful-firefox-security-extensions.html" title="Useful Firefox Security Extensions">Useful Firefox Security Extensions</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1235-mozilla-port-banning.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon SimpleDB</title>
		<link>http://www.tanasi.it/1172-amazon-simpledb.html</link>
		<comments>http://www.tanasi.it/1172-amazon-simpledb.html#comments</comments>
		<pubDate>Sat, 15 Dec 2007 23:58:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[simpledb]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1090</guid>
		<description><![CDATA[Amazon SimpleDB is a web service for running queries on structured data in real time. This service works in close conjunction with Amazon Simple Storage Service (Amazon S3) and Amazon Elastic Compute Cloud (Amazon EC2), collectively providing the ability to store, process and query data sets in the cloud. These services are designed to make [...]]]></description>
			<content:encoded><![CDATA[<p><i><b>Amazon SimpleDB</b> is a web service for running <b>queries</b> on structured<br />
data in <b>real time</b>. This service works in close conjunction with Amazon<br />
Simple Storage Service (Amazon S3) and Amazon Elastic Compute Cloud<br />
(Amazon EC2), collectively providing the ability to store, process and<br />
query data sets in the cloud. These services are designed to make<br />
web-scale computing easier and more cost-effective for developers.</i></p>
<p>Another enterprise level service from Amazon.</p>
<p>Links:
<ul>
<li><a href="http://www.amazon.com/gp/browse.html?node=342335011">Amazon SimpleDB™- Limited Beta</a></li>
<li><a href="http://www.satine.org/archives/2007/12/13/amazon-simpledb/">What You Need To Know About Amazon SimpleDB</a></li>
<li><a href="http://www.techcrunch.com/2007/12/14/amazon-takes-on-oracle-and-ibm-with-simple-db-beta/" title="Permanent Link to Amazon Takes on Oracle and IBM With SimpleDB">Amazon Takes on Oracle and IBM With SimpleDB</a></li>
<li><a href="http://radar.oreilly.com/archives/2007/12/amazon_launches.html">Amazon Launches SimpleDB: Your Database in the Cloud</a></li>
<li><a href="http://gigaom.com/2007/12/14/amazon-simple-db/">Amazon SimpleDB 101 &amp; Why It Matters</a></li>
</ul>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://www.tanasi.it/471-lol-ho-visto-cose.html" title="Lol: Ho visto cose">Lol: Ho visto cose</a></li><li><a href="http://www.tanasi.it/1197-fineco-una-bizzarra-password-policy.html" title="Fineco: una bizzarra password policy">Fineco: una bizzarra password policy</a></li><li><a href="http://www.tanasi.it/1245-cinema-lultima-missione.html" title="Cinema: L&#8217;ultima missione">Cinema: L&#8217;ultima missione</a></li><li><a href="http://www.tanasi.it/531-lol-deformazione-professionale.html" title="Lol: Deformazione professionale">Lol: Deformazione professionale</a></li><li><a href="http://www.tanasi.it/1045-building-a-wardriving-bot.html" title="Building a Wardriving Bot">Building a Wardriving Bot</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1172-amazon-simpledb.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maltego Gui</title>
		<link>http://www.tanasi.it/1164-maltego-gui.html</link>
		<comments>http://www.tanasi.it/1164-maltego-gui.html#comments</comments>
		<pubDate>Mon, 03 Dec 2007 22:05:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[information gathering]]></category>
		<category><![CDATA[intelligence]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1083</guid>
		<description><![CDATA[Security guys spend a lot of time on reporting and usually all people hate wasting time reporting.Feed Maltego GUI your reports and get back a standard report in the template of your choosing. All cross-referencing with CVE, CVSS, BID, NIST, etc. should be automagic. Relevant references should be automatically inserted (links to patches, standards, etc.)This [...]]]></description>
			<content:encoded><![CDATA[<p>Security guys spend a lot of time on reporting and usually all people hate wasting time reporting.<br />Feed Maltego GUI your reports and get back a standard report in the template of your choosing. <br />All cross-referencing with CVE, CVSS, BID, NIST, etc. should be automagic. Relevant references should be automatically inserted (links to patches, standards, etc.)<br />This tool is great for information gathering and open source intelligence.</p>
<p><font face="courier new,courier,monospace">Maltego is a program that can be used to determine the relationships and real world links between:<br />People, Groups of people (social networks), Companies, Organizations, Web sites<br />Internet infrastructure such as:<br />Domains, DNS names, Netblocks, IP addresses <br />AND Phrases, Affiliations, Documents and files</p>
<p><a href="http://www.paterva.com/web2/maltego/maltego-2.html">http://www.paterva.com/web2/maltego/maltego-2.html</a></font></p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1779-spionaggio-basato-sul-viagra.html" title="Spionaggio basato sul Viagra">Spionaggio basato sul Viagra</a></li><li><a href="http://www.tanasi.it/1488-come-spiare-un-cellulare-per-intercettare-chiamate-e-sms.html" title="Come spiare un cellulare per intercettare chiamate e SMS">Come spiare un cellulare per intercettare chiamate e SMS</a></li><li><a href="http://www.tanasi.it/1263-cinema-agente-smart-casino-totale.html" title="Cinema: Agente Smart &#8211; Casino Totale">Cinema: Agente Smart &#8211; Casino Totale</a></li><li><a href="http://www.tanasi.it/1135-cinema-the-good-sheperd.html" title="Cinema: The good sheperd">Cinema: The good sheperd</a></li><li><a href="http://www.tanasi.it/1061-attivita-del-cesis-a-tutela-delle-informazioni.html" title="Attivita` del CESIS a tutela delle informazioni">Attivita` del CESIS a tutela delle informazioni</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1164-maltego-gui.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSocial: a new Google API</title>
		<link>http://www.tanasi.it/1144-opensocial-a-new-google-api.html</link>
		<comments>http://www.tanasi.it/1144-opensocial-a-new-google-api.html#comments</comments>
		<pubDate>Sat, 03 Nov 2007 15:49:41 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[opensocial]]></category>
		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1068</guid>
		<description><![CDATA[The new project, called OpenSocial, goes well beyond what we’ve previously reported. It is a set of common APIs that application developers can use to create applications that work on any social networks (called “hosts”) that choose to participate. What they haven’t done is launch yet another social network platform. As more and more of [...]]]></description>
			<content:encoded><![CDATA[<p>The new project, called <a href="http://code.google.com/apis/opensocial" onclick="javascript:urchinTracker ('/outbound/code.google.com');">OpenSocial</a>, goes well beyond what we’ve previously<br />
reported. It is a set of common APIs that application developers can<br />
use to create applications that work on any social networks (called<br />
“hosts”) that choose to participate.</p>
<p>What they haven’t done is launch <a href="http://www.techcrunch.com/2007/05/24/facebook-launches-facebook-platform-they-are-the-anti-myspace/">yet</a> <a href="http://www.techcrunch.com/2007/10/17/counterstrike-murdoch-dewolfe-annouce-myspace-platform-and-new-privacy-controls/">another</a> <a href="http://www.techcrunch.com/2007/10/24/friendster-announces-developer-platform-can-you-say-commodity/">social</a> <a href="http://www.techcrunch.com/2007/10/29/meebo-platform-launches-with-big-san-francisco-party/">network</a><br />
platform. As more and more of these platforms launch, developers have<br />
difficult choices to make. There are costs associated with writing and<br />
maintaining applications for these social networks. Most developers<br />
will choose one or two platforms and ignore the rest, based on a simple<br />
cost/benefit analysis.</p>
<p>Google wants to create an easy way for developers to create an<br />
application that works on all social networks. And if they pull it off,<br />
they’ll be in the center, controlling the network.</p>
<p>The question is: this interesting news must be flaggeg &quot;A new Web2.0 cutting edge<br />
service from Google&quot; or &quot;The big brother Google become more powerful<br />
and acquire new weapons to attack our privary.&quot;</p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1816-hanno-rotto-google-perche-una-spiegazione-tecnica.html" title="Hanno rotto Google, perchè? Una spiegazione tecnica.">Hanno rotto Google, perchè? Una spiegazione tecnica.</a></li><li><a href="http://www.tanasi.it/1769-inside-google.html" title="Inside Google">Inside Google</a></li><li><a href="http://www.tanasi.it/1226-googlebot-compilera-le-form.html" title="GoogleBot compilera` le form">GoogleBot compilera` le form</a></li><li><a href="http://www.tanasi.it/18-google-suggest.html" title="Google suggest">Google suggest</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1144-opensocial-a-new-google-api.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must Have SEO Firefox Extensions</title>
		<link>http://www.tanasi.it/1126-must-have-seo-firefox-extensions.html</link>
		<comments>http://www.tanasi.it/1126-must-have-seo-firefox-extensions.html#comments</comments>
		<pubDate>Sat, 13 Oct 2007 13:22:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[firefox extension]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo extension]]></category>
		<category><![CDATA[seo firefox]]></category>
		<category><![CDATA[seo plugin]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1051</guid>
		<description><![CDATA[Firebug - With this helpful little add-on, you can tweak and monitor CSS, inspect and edit HTML, debug, visualize CSS metrics, monitor your network and also make changes in JavaScript live in any web page Google Global Firefox Extension - As results for Google differ from one country to another, results become limited. The end [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li><strong>Firebug -</strong> With this helpful little add-on, you<br />
can tweak and monitor CSS, inspect and edit HTML, debug, visualize CSS<br />
metrics, monitor your network and also make changes in JavaScript live<br />
in any web page</li>
<li><strong>Google Global Firefox Extension -</strong> As results for Google differ from one country to another, results become limited. The end to this problem is Google Global.<br />
Global is an unobtrusive Firefox extension that allows you to see<br />
what the Google search results that you are viewing, look like from<br />
different geographical locations. This is very useful if you want to<br />
compare organic search results in different countries or if you want to<br />
see how your AdWords PPC campaigns appear in different regions. With<br />
Google Global, you can change depending on your personal browsing<br />
habits. You can open the search results in a new tab, useful for<br />
comparing results, you can add as many countries to your Google Global<br />
search options and you can also depersonalize the search results shown<br />
by Google Global</li>
<li><strong>Google Webmaster Tools External links ++ -</strong> With<br />
Google Webmaster Tools External links ++ you can check the PR of the<br />
pages linking to you and the anchor text used on the link. This<br />
Greasemonkey script determines PR for the link through an XML HTTP<br />
request and adding it in front of the link. You need to have <span style="text-decoration: underline;">Google Webmaster Central</span> Account and the site added and verified in it. If the link is found, and it&#8217;s normal, the PageRank and anchor text is displayed in black, with the anchor text within quotes.</p>
<ul>
<li>If the link has rel=&#8221;nofollow&#8221; on it, the info is made orange and striked through.</li>
<li>If the link is not found the info is made red, and the text &#8220;Link not found&#8221; is added.</li>
<li>If the link is an image link, the text &#8220;img, alt:&#8221; with the alt text is added. Since v1.1</li>
<li>If a single frame is encountered, the script opens it and tries that for the link, matching Google&#8217;s behavior. Since v1.1</li>
<li>URL&#8217;s without www are now properly recognized as well.</li>
</ul>
</li>
<li><strong>LinkChecker -</strong> With LinkChecker, you can check<br />
webpage links at a glance with simple color coding. Ditch those massive<br />
listings of bad links that provide no context and add LinkChecker to<br />
your arsenal of web development tools today. The best thing about this<br />
extension is that the creator, Kevin Freitas is constantly developing<br />
it and some of the expected upcoming features are:</p>
<ul>
<li>Sidebar with broken link summary list anchored to bad links</li>
<li>Link duplication checking/count</li>
<li>Options dialog to set timeout, color, skip criteria, right-click menu visibility, and other settings</li>
<li>More detailed or SVG progress pie chart</li>
<li>Easy bookmark link checking (currently achieved by finding your<br />
bookmarks.html file on your computer, loading it in Firefox, then<br />
running LinkChecker — not exactly ideal, is it?)</li>
<li>Abilty to remove or &#8220;turn off&#8221; LinkChecker colors after check is complete</li>
<li>Option time delay each link checked so script not seen as robot</li>
</ul>
</li>
<li><strong>RankQuest SEO Toolbar -</strong> RankQuest SEO(Search<br />
Engine Optimization) Toolbar provides you quick access to more than 30<br />
intuitive SEO tools. Alexa Rank and Page Rank provided by Alexa and<br />
Google respectively ensures the popularity of the site. Once you<br />
download and install the SEO Toolbar you are only one or two clicks<br />
away from carrying out most of your day to day SEO operations.<br />
available in Japanese, Italian, Polish, Spanish, Swedish, German,<br />
Dutch, French and Chinese languages.</li>
<li><strong>SearchStatus -</strong> Display the Google PageRank,<br />
Alexa rank and Compete ranking anywhere in your browser, along with<br />
fast keyword density analyser, keyword/nofollow highlighting,<br />
backward/related links, Alexa info and other SEO tools. In simple<br />
words, you can check how any website, no matter where in the world, is<br />
performing. With SearchStatus, for every site you visit, you can view<br />
its:</p>
<ul>
<li>Google PageRank</li>
<li>Google Category</li>
<li>Alexa popularity ranking</li>
<li>Compete.com ranking</li>
<li>Alexa incoming links</li>
<li>Alexa related links</li>
<li>Backward links from Google, Yahoo! and MSN</li>
</ul>
</li>
<li><strong>SEOpen -</strong> Provides some basic tools to help with<br />
search engine optimization. Including google backlinks, yahoo<br />
backlinks, PageRank check, http header viewer, and more. All features<br />
are available by right-clicking on an open area of a web page, or by<br />
using the included toolbar.<br />
Highlights of SEOpen 0.8 are:</p>
<ul>
<li>Yahoo Backlinks</li>
<li>Pages in Yahoo Index</li>
<li>Google Backlinks</li>
<li>Google Cache</li>
<li>Pages in Google index</li>
<li>Google Translate to English</li>
<li>Google Related</li>
<li>PageRank Check</li>
<li>MSN Backlinks</li>
<li>Pages in MSN Index</li>
<li>Alexa Overview</li>
<li>Alexa Traffic</li>
<li>Alexa Related</li>
<li>Alexa Backlinks</li>
<li>&#8220;Mass Check&#8221; multiple sources at once</li>
<li>Check DMOZ Inclusion</li>
<li>Keyword Density</li>
<li>Page Size Checker</li>
<li>HTML Validator</li>
<li>Server Header Viewer</li>
<li>Wayback Machine</li>
<li>Check robots.txt</li>
<li>Whois Info</li>
</ul>
</li>
<li><strong>Server spy -</strong> Server Spy indicates what brand of<br />
HTTP server (eg. Apache, IIS, etc.) runs on the visited sites. When a<br />
tab is selected, the corresponding server name is shown on the<br />
right-hand side of the browser&#8217;s status bar</li>
<li><strong> Web Developer extension -</strong> The Web Developer extension<br />
adds a menu and a toolbar to the browser with various web developer<br />
tools. It is designed for Firefox, Flock, Mozilla and Seamonkey, and<br />
will run on any platform that these browsers support including Windows,<br />
Mac OS X and Linux.</li>
<li><strong>X-Ray -</strong> With X-Ray, without viewing the<br />
sourcecode, you can see the tags on a page. One installed the X-Ray<br />
command is available by right-clicking as well as in the Tools menu.<br />
When applied to a page it can help you see how the document was<br />
constructed without having to go back and forth between the sourcecode<br />
and the page in your browser. Is that list made of li, dd or p<br />
elements? Is that an h3 tag or just some bolded text? X-Ray shows you<br />
what&#8217;s beneath the surface of the page.</li>
</ol>
<ul class="related_post"><li><a href="http://www.tanasi.it/1837-sviluppo-ruby-on-rails-orientato-seo.html" title="Sviluppo Ruby on Rails orientato SEO">Sviluppo Ruby on Rails orientato SEO</a></li><li><a href="http://www.tanasi.it/1254-a-browser-as-web-hacking-platform.html" title="A browser as web hacking platform">A browser as web hacking platform</a></li><li><a href="http://www.tanasi.it/1118-how-to-create-firefox-extensions.html" title="How to create Firefox extensions">How to create Firefox extensions</a></li><li><a href="http://www.tanasi.it/1103-seo-for-wordpress.html" title="SEO for Wordpress">SEO for Wordpress</a></li><li><a href="http://www.tanasi.it/1104-a-list-of-seo-plugins-for-wordpress.html" title="A list of SEO plugins for Wordpress">A list of SEO plugins for Wordpress</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1126-must-have-seo-firefox-extensions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qipit &#8211; free mobile online copy service</title>
		<link>http://www.tanasi.it/1111-qipit-free-mobile-online-copy-service.html</link>
		<comments>http://www.tanasi.it/1111-qipit-free-mobile-online-copy-service.html#comments</comments>
		<pubDate>Sat, 29 Sep 2007 21:06:20 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[copy service]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1038</guid>
		<description><![CDATA[Take a picture of a document with your camera phone. Send the picture from your phone or via email to copy@qipit.com. You&#8217;ll receive a link to the online digital copy of your document (PDF). All for free. This sevice can: Turn documents, notes and whiteboards into digital copies (PDFs) Email or fax qipit digital copies [...]]]></description>
			<content:encoded><![CDATA[<p>Take a picture of a document with your camera phone. Send the picture from your phone or via email to copy@qipit.com. You&#8217;ll receive a link to the online digital copy of your document (PDF). All for free. This sevice can:</p>
<ul>
<li>Turn <a href="http://www.qipit.com/pub/printed-documents">documents</a>, <a href="http://www.qipit.com/pub/hand-notes">notes</a> and <a href="http://www.qipit.com/pub/white-board">whiteboards</a> into digital copies (PDFs)</li>
<li><a href="http://www.qipit.com/pub/fax">Email or fax</a> qipit digital copies via email, your online Qipit account, or right from your phone</li>
<li><a href="http://www.qipit.com/pub/copy">Store</a> all of your paper documents and notes as digital documents for easy archiving and sharing</li>
<li><a href="http://blog.qipit.com/2007/04/16/tag-your-qipit-documents/">Tag</a> your qipit documents for easy searching and sorting</li>
<li><a href="http://www.qipit.com/pub/publish">Publish and share</a> your documents on the web</li>
</ul>
<p>If you want to test this service: <a href="http://www.qipit.com/">Qipit</a></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://www.tanasi.it/1254-a-browser-as-web-hacking-platform.html" title="A browser as web hacking platform">A browser as web hacking platform</a></li><li><a href="http://www.tanasi.it/1188-penetration-testing-tools.html" title="Penetration Testing Tools">Penetration Testing Tools</a></li><li><a href="http://www.tanasi.it/309-lol-be-a-sysadmin.html" title="Lol: Be a Sysadmin">Lol: Be a Sysadmin</a></li><li><a href="http://www.tanasi.it/304-cinema-cruel-intentions.html" title="Cinema: Cruel Intentions">Cinema: Cruel Intentions</a></li><li><a href="http://www.tanasi.it/941-allinstall-party.html" title="All&#8217;install party">All&#8217;install party</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1111-qipit-free-mobile-online-copy-service.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A list of SEO plugins for WordPress</title>
		<link>http://www.tanasi.it/1104-a-list-of-seo-plugins-for-wordpress.html</link>
		<comments>http://www.tanasi.it/1104-a-list-of-seo-plugins-for-wordpress.html#comments</comments>
		<pubDate>Wed, 26 Sep 2007 00:38:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1034</guid>
		<description><![CDATA[Akismet &#8211; This one actually comes with wordpress you only need to get a liscence to activate it. Unless you have need for spam in your blog this is one the most effective tools for stopping it. Very little actually gets through and very little gets flagged as a false positive. Dagon Design Sitemap Generator [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://akismet.com/">Akismet</a></strong> &#8211; This one actually comes with wordpress you only need to get a liscence to<br />
activate it. Unless you have need for spam in your blog this is one the<br />
most effective tools for stopping it. Very little actually gets through<br />
and very little gets flagged as a false positive.<br />
<strong><a href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/">Dagon Design Sitemap Generator</a></strong><br />
- Let&#8217;s be honest once you&#8217;ve got a site over 50 pages maintaining a<br />
sitemap by hand is tedious and inefficient. This plugin has quite a few<br />
options and takes care of all the grunt work for you.<br />
<strong><a href="http://imthi.com/organizer/">Organizer</a></strong><br />
- This plugin allows you to create and upload files from the web<br />
browser without having to fire up your FTP program. It&#8217;s especially<br />
helpful on blogs with multiple users who aren&#8217;t tech savvy. The only<br />
downside is if they don&#8217;t know the rules things can get messy and<br />
disorgainzed very quickly.<br />
<strong><a href="http://orderedlist.com/articles/wordpress-feedburner-plugin/">Feedburner Replacement Plugin</a></strong> &#8211; Let&#8217;s you keep your feedburner feed on your domain.<br />
<strong><a href="http://wordpress-plugins.biggnuts.com/objection-redirection-wordpress-plugin/">Objection Redirection</a></strong><br />
- This plugin by Dax is one of the most powerful and useful plugins I<br />
use. It let&#8217;s you redirect old and broken url&#8217;s to clean and fresh<br />
url&#8217;s without you having to touch an htaccess file.<br />
<strong><a href="http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final">Google Sitemaps</a></strong> The Google Sitemaps<br />
Webmaster Central program by Google is absolutely one of the most<br />
helpful things Google has ever put out. If you are fixing your own site<br />
or someone else&#8217;s there&#8217;s no better way to figure out what a search<br />
engine thinks about your site. This plugin updates and rebuilds the XML<br />
file everytime you make a new post and ping&#8217;s google to tell them about<br />
it. It&#8217;s especially helpful if you publish on a predetermined schedule.<br />
Warning make sure you have the file permissions set correctly or this<br />
won&#8217;t work properly.<br />
<strong><a href="http://www.skippy.net/blog/plugins/">WordPress Database Backup</a></strong><br />
- If there is one wordpress plugin you absolutely need this is it. It<br />
gives you the ability to backup the core database tables and any other<br />
tables you specify. The backups happen on demand or on a nightly<br />
schedule. While it might be against TOS what I do is set up a dedicated<br />
gmail account for each wordpress blog. I then set this plugin to backup<br />
the tables every night and email the file to a gmail account. Viola a<br />
free daily incremental offsite backup.<br />
<strong><a href="http://fucoder.com/code/permalink-redirect/">Permalink Redirect</a></strong> &#8211; In the event <a href="http://www.wolf-howl.com/seo/duplicate-content-wordpress-blog/">some wise guy tries to mess up your blog</a> this keeps things neat and tidy.<br />
<strong><a href="http://randomfrequency.net/wordpress/search-pages/">Search Pages</a></strong><br />
- This plugin ties the built in search function in wordpress to the<br />
pages. The default installation only searches blog posts. This is an<br />
absolute neccesity if you are using wordpress as a CMS and not a<br />
blogging tool.<br />
<strong><a href="http://www.thunderguy.com/semicolon/wordpress/search-meter-wordpress-plugin/">Search Meter</a></strong><br />
- Looking at search logs to find out who&#8217;s searching for what can be a<br />
valuable tool for figuring out what&#8217;s right and what&#8217;s wrong on your<br />
site.<br />
<strong><a href="http://www.semiologic.com/software/static-front/">Static Homepage</a></strong> &#8211; If you want to use wordpres as a CMS instead of a blog this plugin makes the homepage magic happen.<br />
<strong><a href="http://redalt.com/downloads/">Adhesive</a></strong> &#8211; Allows you to stick a posting to the top overriding the standard chronological order of things.<br />
<strong><a href="http://www.acmetech.com/blog/adsense-deluxe/">Adsense Deluxe</a></strong> &#8211; A powerful way to control adsense from a master level on your blog.<br />
<strong><a href="http://wordpress-plugins.biggnuts.com/adsense-plugin/">Adsense Injection</a></strong><br />
- Another Dax special that randomly inserts Adsense somewhere in each<br />
posting. Not advisable for the control freaks, definitely advisable for<br />
sites with lots of returning readers who don&#8217;t normally click on<br />
Adsense.<br />
<strong><a href="http://dev.wp-plugins.org/wiki/BunnysTechnoratiTags">Bunny&#8217;s Technorati Tags</a></strong> &#8211; A simple and easy interface for tagging in each blog post.<br />
<strong><a href="http://jp.jixor.com/plugins/bread-crumb-trail/">Bread Crumb Trail Generator</a></strong> &#8211; A little tricky to configure but very useful once you do. Especially nice when used on a static website.<br />
<strong><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Feed Copyrighter</a></strong> &#8211; Let&#8217;s you add copyright info to your feed. Makes it easy to track and follow scrapers.<br />
<strong><a href="http://mtdewvirus.com/code/wordpress-plugins/">Moderate Trackbacks</a></strong> &#8211; Not used as much as it once was Akismet catches most of the spam, but I keep it around as a backup.<br />
<strong><a href="http://www.economysizegeek.com/?page_id=395">Postie</a></strong><br />
- A very powerful tool if you do remote posting via email. Takes a<br />
little tinkering to get it set up right but once you do it&#8217;s hands off.<br />
Combine with cronless postie for regular automated checking.<br />
<strong><a href="http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/">Related Posts</a></strong> &#8211; Automagically creates a list of related posts.<br />
<strong><a href="http://mtdewvirus.com/code/wordpress-plugins/">Recent Posts and Recent Comments</a></strong> &#8211; Shockingly these two plugins give you a list of recent posts and recent comments, go figure.<br />
<strong><a href="http://tantannoodles.com/toolkit/photo-album/">Flickr Photosets</a></strong><br />
- If you are doing anything with flickr this plugin kicks ass letting<br />
you tie it into your wordpress bog. Especially nice if you&#8217;ve upgraded<br />
to flickr pro and have multiple albums, <a href="http://delicious.wolf-howl.com/flickr/">see an example</a>.<br />
<strong><a href="http://weblogtoolscollection.com/archives/2005/03/14/top-10-plugin/">Top 10 Posts</a></strong> &#8211; gives you the top 10 posts by views, very hackable see my <a href="http://www.wolf-howl.com/information/top-100/">top 100 posts</a> for an example.<br />
<strong><a href="http://www.skippy.net/blog/plugins/">WP Cron</a></strong><br />
- Makes all sorts of wordpress housekeeping features happen<br />
automagically. Just be sure to activate the main plugin first before<br />
any of the others or things may not work properly.<br />
<strong><a href="http://mattread.com/projects/wp-plugins/wp-admin-bar/">WP &#8211; Admin Bar</a></strong> &#8211; Puts a really nice navigation bar up for users who are logged in.<br />
<strong><a href="http://ryanduff.net/projects/wp-contactform/">WP Contact Form</a></strong> &#8211; A very simple no frills contact form.<br />
<strong><a href="http://www.homelandstupidity.us/software/bad-behavior/">Bad Behavior</a></strong><br />
- Does a really good job at keeping out robot scrappers. Also does an<br />
excellent job at blocking people who have their user agent set as bot.<br />
Also does an amazing job of blocking bots that you may want to let in.<br />
Not very configurable.<br />
<strong><a href="http://mattread.com/projects/wp-plugins/custom-query-string-plugin/">Custom Query String</a></strong> &#8211; Let&#8217;s you set the number of posts to appear in a category or monthly archive page. Can result in some really huge files.<br />
<strong><a href="http://wordpress-plugins.biggnuts.com/wordpress-subdomains-plugin/">Subdomains by Category</a></strong> &#8211; Very cool but also dangerous if you don&#8217;t know what the heck you are doing.</p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1103-seo-for-wordpress.html" title="SEO for Wordpress">SEO for Wordpress</a></li><li><a href="http://www.tanasi.it/1837-sviluppo-ruby-on-rails-orientato-seo.html" title="Sviluppo Ruby on Rails orientato SEO">Sviluppo Ruby on Rails orientato SEO</a></li><li><a href="http://www.tanasi.it/1417-come-scrivere-un-plugin-per-wordpress.html" title="Come scrivere un plugin per Wordpress">Come scrivere un plugin per Wordpress</a></li><li><a href="http://www.tanasi.it/1126-must-have-seo-firefox-extensions.html" title="Must Have SEO Firefox Extensions">Must Have SEO Firefox Extensions</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1104-a-list-of-seo-plugins-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Torvalds about GIT</title>
		<link>http://www.tanasi.it/1070-torvalds-about-git.html</link>
		<comments>http://www.tanasi.it/1070-torvalds-about-git.html#comments</comments>
		<pubDate>Tue, 21 Aug 2007 18:46:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[torvalds]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1006</guid>
		<description><![CDATA[A Google Tech talk about GIT (and shit about SVN). Random PostsLol: Colazione l33tCinema: La Mummia 3Laptop tricks: how to survive with your laptopAddirittura &#8230; ?Greylisting]]></description>
			<content:encoded><![CDATA[<p>A Google Tech talk about GIT (and shit about SVN).</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/4XpnKHJAok8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/4XpnKHJAok8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://www.tanasi.it/308-cinema-la-pantera-rosa.html" title="Cinema: La Pantera Rosa">Cinema: La Pantera Rosa</a></li><li><a href="http://www.tanasi.it/646-lol-uso-corretto-dei-post-it.html" title="Lol: Uso corretto dei post-it">Lol: Uso corretto dei post-it</a></li><li><a href="http://www.tanasi.it/895-lol-php.html" title="Lol: PHP">Lol: PHP</a></li><li><a href="http://www.tanasi.it/477-semifinale-italia-germania.html" title="Semifinale Italia-Germania">Semifinale Italia-Germania</a></li><li><a href="http://www.tanasi.it/1127-carta-regionale-dei-servizi-del-fvg-egemonia-windows.html" title="Carta Regionale dei Servizi del FVG: egemonia Windows">Carta Regionale dei Servizi del FVG: egemonia Windows</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1070-torvalds-about-git.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The down of Skype</title>
		<link>http://www.tanasi.it/1069-the-down-of-skype.html</link>
		<comments>http://www.tanasi.it/1069-the-down-of-skype.html#comments</comments>
		<pubDate>Sat, 18 Aug 2007 16:47:00 +0000</pubDate>
		<dc:creator>jekil</dc:creator>
				<category><![CDATA[In English]]></category>
		<category><![CDATA[OSs and Apps]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[DoS]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[skype DoS]]></category>
		<category><![CDATA[skype outage]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1010</guid>
		<description><![CDATA[As you can see in this and this graphs in the past days there is an outage of Skype.The facts are: There was e big Skype outage A Sype DoS exploit is published Skype released a new upstream version Skype said that the outage is not caused by a DoS attack, but like a big [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see in <a href="http://www.85qm.de/up/skype_user_online_200708_1600_large.jpg">this</a> and <a href="http://www.85qm.de/up/skype_user_online_20070816_17_1750_large.jpg">this</a> graphs in the past days there is an <b>outage of Skype</b>.<br />The facts are:
<ol>
<li>There was e <b>big Skype outage</b></li>
<li>A <a href="http://en.securitylab.ru/poc/301420.php">Sype DoS exploit is published</a> </li>
<li>Skype released a <b>new upstream</b> version</li>
</ol>
<p>Skype said that the outage is not caused by a <b>DoS attack</b>, but like a big company do, said that was a <a href="http://heartbeat.skype.com/2007/08/problems_with_skype_login.html">software issue</a>.<br />I think that the exploit published is a <b>fake</b>, because for me don&#8217;t work, and other have documented this <a href="http://www.ush.it/2007/08/18/why-the-skype-0day-exploit-is-a-fake/">here</a>.<br />Another glance through <a href="http://www.recon.cx/en/f/vskype-part2.pdf">Desclaux and Kortchinsky</a> suggests, in addition to traffic from clients to login servers, Skype<br />
generates a lot of traffic between the login servers and supernodes (see slide 16 for example).  This makes the login servers a doubly critical piece of Skype infrastructure.  Of course, if they merely introduced a bug in their login servers, it shouldn&#8217;t take 12-24 hours to do a roll back.<br />So this outage can be caused by a Sype network or Skype server issue.<br />Another good point is that this week a <a href="http://www.snort.org/pub-bin/snortnews.cgi#681">Snort Skype preprocessor</a> was published.<br />But no one out of Skype known the truth.</p>
<ul class="related_post"><li><a href="http://www.tanasi.it/1227-come-skype-oltrepassa-i-firewall.html" title="Come Skype oltrepassa i firewall">Come Skype oltrepassa i firewall</a></li><li><a href="http://www.tanasi.it/10-skype.html" title="skype">skype</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.tanasi.it/1069-the-down-of-skype.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
