Baran Topal

Categories


Technology

netstat and nslookup

I am tired of googling netstat and nslookup commands to probe a IP, port or a domain. So, I put the following example to remind myself. :) Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\baran>netstat -an | findstr /c:":21" C:\Users\baran>netstat -an | findstr /c:":80" [...]

baranbaran

session vs. viewstate in an old browser

I had some huge data that I need to cache in ASP.NET and it was weird specification that the customer required to use an old IE.. This weird choice “paid off” when I used sessions as the session approach was not really working when the user logged into same browser and does the same stuff on 2 separate tabs. And this site [...]

baranbaran

Huge file in dropbox. CRC check?

I have a friend who is far away from me and needed to send a huge database backup file . She had put the 6 GB file in dropbox and we were not sure whether the file is “intact” or not. The integrity of a file is part of the information security context and we need to know the infamous triangle of CIA, Confidentiality, [...]

baranbaran

web.config and which .NET

Oh well, I have the following web.config and i want to understand whether that web application is running on .net 2.0 or 3.5 or 4. Btw, I will write another post to find this out from assembly in a compiled dll. In order to understand which .NET framework this application is dependent. You need to know a bit of history of .NET framework. [...]

baranbaran