Slashdot Mirror


User: jupo

jupo's activity in the archive.

Stories
0
Comments
17
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 17

  1. MySQL's Influence on the GPL? on MySQL's Influence On the GPL · · Score: 5, Funny

    Well the GPL used to be much longer, but was somehow mysteriously truncated.

  2. Re:Objective-C, not too bad... on Beginning iPhone Development · · Score: 1, Interesting

    Ars recently posted a short write-up on using C# and Mono to develop for the iPhone.

  3. Re:Yes, but.... on IronPython 1.0 is Born · · Score: 5, Informative
  4. Re:A better web page scripting language? on Why Microsoft and Google are Cleaning Up With AJAX · · Score: -1

    These articles clear up a lot of common misconceptions around javascript and its OO capabilites.

    Classical Inheritance in JavaScript
    JavaScript: The World's Most Misunderstood Programming Language

  5. Re:Avant browser.. on No IE7 For 2k, Now In Extended Service · · Score: -1

    I guess that means the only browsers with tabs for W2k will be Opera and Firefox.

    Yeah I've been using IE with tabs on Windows 2000 for quite a while.

  6. Re:I can't afford the Three Phase Power on XBox 360 Designed for Portability? · · Score: -1

    Your sig is spelt incorrectly - should be apisdn

  7. LiteStep on Improving the Windows XP User Interface? · · Score: -1

    LiteStep
    hasn't been mentioned? Fantastic replacement for the Windows shell.

  8. Server Load on Google Suggest · · Score: -1

    HTTP request is made for every keystroke applied to the search query, so it'll essentially increase their server load by a magnitute of average keystrokes per query.

  9. G5 is aliiiive on iMac G5 Porn Roundup · · Score: 3, Funny

    No disassemble G5, NOOOO!!!!

  10. Re:So they've finally caught up... on Firefox Extension Lets You Pick the Name · · Score: 0

    Yes.

  11. So they've finally caught up... on Firefox Extension Lets You Pick the Name · · Score: 0

    to IE, which has had this feature for years.

  12. fp on GDC Wraps Up With Surfeit Of Coverage · · Score: -1, Offtopic

    forced piss.

  13. fp on Apache 2.0.49 Released · · Score: -1, Offtopic

    Farsed past, pissed fart.... um

  14. Re:An Alternative to Webmonkey on Webmonkey Closes its Doors · · Score: 1

    JScript is Microsoft's implementation of Javascript. To the best of my knowledge it's the same, although I wouldn't be surprised to find some proprietary extension within JScript.

  15. Re:An Alternative to Webmonkey on Webmonkey Closes its Doors · · Score: 1

    anyone have one like that for html/javascript? I would love that

    I believe there's a JScript (not Javascript, but almost the same) CHM available somewhere on the MSDN site.

  16. Re:Just like (good) firewalls: on The Anatomy of Cross Site Scripting · · Score: 1

    An HTML form using POST can be submitted with a hyperlink.

    And you're right, it's not just brackets that need replacing, quotes should be replaced too. This massive set of 3 characters are all that defines the bulk of HTML.

    However, the issue with XSS is formatting user input that is sent back to the browser.

    Obviously user input must be parsed for insertion into SQL queries, but this is not an XSS issue.

    As for code being tricked by user input, I've never heard of anyone actually writing code that attempts to evaluate and execute user input as code on the server, that would be ridiculous.

  17. Re:Just like (good) firewalls: on The Anatomy of Cross Site Scripting · · Score: 1

    Using POST rather than GET does not address XSS in any way at all. POST values can be sent as easily as putting GET values into a query string.

    The issue is addressed by simply parsing any user input that's sent back to the browser. This parsing can be as simple as replacing HTML brackets <> with entity codes &lt;&gt;

    This is as basic as web development 101 gets. Any site that falls vicitm to XSS does so due to sloppy coding at its best, and rightly deserves to be compromised!