Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.221.40.13
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
sockjs /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
COPYING
238
B
-rw-r--r--
2017-10-12 15:51
Changelog
7.25
KB
-rw-r--r--
2017-10-12 16:07
LICENSE
1.05
KB
-rw-r--r--
2017-10-12 15:51
Makefile
671
B
-rw-r--r--
2017-10-12 16:12
README.md
16.33
KB
-rw-r--r--
2017-10-12 15:58
index.js
42
B
-rw-r--r--
2017-10-12 15:51
package.json
1.93
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
.PHONY: all serve clean COFFEE:=./node_modules/.bin/coffee #### General all: build build: src/*coffee @$(COFFEE) -v > /dev/null $(COFFEE) -o lib/ -c src/*.coffee clean: rm -f lib/*.js #### Testing test_server: build node tests/test_server/server.js serve: @if [ -e .pidfile.pid ]; then \ kill `cat .pidfile.pid`; \ rm .pidfile.pid; \ fi @while [ 1 ]; do \ make build; \ echo " [*] Running http server"; \ make test_server & \ SRVPID=$$!; \ echo $$SRVPID > .pidfile.pid; \ echo " [*] Server pid: $$SRVPID"; \ inotifywait -r -q -e modify .; \ kill `cat .pidfile.pid`; \ rm -f .pidfile.pid; \ sleep 0.1; \ done