Advices, table actions and wordlists in order to do penetration testing.
- link: a list of useful urls about pentest.
- wordlist: a list of useful words in order to test a website for common vulnerabilities (taken from Burp and other places)
- scripts: a list of useful scripts for Penetration Tester
- Chrome developer tools: open all the links inside the web page.
var urls = document.getElementsByTagName('a');
for (url in urls) {
console.log ( urls[url].href );
window.open(urls[url].href, '_blank');
}
You can send me advices about useful links in Issue section.