ASHISH SRIVASTAVA
(Move to ...)
▼
Thursday 16 May 2019
Top 10 Web Application Security Risks
›
Injection Injection flaws, such as SQL injection, LDAP injection, and CRLF injection, occur when an attacker sends untrusted data to an ...
1 comment:
Sunday 6 January 2019
Getting Available Server Disk Space (Total Size / Free Space) SQL Query
›
SELECT distinct(volume_mount_point), total_bytes/1048576 as Size_in_MB, total_bytes/1048576/1024 as Size_in_GB, available_bytes/1048576 ...
1 comment:
Saturday 28 July 2018
Find Largest Element of an Array using Function in Python
›
# Find Largest Element of an Array using Function # python function to find maximum # in arr[] of size n def largest(arr,n): # Initi...
1 comment:
Thursday 26 July 2018
Swap two variables without using third variable in Python
›
# Swap two variables without using third variable in Python a = input(" Please Enter the First Number: ") b = input(" Ple...
Wednesday 25 July 2018
Two Number Sum in Python
›
# Simple Python program to Add Two Numbers number1 = input(" Please Enter the First Number: ") number2 = input(" Please E...
Thursday 12 April 2018
Track your Facebook login attempt
›
Facebook provides a feature which allows you to see all active sessions from different devices and apps together with the date it was last...
Wednesday 4 April 2018
Convert AM/PM time to 24 hours format C#
›
C# hh:mm tt (12 Hours to 24 Hours Format) convert using System.Globalization; var cultureSource = new CultureInfo("en-US", f...
‹
›
Home
View web version