Comparing version 0.3.2 to 0.3.3
#!/usr/bin/env node | ||
var virtualized = require('../lib/in-virtualized-os')() | ||
if (virtualized) { | ||
console.error('This is a virtualized environment, can\'t set up a vm in a vm') | ||
console.error('However we can setup autopsy on our local machine and tunnel through') | ||
console.error('Checkout the autopsy-ssh command for more info') | ||
process.exit(1) | ||
} | ||
var path = require('path') | ||
var vbm = require('vboxmanage') | ||
var fs = require('fs') | ||
var vbm = require('../lib/vbm') | ||
var download = require('../lib/download') | ||
@@ -16,0 +6,0 @@ var assets = require('../lib/assets-uri') |
var path = require('path') | ||
var eos = require('end-of-stream') | ||
var vbm = require('vboxmanage') | ||
var vbm = require('./vbm') | ||
var connect = require('./connect') | ||
@@ -5,0 +5,0 @@ var debug = require('debug')('autopsy:start') |
@@ -1,2 +0,2 @@ | ||
var vbm = require('vboxmanage') | ||
var vbm = require('./vbm') | ||
@@ -3,0 +3,0 @@ module.exports = function (cb) { |
@@ -1,2 +0,2 @@ | ||
var vbm = require('vboxmanage') | ||
var vbm = require('./vbm') | ||
@@ -3,0 +3,0 @@ module.exports = function (cb) { |
{ | ||
"name": "autopsy", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"description": "dissect dead node service core dumps with mdb via a smart os vm", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21147
19