Google releases SkipFish, a new web application security tool

comments
Mountain View must be starting to worry more about applying to it’s “Don’t be evil” mantra, by releasing a new web application security testing tool that has been under development internally. SkipFish is its name, and its sure to add another tool to your developer toolbox. On the flip side, this tool will definitely also pop up on the radar of the very people its trying to stop;

Changing all database table’s owner back to DBO

comments
One of the niggling that often happens when your deployed to a cheap shared hosting environment is having your table owners change on you. If you have created a data access layer that references tables using their long name this is an issue. This can be caused by a deployment script not maintaining user permissions on your tables or maybe you’re using a web console to interract with you database like myLittleAdmin and it doesn’t allow you to create a table under any user but your own.

Twitterify your strings using c# regex

comments
So you’ve set up a twitter feed on your site – sweet. Now all your peeps can see how excited you are about the new limited edition Whitney Houston EP you’ve been listening to. But then you post a link – or a reply to a fellow twitterati member and those handy auto links you’ve become so used to aren’t there. Bummer duuude – lets fix that.

Stopping Windows from updating dynamic DNS

comments
Under certain conditions there are times when you have a machine in your domain that you don’t want to update its DNS A records. These are usually edge cases however the need is still there. I needed to do this recently, so as they say on Law and Order in a robotic Stephen Hawking voice - “These are their stories”

Manually testing SMTP mail issues via Telnet

comments
So this may be a post that exists in a million places on the web if you know where to look, however it would appear that whenever i do this a colleague gets the idea that i am channelling black magic. How does one “debug” a mail server connection – this is as easy as 123.

Why it’s FireFox, not IE that should be worried about Chrome

comments
When Chrome was first launched by Google, and the media found out about it, they proposed that Google had Microsoft firmly in it’s sights and was potentially about to start a new browser war, i beg to differ in my opinion on this. Internet Explorer has one major advantage that no other browser has, and for the near future at least, will continue to have: locked in marketshare in enterprise and all new copies of Windows. Internet Explorer will never be crushed. No matter how crap Internet Explorer becomes, it has the (some may say unfair, but i believe that’s life) advantage of already being installed 90% of the time. So who should really be afraid of Chrome spreading its wings? Apple and Mozilla and if you still care: Opera.

How to use the Not-so-new MailSettingsSectionGroup

comments
Today i came across something that from my day-to-day coding i have noticed a lot of my fellow coders at work/play have let slide on their path to .Net Mecca – using the MailSettingsSectionGroup section of the web.config to specify both SMTP server host details as well as they other properties such as user/pass credentials in a central, single, easy to use manner. So I'll take this opportunity to make it as easy as possible for you to use.