January 2018
Intermediate to advanced
340 pages
8h 6m
English
Inspecting the URLs of JavaScript files that are included on a page can help if you are trying to fingerprint an application or determine what third-party libraries are being loaded. This program will list the external JavaScript files referenced in a web page. External JavaScript files might be hosted on the same domain, or might be loaded from a remote site. It inspects the src attribute of all the script tags.
For example, if an HTML page had the following tag:
<script src="/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
The URL of the src attribute is what would be printed:
/ajax/libs/jquery/3.2.1/jquery.min.js
Read now
Unlock full access