Sha256: e0c409ce820d3146196b5c5a7bb0c11a5875db93fc916ac88b028b7c1bc14c3e

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

var browserify = require('../');
var vm = require('vm');
var test = require('tap').test;
var path = require('path');
var through = require('through2');

var os = require('os');
var tmpdir = (os.tmpdir || os.tmpDir)();
var dir = path.join(
    tmpdir,
    'browserify-test-' + Math.random(),
    'aaabbbzzz'
);
var dirstring = dir.split(path.sep).slice(-2).join(path.sep);

test('leaking information about system paths (process)', function (t) {
    t.plan(4);
    
    var b = browserify({ basedir: dir });
    var stream = through();
    stream.push('process.nextTick(function () {'
        + 't.ok(true)'
        + '})'
    );
    stream.push(null);
    b.add(stream);
    
    b.bundle(function (err, buf) {
        var src = buf.toString('utf8');
        t.equal(src.indexOf(dirstring), -1, 'temp directory visible');
        t.equal(src.indexOf(process.cwd()), -1, 'cwd directory visible');
        t.equal(src.indexOf('/home'), -1, 'home directory visible');
        vm.runInNewContext(src, {
            t: t,
            setTimeout: setTimeout,
            clearTimeout: clearTimeout
        });
    });
});

test('leaking information about system paths (Buffer)', function (t) {
    t.plan(4);
    
    var b = browserify({ basedir: dir });
    var stream = through();
    stream.push('t.equal(Buffer("eHl6", "base64").toString(), "xyz")');
    stream.push(null);
    b.add(stream);
    
    b.bundle(function (err, buf) {
        var src = buf.toString('utf8');
        t.equal(src.indexOf(dirstring), -1, 'temp directory visible');
        t.equal(src.indexOf(process.cwd()), -1, 'cwd directory visible');
        t.equal(src.indexOf('/home'), -1, 'home directory visible');
        vm.runInNewContext(src, { t: t, setTimeout: setTimeout });
    });
});

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
minimum_viable_product-0.0.11 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.6 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.5 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.4 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.3 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.2 test/dummy/node_modules/browserify/test/leak.js
brwy_rails-0.0.1 test/dummy/node_modules/browserify/test/leak.js