any website script detector

Status
Not open for further replies.

spikyup

Banned
Banned
21
2016
2
0
Hello some times i see a website that i like .... but i wanna know which script is used can any one help me how to get the script name of any website
 
3 comments
All you have to do

All you have to do is right click anywhere on the web page -> view source code


then look for <meta tags that hold the name of the CMS used by the website

it will usually show you
 
Is very easy right click ->view source code...and loook on meta tags
Or some time you cand look on style.css and it say what script is.
But is very important that some time to know the structure of that script,Like Joomla Wordpres ,Drupal ,Magento they have a special signature and you will know that script is used,
But some time some websites are CUSTOM MVC, and is hard to fiind that script.
 
You can easily get the whole history of all scripts & css files name by right clicking the mouse button & get the view source page or just press (CTRL+U) from your key board & then look for meta tags, something like the below examples you will get in meta tags:


<link rel="stylesheet" href="../css/custom.css">


<link rel="stylesheet" href="../css/bootstrap-select.min.css">


<link href="../css/jquery.bxslider.css" media="screen" rel="stylesheet" type="text/css">


& for js scripts look for <script> tag like below example:


<script src="../js/all.min.js" defer></script>


hereby you will get the whole information by the source pages but in some cases the developer use to hide the scripts whatever they've used in order to keep it safe & hide their information from hackers.
 
Status
Not open for further replies.
Back
Top