403Webshell
Server IP : 66.29.132.122  /  Your IP : 3.145.125.51
Web Server : LiteSpeed
System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : admazpex ( 531)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/proc/thread-self/root/opt/alt/alt-nodejs8/root/lib/node_modules/npm/node_modules/umask/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/proc/thread-self/root/opt/alt/alt-nodejs8/root/lib/node_modules/npm/node_modules/umask/index.js
'use strict';

var util = require("util");

function toString(val) {
    val = val.toString(8);
    while (val.length < 4) {
        val = "0" + val;
    }
    return val;
}

var defaultUmask = 18; // 0022;
var defaultUmaskString = toString(defaultUmask);

function validate(data, k, val) {
    // must be either an integer or an octal string.
    if (typeof val === "number" && !isNaN(val)) {
        data[k] = val;
        return true;
    }

    if (typeof val === "string") {
        if (val.charAt(0) !== "0") {
            return false;
        }
        data[k] = parseInt(val, 8);
        return true;
    }

    return false;
}

function convert_fromString(val, cb) {
    if (typeof val === "string") {
        // check for octal string first
        if (val.charAt(0) === '0' && /^[0-7]+$/.test(val)) {
            val = parseInt(val, 8);
        } else if (val.charAt(0) !== '0' && /^[0-9]+$/.test(val)) {
            // legacy support for decimal strings
            val = parseInt(val, 10);
        } else {
            return cb(new Error(util.format("Expected octal string, got %j, defaulting to %j",
                                            val, defaultUmaskString)),
                      defaultUmask);
        }
    } else if (typeof val !== "number") {
        return cb(new Error(util.format("Expected number or octal string, got %j, defaulting to %j",
                                        val, defaultUmaskString)),
                  defaultUmask);
    }

    val = Math.floor(val);

    if ((val < 0) || (val > 511)) {
        return cb(new Error(util.format("Must be in range 0..511 (0000..0777), got %j", val)),
                  defaultUmask);
    }

    cb(null, val);
}

function fromString(val, cb) {

    // synchronous callback, no zalgo
    convert_fromString(val, cb || function (err, result) {
        /*jslint unparam:true*/
        val = result;
    });

    return val;
}

exports.toString = toString;
exports.fromString = fromString;
exports.validate = validate;


Youez - 2016 - github.com/yon3zu
LinuXploit