Created
August 26, 2012 17:03
-
-
Save papoms/3481673 to your computer and use it in GitHub Desktop.
Try to overwrite window.document.referrer from within phantomjs / onInitialized
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var page = require('webpage').create(); | |
page.onConsoleMessage = function (msg) { | |
console.log('From Page Console: '+msg); | |
}; | |
page.onInitialized = function() { | |
page.evaluate(function () { | |
"use strict"; | |
//The Referrer we want to set | |
var myReferrer = 'http://referrer.example.com'; | |
function showInfo(){ | |
console.log("window.document.referrer is: '" + window.document.referrer + "' of type: '" + typeof window.document.referrer+"'"); | |
}; | |
//Before | |
console.log("Status Quo"); | |
showInfo(); | |
// Trying to delete the property | |
console.log("Deleting document.referrer"); | |
delete window.document.referrer; | |
showInfo(); | |
// Manually setting the referrer | |
console.log('Manual overwrite') | |
window.document.referrer = myReferrer; | |
showInfo(); | |
// defining a getter method | |
console.log('testing defineGetter'); | |
window.document.__defineGetter__('referrer', function () { | |
return myReferrer; | |
}); | |
showInfo(); | |
}); | |
} | |
page.onLoadFinished = function (status) { | |
exit(); | |
}; | |
page.open('http://example.com'); |
I've just tested it, it doesn't change document.referrer !!!
ну и че хуй забили и успокоились все блять что ли?
I've just tested it, it doesn't change
document.referrer
!!!
Open Console, Copy Paste and Hit Hinter:
delete window.document.referrer; window.document.__defineGetter__('referrer', function () { return "yoururl.com"; });
now type in console:
document.referrer
or
window.document.referrer
you can see the changes...
Hey, this was a snippet to show that phantomjs did not pass the referrer as expected. So it not working in the original version of phantomjs is expected.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same here, there isn't any good solution.