Category: Attacking Database

  • SQL Injection on Base64 Encoded String Parameters

    SQL Injection on Base64 Encoded String Parameters

    This article is a guide to perform SQL Injection on the Base64 encoded Url parameters. These parameters are encoded so as to make the site injection proof but that is a big myth. Recently I came across “www.somesite.com/index.php?pid=VkRGRk9WQlJQVDA9″ this kind of URLs. The pid here, “VkRGRk9WQlJQVDA9“. It is nothing but 4 times encoded base64 string,…

  • Time based Blind SQL Injection on MySQL: How to do manually

    Time based Blind SQL Injection on MySQL: How to do manually

    This article will guide you on how to perform time based SQL Injection on MySQL database. The last article was about Boolean based Blind SQL inection.  Application that has been used here for performing attack is Bwapp vulnerable web application. How to know when you need to test for Time based Blind SQL Injection? While…

  • Boolean Based Blind SQL Injection on MySQL: How to do manually

    Boolean Based Blind SQL Injection on MySQL: How to do manually

    This article will guide you on how to do Blind Boolean SQL Injection. As I have already told you in the last article that Blind SQL Injection is more like a guessing game and it is time consuming. An automated way is going to save your time but that way you won’t be able to…

  • Blind SQL Injection: Introduction

    Blind SQL Injection: Introduction

    SQL injection is one of the most deadliest attack in the world of Internet. It tops the OWASP top 10. I have already written about the Basic SQL Injection attack. If you haven’t seen those articles, here is the link: http://www.anonhack.in/2015/09/sql-injection-part-1/ http://www.anonhack.in/2016/01/sql-injection-the-guide/ http://www.anonhack.in/2017/06/sql-injection-part-3-identifying-string-or-numeric/ http://www.anonhack.in/2018/04/sql-injection-part-4getting-admin-password/ The above links are the guides to do Error based Reflective…

  • SQL Injection Part 1

    SQL Injection is the most devastating vulnerability on web platform.In this article, I will be telling how costly and severe this vulnerability is, if exploited. SQL is a database language. Everything related to person’s identification is stored in the database, such as Emails,Usernames,Passwords, and credit card numbers!In SQL injection part 1, we will be talking…