Wht is SQL injection?
Answers were Sorted based on User's Feedback
Answer / sachin
"An attack technique used to exploit web sites by altering
backend SQL statements through manipulating application
input."
SQL Injection happens when a developer accepts user input
that is directly placed into a SQL Statement and doesn't
properly filter out dangerous characters. This can allow an
attacker to not only steal data from your database, but
also modify and delete it. Certain SQL Servers such as
Microsoft SQL Server contain Stored and Extended Procedures
(database server functions). If an attacker can obtain
access to these Procedures it may be possible to compromise
the entire machine. Attackers commonly insert single qoutes
into a URL's query string, or into a forms input field to
test for SQL Injection. If an attacker receives an error
message like the one below there is a good chance that the
application is vulnerable to SQL Injection.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / babuni
SQL injection is a technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is in fact an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pravati
sql injection is an attack in which malicious code is inserted to expose hidden data or to override valuable ones.
| Is This Answer Correct ? | 0 Yes | 0 No |
When we will do Retesting? Only after Bug fixation?Is there any other case?
Explain Alpha Testing and Beta Testing
what is the difference between functional test cases and compatability testcases?
can any one please tell me about CURD testing. Did the curd testing and sanity testing both are same?
What is Test Responsibility Matrix?
7 Answers Landscape Technologies, Wipro,
various scenarios in any banking project.please give this in detail.
How to Test the Cookies and Memory leakages? (I.e. does the cookies expired or not and about memory leakage)?
i live in australia and i have come to india for holiday and i want to give my ISTQB exam so which is preferrable?giving exam in INDIA /AUSTRALIA?Does it really matters?
why RUPis important or what are all the advances in RUP?
What methodolgies you used to develop test Cases?
What testing procedure you follow? how
In a system designed to work out the tax to be paid: An employee has £4000 of salary tax free. The next £1500 is taxed at 10% The next £28000 is taxed at 22% Any further amount is taxed at 40% To the nearest whole pound, which of these is a valid Boundary Value Analysis test case? The options provided are a)£1500 b)£32001 c)£33501 d)£28000