Click here to Skip to main content
15,879,184 members

Comments by Purushotham Agaraharam (Top 10 by date)

Purushotham Agaraharam 10-Mar-16 5:04am View    
Reason for my vote of 5 \n Good presentation...
Purushotham Agaraharam 5-Oct-14 6:35am View    
Failure Server Details:(3 machines with same below configuration and another one with IIS7) and the servers with out issue is has IIS 7 and 7.5
Operating System:Windows Server 2008 R2 Enterprise.
Version 6.1 (Build 7601: Service Pack 1)
IIS Version: 7.5.7600.16385
Application Pool Property are as follows:
.Net CLR Version:V2.0
Enable 32 bit applications:False
Managed pipeline Mode:Integrated
Identity:NetworkService(**When we go to the Identity of the website for anonymous authentication the identity is set to IUSR)
Idle time out minutes:20
Load User profile:False
Maximum worker processes:1

When i compared the failure machines with succeded server its looks same.
Purushotham Agaraharam 5-Oct-14 6:34am View    
No..few machines with IIS7 and Few with IIS7.5
Failure Server Details:(3 machines with same configuration and another one with IIS7)
Operating System:Windows Server 2008 R2 Enterprise.
Version 6.1 (Build 7601: Service Pack 1)
IIS Version: 7.5.7600.16385
Application Pool Property are as follows:
.Net CLR Version:V2.0
Enable 32 bit applications:False
Managed pipeline Mode:Integrated
Identity:NetworkService(**When we go to the Identity of the website for anonymous authentication the identity is set to IUSR)
Idle time out minutes:20
Load User profile:False
Maximum worker processes:1

When i compared the failure machines with succeded server its looks same.
Purushotham Agaraharam 22-Apr-14 8:10am View    
Reason for my vote of 5 \n Excellent Presentation
Purushotham Agaraharam 28-Feb-14 5:21am View    
hi,
I have one more query like is the following methods are safe from sql injection if we are not passing any hard coded values and queries to database.we are sending all quries as store procedures.
SqlConnection connection = new SqlConnection(connectionString);
command.ExecuteNonQuery();
dataReader = command.ExecuteReader();
adapter.Fill(ds);
dataReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);

if an attacker tries to attack from the above lines how can they do?