Simple Cool Tricks With Chrome Developer Tool
As you probably know, there is a button on the right-click menu of Google Chrome and IE 10+ called ''Inspect element''. This the developer tool. And you can have a lot of fun with it. I'll give you two examples on how to use it in this tutorial.
As you probably know, there is a button on the right-click menu of Google Chrome and IE 10+ called ''Inspect element''. This the developer tool. And you can have a lot of fun with it. I'll give you two examples on how to use it in this tutorial.
1. Change the text of a webpage:
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 :
- Find the login form on the website you want to hack
- Right-click on it and then click on ''Inspect element''
- Search on the window that appeared ''<form'' and then ''action=''
- After it, there is a URL, If it ends by ''.js'', just copy it and paste it in the URL bar of your browser
- If it ends by ''.php'', type ''view-source:'' before pasting the URL
- 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.
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 :
- Find the login form on the website you want to hack
- Right-click on it and then click on ''Inspect element''
- Search on the window that appeared ''<form'' and then ''action=''
- After it, there is a URL, If it ends by ''.js'', just copy it and paste it in the URL bar of your browser
- If it ends by ''.php'', type ''view-source:'' before pasting the URL
- Then search something like ''password'' in the code.


Comments
Post a Comment