123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*
- * Slitheen - a decoy routing system for censorship resistance
- * Copyright (C) 2017 Cecylia Bocovich (cbocovic@uwaterloo.ca)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Additional permission under GNU GPL version 3 section 7
- *
- * If you modify this Program, or any covered work, by linking or combining
- * it with the OpenSSL library (or a modified version of that library),
- * containing parts covered by the terms of [name of library's license],
- * the licensors of this Program grant you additional permission to convey
- * the resulting work. {Corresponding Source for a non-source form of such
- * a combination shall include the source code for the parts of the OpenSSL
- * library used as well as that of the covered work.}
- */
- var fs = require('fs');
- var page = require('webpage').create();
- var initial_done = false;
- var initial_bytes = '';
- var totalbytes = 0;
- var downstreamdata = {};
- var upstream_data = {};
- var ous_in_data = '';
- var slitheenID = '';
- var server = require('webserver').create();
- var ous_in = server.listen('127.0.0.1:8888', function(request, response) {
- console.log("Read in " + request.post);
- if(slitheenID == ''){
- slitheenID = request.post + ' ';
- } else {
- ous_in_data += request.post;
- }
- response.close();
- });
- if(!ous_in){
- console.log('Failed to listen on port 8888');
- phantom.exit();
- } else {
- console.log('Listening :)');
- }
- var output = fs.open("OUS_out", {mode: 'wb'});
- page.captureContent = ['.*'];
- page.onResourceRequested = function(request, network) {
- //console.log('Request ' + JSON.stringify(request, undefined, 4));
- if( ous_in_data != ''){
- var bytes = ous_in_data;
- ous_in_data = '';
- bytes.replace(/\r?\n|\r/g, "");
- network.setHeader('X-Slitheen', slitheenID + bytes);
- console.log('Sent X-Slitheen: ' + slitheenID + bytes);
- upstream_data[request.id] = bytes;
- } else {
- network.setHeader('X-Slitheen', slitheenID);
- console.log('Sent X-Slitheen: ' + slitheenID);
- }
-
- };
- page.onResourceReceived = function(response) {
- //console.log('Receive ' + JSON.stringify(response, undefined, 4));
- var id = response.id;
- if (response.stage == "start"){
- downstreamdata[response.id] = response.bodySize;
- }
- if (response.stage == "end"){
- totalbytes += downstreamdata[response.id];
- //console.log("totalbytes is now " + totalbytes);
- }
- //check to see if request successfully carried data
- if(upstream_data.hasOwnProperty(id)){
- if(response.status != 0){
- delete upstream_data[id];
- }
- }
- if(response.stage == "end" && response.contentType == "slitheen"){
- output.write(response.bodySize + '\n' + response.body);
- output.flush();
- }
- };
- var count = 1;
- function loadpage(){
- page.clearMemoryCache();
- totalbytes = 0;
- var t = Date.now();
- page.open('https://gmail.com', function(status) {
- console.log("Status for page load "+ count + " : " + status);
- if(status === "success") {
- t = Date.now() - t;
- count += 1;
- //if(count > 102){
- // phantom.exit();
- //}
- fs.write("timing1.out", t + ',', 'a');
- fs.write("size1.out", totalbytes + ',', 'a');
- } else {
- fs.write("timing1.out", '-1,', 'a');
- fs.write("size1.out", '-1,', 'a');
- }
- for( var id in upstream_data){
- ous_in_data += upstream_data[id];
- }
- loadpage();
- });
- }
- loadpage();
|