Select Page
Today was a good day

Today was a good day

I keep telling myself that today (yesterday actually) was a good day (Saturday, August 28th).  I mean, the Tampa Bay Buccaneers won a pre-season game.  Chelsea beat Stoke City 2-0, and the Phillies beat the Padres to stay in the chase for the payoffs.  Plus, the Vuelta a Espana (Tour of Spain) started today too.  So, I guess I should be somewhat happy.  Not every day that sports go this well all on the same day…

Windows Security

In a security review of some Windows machines here at work, I ran across a good article about hacking, which included a video on using several good tools to validate security on your publicly facing windows machines, which require RDP (Remote Desktop / Terminal Services) port to be open.

The video shows you how to us tsgrinder, and several other tools.  Check out the video here

Classic ASP code for server variables and form variables

During my testing and working on something at work, I found some nice variable display info that can be used when trying to debug/troubleshoot some classic ASP code.  Stuff I usually can’t find when I need it.  So I’m posting it here.

<TABLE BORDER="1"> <TR><TD><B>Server Variable</B></TD><TD><B>Value</B></TD></TR> <% For Each strKey In Request.form %>  <TR> <TD><%= strKey %></TD> <TD><%= Request.form(strKey) %></TD> </TR> <% Next %> </TABLE>

 

Also,

<TABLE BORDER="1"> <TR><TD><B>Server Variable</B></TD><TD><B>Value</B></TD></TR> <% For Each strKey In Request.ServerVariables %>  <TR> <TD><%= strKey %></TD> <TD><%= Request.ServerVariables(strKey) %></TD> </TR> <% Next %> </TABLE>