Articles on this Page
- 10/17/11--02:30:_Cross-Site Scripting...
- 11/08/11--04:22:_How to delete all zero...
- 11/08/11--04:27:_How to use rsync on OSX
More Channels
- Jan 29: News/school News from...
- Nov 28: SQL 查询
- Jan 27: CANO-ACIO: What's new
- Nov 18: Comments for Big Black Man In...
- Jan 16: LOL Factory Tumblr
- Jan 28: citizen-times.com - WNC Outdoors
- Nov 26: Catalin's XNA Blog » Uncategorized
- Nov 28: 多晶硅
- Nov 28: Toros blog - en-bref
- Nov 18: queerchristians
- Jan 27: Soccer Classroom
- Nov 28: Denver Post: Opinion:...
- Jan 23: G1 > Crime e Justiça
- Dec 5: TV Shark.com - Daily...
- Nov 26: Hidden Fees
- Jan 23: Commentaires du blog: CitiZen...
- Nov 26: Coal Creek OHV
- Nov 28: Comments for HOOD INTELLIGENCE
- Sep 20: Les bd de Pauline
- Jan 28: Patrick T. Hoffman
- Jan 25: Antony Green's Election Blog
- Nov 28: DJ U-Jeen
- Nov 28: Today in Janland
- Jan 28: Yahoo! Noticias España - Los...
- Nov 28: TradingCrowd
- Dec 21: Divers
- Nov 28: Scallywag and Vagabond » Philip...
- Nov 28: Iuca L. on LOOKBOOK.nu
- Dec 11: SPIEGEL ONLINE - Politik - Adolf...
- Jan 27: Dawne Kovan's Blog
- Nov 26: Communication & Information...
- Nov 26: نقد حقیقی در فضای...
- Nov 26: China Replica Handbags
- Nov 26:
- Jan 19: Retrouver tous les flux RSS...
- Nov 26: 博客生活-ssxy
- Jan 16: Twitter / ScottyMore_
- Dec 21: Andy Jordan's Tech Diary
- Jan 1: V is for Voltage electric...
- Nov 28: Rachael-Taylor.org
- Nov 28: Torrr and Phayze's team history
- Jan 28: Αντίβαρο
- Nov 28: Keith de Barra's Blog » drum kit
- Jan 15: Como Ahorrar Dinero
- Nov 28: Ghidoo: kanye. Descopera...
- Jan 23: Art Never Comes From Happiness
- Nov 28: dogboy's badges
- Jan 29: WAVE - News
- Jan 28: PropertyWala.com™: All...
- Jan 29: Scout.com > NCAA > Syracuse...
|
|
Are you the publisher? Claim this channel |
|
Channel Description:
Latest Articles in this Channel:
- 10/17/11--02:30: Cross-Site Scripting vulnerability with JavaScript and JQuery (chan 1723805)
- 11/08/11--04:22: How to delete all zero length files in a directory tree (chan 1723805)
- 11/08/11--04:27: How to use rsync on OSX (chan 1723805)
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 is contrived to show a point. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>XSS Example</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script> $(function() { $('#users').each(function() { var select = [...]
find . -type f -size 0 -print0 | xargs -0 rm -f
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 --ignore-existing --exclude ".*" --progress ~/Movies/ /Volumes/Backup/Movies/