3rd Party Recon with Javascript - Part1
These are the voyages of a security enthusiast. Its continuing mission: to explore strange new knowledge. To seek out new ideas and new technics. To boldly go where no one has gone before!
const getScripts = function() {
const scripts = document.querySelectorAll('script');
scripts.forEach((script) => { if (script.src) {
console.log(`i: ${script.src}`);
}
});
};
getScripts();



Last updated