<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: MyStickies Goes Live</title>
	<atom:link href="http://jacwright.com/blog/50/mystickies-live/feed/" rel="self" type="application/rss+xml" />
	<link>http://jacwright.com/blog/50/mystickies-live/</link>
	<description>Flex, AIR, PHP, etc.</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:05:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Robert</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-1730</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Fri, 09 Feb 2007 00:24:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-1730</guid>
		<description>It would be so much cooler if you had titled and collapsible stickies (so that you only saw the title)!</description>
		<content:encoded><![CDATA[<p>It would be so much cooler if you had titled and collapsible stickies (so that you only saw the title)!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S.</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-1255</link>
		<dc:creator>S.</dc:creator>
		<pubDate>Sat, 02 Dec 2006 01:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-1255</guid>
		<description>I love the stickies. They&#039;re awesome!</description>
		<content:encoded><![CDATA[<p>I love the stickies. They&#8217;re awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Software &#187; MyStickies Goes Live</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-1002</link>
		<dc:creator>Software &#187; MyStickies Goes Live</dc:creator>
		<pubDate>Sat, 02 Sep 2006 12:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-1002</guid>
		<description>[...] Future features include sharing notes with friends and creating public notes.read more&#160;&#124;&#160;digg story [...]</description>
		<content:encoded><![CDATA[<p>[...] Future features include sharing notes with friends and creating public notes.read more&nbsp;|&nbsp;digg story [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yokhannan</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-175</link>
		<dc:creator>Yokhannan</dc:creator>
		<pubDate>Mon, 20 Feb 2006 13:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-175</guid>
		<description>Might we suggest you double md5() account passwords.

At the moment you are sending user=username&amp;password=md5(password) over a non-secure connection (http) - obviously no way around this, so you should really be doing something a bit more secure then a single md5() encryption technique.

You should also serious consider a bit of security on your end to defeat middle-man packet stream captures. A good start to this would be the detection of certain key variable names (sid, username, password, phpsession, etc, etc) from the http_referral. As it is, any (ignorant/newbiew) programmer who uses the _GET method to allow values to be passed through are seriously opening their systems up to even greater amount of middle-man spoof when their visitors are using myStickes. While I would agree this is not something that *should* fall on your shoulders, as a group that hopefully desires to keep a good reputation, it should be your goal to take the higher road. Stripping out very unnecessary values from the http_referral should be action you take. I say &quot;very unnecessary&quot; because these type of sites/pages are normally such that the end-user is *never* going to be able to revisit that *exact* page - due to the variance of session values. (which brings up the issue of saving stickes on pages where folks log in, and the web developer passes session id&#039;s through the URI&#039;s... this will make it impossible for them to ever revisit that exact page. Of course their sticky note will still be in their mySticky Dashboard.

Anyway, I am loving the service you provide. As an enterprise software developer, I just see a lot of things you should seriously consider to strengthen the overall security of your service - not because it is insecure if you do not, but because it&#039;s the right thing to do.

To recap, I would suggest three things:

(1) Single md5 hashes have been known to be breakable (phpBB learned that on the hard way),

(2) Stripping unnecessary http_referrals can thwart middle-man packet-sniffers, and,

(3) Finding a way to deal with stickies on session-based pages is something to ponder on... I sure cannot think of a way to deal with that properly, unless you start assigning a GUID with each and every domain and based stickies on both the exact URL and GUID values. (ugghh, not pretty, but might actually prove to work)


Again, love the service!
Yokhannan</description>
		<content:encoded><![CDATA[<p>Might we suggest you double md5() account passwords.</p>
<p>At the moment you are sending user=username&amp;password=md5(password) over a non-secure connection (http) &#8211; obviously no way around this, so you should really be doing something a bit more secure then a single md5() encryption technique.</p>
<p>You should also serious consider a bit of security on your end to defeat middle-man packet stream captures. A good start to this would be the detection of certain key variable names (sid, username, password, phpsession, etc, etc) from the http_referral. As it is, any (ignorant/newbiew) programmer who uses the _GET method to allow values to be passed through are seriously opening their systems up to even greater amount of middle-man spoof when their visitors are using myStickes. While I would agree this is not something that *should* fall on your shoulders, as a group that hopefully desires to keep a good reputation, it should be your goal to take the higher road. Stripping out very unnecessary values from the http_referral should be action you take. I say &#8220;very unnecessary&#8221; because these type of sites/pages are normally such that the end-user is *never* going to be able to revisit that *exact* page &#8211; due to the variance of session values. (which brings up the issue of saving stickes on pages where folks log in, and the web developer passes session id&#8217;s through the URI&#8217;s&#8230; this will make it impossible for them to ever revisit that exact page. Of course their sticky note will still be in their mySticky Dashboard.</p>
<p>Anyway, I am loving the service you provide. As an enterprise software developer, I just see a lot of things you should seriously consider to strengthen the overall security of your service &#8211; not because it is insecure if you do not, but because it&#8217;s the right thing to do.</p>
<p>To recap, I would suggest three things:</p>
<p>(1) Single md5 hashes have been known to be breakable (phpBB learned that on the hard way),</p>
<p>(2) Stripping unnecessary http_referrals can thwart middle-man packet-sniffers, and,</p>
<p>(3) Finding a way to deal with stickies on session-based pages is something to ponder on&#8230; I sure cannot think of a way to deal with that properly, unless you start assigning a GUID with each and every domain and based stickies on both the exact URL and GUID values. (ugghh, not pretty, but might actually prove to work)</p>
<p>Again, love the service!<br />
Yokhannan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wick</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-137</link>
		<dc:creator>wick</dc:creator>
		<pubDate>Mon, 23 Jan 2006 21:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-137</guid>
		<description>Nice implementation. Last year I created an AJAX web app with a similar theme, &amp; ironically you used the exact same tagline as I did.

http://www.netscraps.com

My app doesn&#039;t do cross-site notes though .. but on the other hand it&#039;s compatible with most popular browsers including IE, FF &amp; Safari.

-Wick</description>
		<content:encoded><![CDATA[<p>Nice implementation. Last year I created an AJAX web app with a similar theme, &amp; ironically you used the exact same tagline as I did.</p>
<p><a href="http://www.netscraps.com" rel="nofollow">http://www.netscraps.com</a></p>
<p>My app doesn&#8217;t do cross-site notes though .. but on the other hand it&#8217;s compatible with most popular browsers including IE, FF &amp; Safari.</p>
<p>-Wick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-136</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 23 Jan 2006 16:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-136</guid>
		<description>It&#039;s just a good thing I know and trust you Jacob or I might have the same concerns.  As it is I know that you already know my taste in visiting and bookmarking sites about Care Bears so I don&#039;t mind the lack of privacy.  But good work on the stickies.  They rock!</description>
		<content:encoded><![CDATA[<p>It&#8217;s just a good thing I know and trust you Jacob or I might have the same concerns.  As it is I know that you already know my taste in visiting and bookmarking sites about Care Bears so I don&#8217;t mind the lack of privacy.  But good work on the stickies.  They rock!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John McClane</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-134</link>
		<dc:creator>John McClane</dc:creator>
		<pubDate>Sat, 21 Jan 2006 01:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-134</guid>
		<description>I have the same privacy concerns that one of the posters above has. The plugin must be querying your site for every site the user visits to see if it holds a sticky, the way I understand it. If it could instead keep the sticky list local and sync it from your server once at startup and then update it when the user adds new stickies, that would be best. An all local sticky saving option would be even better.</description>
		<content:encoded><![CDATA[<p>I have the same privacy concerns that one of the posters above has. The plugin must be querying your site for every site the user visits to see if it holds a sticky, the way I understand it. If it could instead keep the sticky list local and sync it from your server once at startup and then update it when the user adds new stickies, that would be best. An all local sticky saving option would be even better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Cheng</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-133</link>
		<dc:creator>Jack Cheng</dc:creator>
		<pubDate>Fri, 20 Jan 2006 20:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-133</guid>
		<description>Awesome, awesome service! The wheels in my head are turning already... One thing that would be very useful is stickies in the shapes of arrows- that way you could point out a specific object on the page.</description>
		<content:encoded><![CDATA[<p>Awesome, awesome service! The wheels in my head are turning already&#8230; One thing that would be very useful is stickies in the shapes of arrows- that way you could point out a specific object on the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Einspanjer</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-132</link>
		<dc:creator>Daniel Einspanjer</dc:creator>
		<pubDate>Fri, 20 Jan 2006 19:05:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-132</guid>
		<description>Hi, it is an interesting idea and I wish you a lot of success with it, but I decided against trying it out because I don&#039;t like having all the websites I visit recorded by a third party.  If you ever enhance the extension such that it stored the information about stickies in a local file rather than in a database on your site, I would be happy to try it out.  I wouldn&#039;t mind even signing up with an account for the purpose of being able to &quot;publish&quot; stickies when you implement the ability to share them.

I&#039;d also suggest that you put a little more info on the homepage for the app.  You have sign up links, but you don&#039;t mention the requirements or how you store your data or anything.  I found this page from digg.</description>
		<content:encoded><![CDATA[<p>Hi, it is an interesting idea and I wish you a lot of success with it, but I decided against trying it out because I don&#8217;t like having all the websites I visit recorded by a third party.  If you ever enhance the extension such that it stored the information about stickies in a local file rather than in a database on your site, I would be happy to try it out.  I wouldn&#8217;t mind even signing up with an account for the purpose of being able to &#8220;publish&#8221; stickies when you implement the ability to share them.</p>
<p>I&#8217;d also suggest that you put a little more info on the homepage for the app.  You have sign up links, but you don&#8217;t mention the requirements or how you store your data or anything.  I found this page from digg.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://jacwright.com/blog/50/mystickies-live/comment-page-1/#comment-131</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 20 Jan 2006 13:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.jacwright.com/blog/50/mystickies-goes-live/#comment-131</guid>
		<description>Great Idea, really inspiring and creative. Hope you guys go places and really make something of this concept. Keep up the good work. 

Paul</description>
		<content:encoded><![CDATA[<p>Great Idea, really inspiring and creative. Hope you guys go places and really make something of this concept. Keep up the good work. </p>
<p>Paul</p>
]]></content:encoded>
	</item>
</channel>
</rss>
