Videos

Published on January 8th, 2019 📆 | 7241 Views ⚑

0

How to hack website using Kali Linux 2018.2


https://www.ispeech.org



Hello friends, today in this tutorial video I m going to show you how to hack a website using Kali Linux 2018.2

**WHAT IS SQL Injection**
SQL injection is a code injection technique that might destroy your database.
SQL injection is one of the most common web hacking techniques.
SQL injection is the placement of malicious code in SQL statements, via web page input.

**SQL in Web Pages**
SQL injection usually occurs when you ask a user for input, like their username/userid, and instead of a name/id, the user gives you an SQL statement that you will unknowingly run on your database.

Look at the following example which creates a SELECT statement by adding a variable (txtUserId) to a select string. The variable is fetched from user input (getRequestString):





Example
txtUserId = getRequestString("UserId");
txtSQL = "SELECT * FROM Users WHERE UserId = " + txtUserId;
The rest of this chapter describes the potential dangers of using user input in SQL statements.

Visit my blog : https://geekstc.blogspot.com/
Follow my Instagram: https://goo.gl/ueL5F7

source

Tagged with:



0 Responses to How to hack website using Kali Linux 2018.2