##// END OF EJS Templates
Backport PR #8179: Fix for CVE-2014-3566 'POODLE' SSL attack...
Backport PR #8179: Fix for CVE-2014-3566 'POODLE' SSL attack original commit '22c4922f4796078c5613de9e07e66b8764549cad'

File last commit:

r18587:1e136a8b
r20975:6a651746
Show More
inject_js.js
23 lines | 650 B | application/javascript | JavascriptLexer
//
// Test robustness about JS injection in different place
//
// This assume malicious document arrive to the frontend.
//
casper.notebook_test(function () {
var messages = [];
this.on('remote.alert', function (msg) {
messages.push(msg);
});
this.evaluate(function () {
var cell = IPython.notebook.get_cell(0);
var json = cell.toJSON();
json.execution_count = "<script> alert('hello from input prompts !')</script>";
cell.fromJSON(json);
});
this.then(function () {
this.test.assert(messages.length == 0, "Captured log message from script tag injection !");
});
});