Friday, November 6, 2015

Easy Tricks With Chrome Developer Tool

                                   
As you almost certainly recognize, there's a button on the right-click menu of Google Chrome and ie 10+ referred to as ''Inspect element''. This the developer tool. And you'll have plenty of fun with it. i am going to give you 2 examples on a way to use it during this tutorial.


1. Modification The Text of a Webpage:
You can have a good time on webpages simply by changing the value of a (a text label). For example, go on the 4shared.com web site (a free file sharing site). Then produce an account if you do not have one (or simply connect with Google, Facebook or Twitter). once you are done, upload something that's heavy (more than 100 MB) by dragging and dropping it on the home page of 4shared. Then you'll be able to see an uploading status window on the screen. thus right-click on the proportion and click on on ''Inspect element''. Now you'll be able to see the percentage window that appears on the bottom of the web browser. There are to ways that : either you got the number otherwise you got the pointy icon. If you got the number, attempt to find the icon below. Then double-click on that and kind what you would like (Eg: '',000,000 dollars in my bank account'')



google chrome tricks 

2. Get a Non-Crypted password in JS/PhP code:

Some sites are not very safe and just verify the password directly in the PhP/JS code. Then, even if it become rare, you can get the password. Just follow these steps :

  1. Find the login form on the website you want to hack
  2. Right-click on it and then click on ''Inspect element''
  3. Search on the window that appeared ''<form'' and then ''action=''
  4. After it, there is a URL, If it ends by ''.js'', just copy it and paste it in the URL bar of your browser
  5. If it ends by ''.php'', type ''view-source:'' before pasting the URL
  6. Then search something like ''password'' in the code.
WARNING: This method works better with JS than with PHP. Sometimes, there is no URL after ''action='' but just a JS function. Then you have to press Ctrl+U to see the source and search for''password'' in the whole code.

No comments:

Post a Comment