<?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>perplext.net &#187; hacks</title>
	<atom:link href="http://www.perplext.net/tag/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.perplext.net</link>
	<description>information and distractions for the completely puzzled</description>
	<lastBuildDate>Thu, 04 Feb 2010 20:06:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Axway/Tumbleweed SecureTransport Event logging tweaks</title>
		<link>http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/</link>
		<comments>http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:13:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[SecureTransport]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[logrotation]]></category>
		<category><![CDATA[shell scripting]]></category>

		<guid isPermaLink="false">http://www.perplext.net/?p=21</guid>
		<description><![CDATA[This post pertains to anyone that is administering a SecureTransport server.Â  This is a product for secure file transfers over HTTPS, SFTP, FTPS, AS2, and optionally insecured protocols such as HTTP and FTP with real-time PGP encryption/decryption.Â  With the never ceasing SSH brute force attacks among other garbage logs such as password has expired messages [...]]]></description>
			<content:encoded><![CDATA[<p>This post pertains to anyone that is administering a SecureTransport server.Â  This is a product for secure file transfers over HTTPS, SFTP, FTPS, AS2, and optionally insecured protocols such as HTTP and FTP with real-time PGP encryption/decryption.Â  With the never ceasing SSH brute force attacks among other garbage logs such as password has expired messages (152 times a minute) the logging can be pretty immense.Â  Add to that issue the fact that the search tool built into the product sucks for event log queries, we needed an alternative.Â  Here is how I achieved dumping the logs to a text file for grepping to expedite the incident reporting.</p>
<p>On the edge server</p>
<p>&lt;ST root folder&gt;/bin/cleanstdb.php</p>
<pre>&lt;?php
 $dbcnx = mysql_connect("127.0.0.1:33060", "root", "tumbleweed");
 if (!$dbcnx) {
 echo( "&lt;P&gt;Unable to connect to the " .
 "database server at this time.&lt;/P&gt;" );
 exit();
 }
 mysql_select_db("st", $dbcnx);
 if (! @mysql_select_db("st") ) {
 echo( "&lt;P&gt;Unable to locate the st " .
 "database at this time.&lt;/P&gt;" );
 exit();
 }
 $result = mysql_query("delete from logging_event where rendered_message LIKE 'SSH: Sent SSH_MSG_USERAUTH_INFO_REQUEST%';");
 if (!$result) {
 echo("&lt;P&gt;Error performing query: " .
 mysql_error() . "&lt;/P&gt;");
 exit();
 }
 $result = mysql_query("delete from logging_event where rendered_message LIKE 'FTP session starting from &lt;NAT address&gt;';");
 if (!$result) {
 echo("&lt;P&gt;Error performing query: " .
 mysql_error() . "&lt;/P&gt;");
 exit();
 }
 mysql_close($dbcnx);
?&gt;</pre>
<p>All that this PHP script does is go through all events and delete entries that have in the past filled the database to the point of filling the partition.Â  Obviously for compliance and retention you need to keep some record of these events and that is not shown in this particular example, you&#8217;ll have to add your own logic or backup the raw logs frequently enough that you have that.</p>
<p>&lt;ST root folder&gt;/bin/cleanstdb.sh</p>
<pre>#!/bin/bash
/usr/bin/php /&lt;ST root&gt;/bin/cleanstdb.php &gt; /tmp/cleanstdb.out</pre>
<p>This just runs the php script and outputs any error messages it encounters.Â  I link this script into cron.hourly to do an hourly cleaning of the database and it seems to have a tremendous impact on keeping the partition from filling.</p>
<p>The next problem to solve is exporting the valuable information from the event log database and putting it into a human readable, and greppable format.</p>
<p>&lt;ST root folder&gt;/bin/exporteventlog.php</p>
<pre>&lt;?php
 $dbcnx = mysql_connect("127.0.0.1:33060", "root", "tumbleweed");
 if (!$dbcnx) {
 echo( "&lt;P&gt;Unable to connect to the " .
 "database server at this time.&lt;/P&gt;" );
 exit();
 }
 mysql_select_db("st", $dbcnx);
 if (! @mysql_select_db("st") ) {
 echo( "&lt;P&gt;Unable to locate the st " .
 "database at this time.&lt;/P&gt;" );
 exit();
 }
 $result = mysql_query("select event_id, timestamp, rendered_message, ndc from logging_event where rendered_message NOT LIKE 'SSH: Sent SSH_MSG_USERAUTH_INFO_REQUEST%' order by timestamp;");
 if (!$result) {
 echo("&lt;P&gt;Error performing query: " .
 mysql_error() . "&lt;/P&gt;");
 exit();
 }
 while ( $row = mysql_fetch_array($result) ) {
 echo $row["event_id"] . " " . date('mdY-H:i:s', $row["timestamp"]/1000) . " " .
 $row["rendered_message"] . " " . $row["ndc"] . "\r\n";
 }
 mysql_free_result($result);
 mysql_close($dbcnx);
?&gt;</pre>
<p>&lt;ST root folder&gt;/bin/exporteventlog.sh</p>
<pre>#!/bin/bash
timestamp=`date +%Y%m%d_%H:%M:%S`
/usr/bin/php /&lt;ST root&gt;/dumpeventlog.php &gt; /&lt;Log Dir&gt;/steventlog_$timestamp.log</pre>
<p>This shell script calls the PHP script to dump the valuable fields to a text file, in my case I have this on a cron job to happen every 4 hours, as I&#8217;ve seen some attacks or warnings that have rotated the entire database within 6 hours.</p>
<p>The back-end server scripts are almost identically the same, the only difference is the database structure between an edge and back-end server differ a bit.Â  As the edge reports a lot more connection errors and attack attempts than the backend, the cleanup script isn&#8217;t required on the back-end server.</p>
<p>&lt;ST root&gt;/bin/exportxferlogs.php</p>
<pre>&lt;?php
 $dbcnx = mysql_connect("127.0.0.1:33060", "root", "tumbleweed");
 if (!$dbcnx) {
 echo( "&lt;P&gt;Unable to connect to the " .
 "database server at this time.&lt;/P&gt;" );
 exit();
 }
 mysql_select_db("st", $dbcnx);
 if (! @mysql_select_db("st") ) {
 echo( "&lt;P&gt;Unable to locate the st " .
 "database at this time.&lt;/P&gt;" );
 exit();
 }
 $result = mysql_query("select id, endTime, protocol, remoteHost, accountName, localFile, filename, filesize, status from TransferStatus order by startTime");
 if (!$result) {
 echo("&lt;P&gt;Error performing query: " .
 mysql_error() . "&lt;/P&gt;");
 exit();
 }
 while ( $row = mysql_fetch_array($result) ) {
 echo $row["id"] . " " . date('mdY-H:i:s', $row["endTime"]/1000) . " " . $row["protocol"] . " " . $row["remoteHost"] . " " . $row["accountName"] . " " .
 $row["localFile"] . " " . $row["filename"] . " " . $row["filesize"] . " " . $row["status"] . "\r\n";
 }
 mysql_free_result($result);
 mysql_close($dbcnx);
?&gt;</pre>
<p>&lt;ST root&gt;/bin/exportxferlogs.sh</p>
<pre>#!/bin/bash
timestamp=`date +%Y%m%d_%H:%M:%S`
/usr/bin/php /&lt;ST root&gt;/bin/dumplogs.php &gt; /&lt;Log Dir&gt;/stxferlog_$timestamp.log</pre>
<p>As this only logs transfers which require logging in successfully this can be cron&#8217;d to run at a less frequent schedule than the edge server.</p>
<p>Despite its event log search utility being pretty bad, SecureTransport is an extremely modifiable application that has proven to be fairly resilient.Â  In the future I might post some more hacks and scripts used to add functionality or increase its stability.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;bmtitle=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;Title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;Title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;n=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;d=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;desc=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;description=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;desc=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;link=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;type=Article&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=Link: http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;srcUrl=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;srcTitle=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;snippet=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=Link: http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;text=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac+-+http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&quot;+-+from+http://tinyurl.com/2adft2y" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;summary=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac&amp;source=perplext.net" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Axway%2FTumbleweed%20SecureTransport%20Event%20logging%20tweaks%22&amp;body=Link: http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;u_data[name]=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;bm_description=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;n=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;h=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;T=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;u=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;b=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;du=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;cn=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks+-+http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;selection=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;format=microclip&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/+&quot;Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/ %0D%0A%0D%0A This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.perplext.net%2F2009%2F07%2F09%2Faxwaytumbleweed-securetransport-event-logging-tweaks%2F&amp;t=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks+-+http://tinyurl.com/2adft2y&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;url=http%3A%2F%2Fwww.perplext.net%2F2009%2F07%2F09%2Faxwaytumbleweed-securetransport-event-logging-tweaks%2F&amp;desc=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;title=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;submitHeadline=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;submitSummary=This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks&amp;body=Link: http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20post%20pertains%20to%20anyone%20that%20is%20administering%20a%20SecureTransport%20server.%C3%82%C2%A0%20This%20is%20a%20product%20for%20secure%20file%20transfers%20over%20HTTPS%2C%20SFTP%2C%20FTPS%2C%20AS2%2C%20and%20optionally%20insecured%20protocols%20such%20as%20HTTP%20and%20FTP%20with%20real-time%20PGP%20encryption%2Fdecryption.%C3%82%C2%A0%20With%20the%20never%20ceasing%20SSH%20brute%20force%20attac" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/&amp;lname=Axway%2FTumbleweed+SecureTransport+Event+logging+tweaks" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.perplext.net/2009/07/09/axwaytumbleweed-securetransport-event-logging-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
