↧
Cross-Site Scripting vulnerability with JavaScript and JQuery
Think you’ve protected your site against Cross-Site scripting attacks by escaping all the content that you’ve rendered? Thought about your javascript? Here’s a neat bug that got us today. This example...
View ArticleHow to delete all zero length files in a directory tree
find . -type f -size 0 -print0 | xargs -0 rm -f
View ArticleHow to use rsync on OSX
I don’t really want to copy dot files (eg. .DS_Store), and I want to avoid the bug that rsync exhibits with time-capsule where it loops creating multiple ..DS_Store.xxxx files. rsync -vrW...
View Article