Today I was sent the following JavaScript javascript:(function(){$(‘#UserName’).val(‘a_user’);$(‘#Password’).val(‘their_password’);$(‘form’).submit();})(); As it turns out, the JavaScript was actually intended to be a browser bookmark that, when clicked, auto-filled fields on the page and submitted it. Let’s look at it more carefully. If we assume that the page has a: Textbox with ID … Continue reading
Monthly Archives: May 2013
Notes on C# Performance Counters
What’s Going On Here? I’m currently reading up on Performance Counters in .NET, and have been taking notes on the topic, so I can refer back later. These are a series of links and facts that I found helped me understand the topic. Most of the information was available on … Continue reading