Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.213
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
alt-nodejs6 /
root /
usr /
include /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
libplatform
[ DIR ]
drwxr-xr-x
2026-05-01 04:22
ares.h
21.8
KB
-rw-r--r--
2021-09-28 13:05
ares_build.h
4.16
KB
-rw-r--r--
2021-09-28 13:05
ares_rules.h
4.34
KB
-rw-r--r--
2021-09-28 13:05
ares_version.h
652
B
-rw-r--r--
2021-09-28 13:05
common.gypi
14.16
KB
-rw-r--r--
2021-09-28 13:05
config.gypi
3.01
KB
-rw-r--r--
2021-09-28 13:06
nameser.h
8.24
KB
-rw-r--r--
2021-09-28 13:05
node.h
19.2
KB
-rw-r--r--
2021-09-28 13:05
node_api.h
29.52
KB
-rw-r--r--
2021-09-28 13:05
node_api_types.h
3.07
KB
-rw-r--r--
2021-09-28 13:05
node_buffer.h
2.24
KB
-rw-r--r--
2021-09-28 13:05
node_object_wrap.h
2.66
KB
-rw-r--r--
2021-09-28 13:05
node_version.h
2
KB
-rw-r--r--
2021-09-28 13:05
v8-debug.h
10.19
KB
-rw-r--r--
2021-09-28 13:06
v8-experimental.h
1.65
KB
-rw-r--r--
2021-09-28 13:06
v8-platform.h
5.72
KB
-rw-r--r--
2021-09-28 13:06
v8-profiler.h
24.12
KB
-rw-r--r--
2021-09-28 13:06
v8-testing.h
1.05
KB
-rw-r--r--
2021-09-28 13:06
v8-util.h
19.12
KB
-rw-r--r--
2021-09-28 13:06
v8-version.h
773
B
-rw-r--r--
2021-09-28 13:06
v8.h
279.02
KB
-rw-r--r--
2021-09-28 13:06
v8config.h
15.22
KB
-rw-r--r--
2021-09-28 13:06
Save
Rename
#ifndef SRC_NODE_VERSION_H_ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 6 #define NODE_MINOR_VERSION 17 #define NODE_PATCH_VERSION 1 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Boron" #define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY_HELPER(n) #n #endif #ifndef NODE_RELEASE #define NODE_RELEASE "node" #endif #ifndef NODE_TAG # if NODE_VERSION_IS_RELEASE # define NODE_TAG "" # else # define NODE_TAG "-pre" # endif #else // NODE_TAG is passed without quotes when rc.exe is run from msbuild # define NODE_EXE_VERSION NODE_STRINGIFY(NODE_MAJOR_VERSION) "." \ NODE_STRINGIFY(NODE_MINOR_VERSION) "." \ NODE_STRINGIFY(NODE_PATCH_VERSION) \ NODE_STRINGIFY(NODE_TAG) #endif # define NODE_VERSION_STRING NODE_STRINGIFY(NODE_MAJOR_VERSION) "." \ NODE_STRINGIFY(NODE_MINOR_VERSION) "." \ NODE_STRINGIFY(NODE_PATCH_VERSION) \ NODE_TAG #ifndef NODE_EXE_VERSION # define NODE_EXE_VERSION NODE_VERSION_STRING #endif #define NODE_VERSION "v" NODE_VERSION_STRING #define NODE_VERSION_AT_LEAST(major, minor, patch) \ (( (major) < NODE_MAJOR_VERSION) \ || ((major) == NODE_MAJOR_VERSION && (minor) < NODE_MINOR_VERSION) \ || ((major) == NODE_MAJOR_VERSION && \ (minor) == NODE_MINOR_VERSION && (patch) <= NODE_PATCH_VERSION)) /** * Node.js will refuse to load modules that weren't compiled against its own * module ABI number, exposed as the process.versions.modules property. * * When this version number is changed, node.js will refuse * to load older modules. This should be done whenever * an API is broken in the C++ side, including in v8 or * other dependencies. */ #define NODE_MODULE_VERSION 48 /* Node.js v6.0.0 */ // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 3 #endif // SRC_NODE_VERSION_H_