I am trying to use PhantomJS to loop through a couple of URLs, open the pages and check if there was an alert on any of the pages. I am also printing the URLs of the pages where an alert occurred.
The code is as below:
var page = require('webpage');
var u = ["http://127.0.0.1/DVWA-1.0.8/vulnerabilities/xss_r/?name=<SCRIPT>alert('XSS');</SCRIPT>", "http://127.0.0.1/DVWA-1.0.8/vulnerabilities/xss_r/?name=abcd"]
var url = "";
for(var i = 0; i < u.length; i++) {
url = u[i];
var webpage = page.create();
phantom.addCookie({
'name':'PHPSESSID',
'value':'00885b45d9ddda3e757371b177c5959b',
'domain':'127.0.0.1'
});
webpage.onAlert = function(alertMessage){
console.log("Alert URL: " + webpage.url);
console.log("Alert occured with message: " + alertMessage);
}
webpage.open(url, function (status) {
console.log("Opening URL: " + webpage.url);
phantom.exit();
});
}
I would expect the part of the output to be:
Alert URL: http://127.0.0.1/DVWA-1.0.8/vulnerabilities/xss_r/?name=<SCRIPT>alert('XSS');</SCRIPT>
Alert occured with message: XSS
But instead, it differs each time and shows incorrect output like:
Alert URL: http://127.0.0.1/DVWA-1.0.8/vulnerabilities/xss_r/?name=abcd
Alert occured with message: XSS
It looks like this happens because of the concurrency of the callbacks.
Is there a way to handle this in order to ensure that the output is as expected? Or is this library not meant to be used like this and should I try something else?