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 | : 18.218.38.67
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 /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1009
B
-rw-r--r--
beer.py
459
B
-rwxr-xr-x
beer.pyc
703
B
-rw-r--r--
beer.pyo
703
B
-rw-r--r--
eqfix.py
6.16
KB
-rwxr-xr-x
eqfix.pyc
4.52
KB
-rw-r--r--
eqfix.pyo
4.52
KB
-rw-r--r--
fact.py
1.11
KB
-rwxr-xr-x
fact.pyc
1.14
KB
-rw-r--r--
fact.pyo
1.14
KB
-rw-r--r--
find-uname.py
1.18
KB
-rwxr-xr-x
find-uname.pyc
1.47
KB
-rw-r--r--
find-uname.pyo
1.47
KB
-rw-r--r--
from.py
874
B
-rwxr-xr-x
from.pyc
749
B
-rw-r--r--
from.pyo
749
B
-rw-r--r--
lpwatch.py
2.77
KB
-rwxr-xr-x
lpwatch.pyc
2.54
KB
-rw-r--r--
lpwatch.pyo
2.54
KB
-rw-r--r--
makedir.py
510
B
-rwxr-xr-x
makedir.pyc
732
B
-rw-r--r--
makedir.pyo
732
B
-rw-r--r--
markov.py
3.51
KB
-rwxr-xr-x
markov.pyc
3.93
KB
-rw-r--r--
markov.pyo
3.93
KB
-rw-r--r--
mboxconvert.py
3.11
KB
-rwxr-xr-x
mboxconvert.pyc
3.17
KB
-rw-r--r--
mboxconvert.pyo
3.17
KB
-rw-r--r--
morse.py
4.21
KB
-rwxr-xr-x
morse.pyc
4.33
KB
-rw-r--r--
morse.pyo
4.33
KB
-rw-r--r--
newslist.doc
2.36
KB
-rwxr-xr-x
newslist.py
11.17
KB
-rwxr-xr-x
newslist.pyc
7.55
KB
-rw-r--r--
newslist.pyo
7.55
KB
-rw-r--r--
pi.py
888
B
-rwxr-xr-x
pi.pyc
921
B
-rw-r--r--
pi.pyo
921
B
-rw-r--r--
pp.py
3.73
KB
-rwxr-xr-x
pp.pyc
2.28
KB
-rw-r--r--
pp.pyo
2.28
KB
-rw-r--r--
primes.py
603
B
-rwxr-xr-x
primes.pyc
921
B
-rw-r--r--
primes.pyo
921
B
-rw-r--r--
queens.py
2.19
KB
-rwxr-xr-x
queens.pyc
2.95
KB
-rw-r--r--
queens.pyo
2.95
KB
-rw-r--r--
script.py
962
B
-rwxr-xr-x
script.pyc
1.21
KB
-rw-r--r--
script.pyo
1.21
KB
-rw-r--r--
unbirthday.py
3.07
KB
-rwxr-xr-x
unbirthday.pyc
2.93
KB
-rw-r--r--
unbirthday.pyo
2.93
KB
-rw-r--r--
update.py
2.69
KB
-rwxr-xr-x
update.pyc
2.69
KB
-rw-r--r--
update.pyo
2.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pp.py
#! /usr/bin/env python # Emulate some Perl command line options. # Usage: pp [-a] [-c] [-d] [-e scriptline] [-F fieldsep] [-n] [-p] [file] ... # Where the options mean the following: # -a : together with -n or -p, splits each line into list F # -c : check syntax only, do not execute any code # -d : run the script under the debugger, pdb # -e scriptline : gives one line of the Python script; may be repeated # -F fieldsep : sets the field separator for the -a option [not in Perl] # -n : runs the script for each line of input # -p : prints the line after the script has run # When no script lines have been passed, the first file argument # contains the script. With -n or -p, the remaining arguments are # read as input to the script, line by line. If a file is '-' # or missing, standard input is read. # XXX To do: # - add -i extension option (change files in place) # - make a single loop over the files and lines (changes effect of 'break')? # - add an option to specify the record separator # - except for -n/-p, run directly from the file if at all possible import sys import getopt FS = '' SCRIPT = [] AFLAG = 0 CFLAG = 0 DFLAG = 0 NFLAG = 0 PFLAG = 0 try: optlist, ARGS = getopt.getopt(sys.argv[1:], 'acde:F:np') except getopt.error, msg: sys.stderr.write('%s: %s\n' % (sys.argv[0], msg)) sys.exit(2) for option, optarg in optlist: if option == '-a': AFLAG = 1 elif option == '-c': CFLAG = 1 elif option == '-d': DFLAG = 1 elif option == '-e': for line in optarg.split('\n'): SCRIPT.append(line) elif option == '-F': FS = optarg elif option == '-n': NFLAG = 1 PFLAG = 0 elif option == '-p': NFLAG = 1 PFLAG = 1 else: print option, 'not recognized???' if not ARGS: ARGS.append('-') if not SCRIPT: if ARGS[0] == '-': fp = sys.stdin else: fp = open(ARGS[0], 'r') while 1: line = fp.readline() if not line: break SCRIPT.append(line[:-1]) del fp del ARGS[0] if not ARGS: ARGS.append('-') if CFLAG: prologue = ['if 0:'] epilogue = [] elif NFLAG: # Note that it is on purpose that AFLAG and PFLAG are # tested dynamically each time through the loop prologue = [ 'LINECOUNT = 0', 'for FILE in ARGS:', ' \tif FILE == \'-\':', ' \t \tFP = sys.stdin', ' \telse:', ' \t \tFP = open(FILE, \'r\')', ' \tLINENO = 0', ' \twhile 1:', ' \t \tLINE = FP.readline()', ' \t \tif not LINE: break', ' \t \tLINENO = LINENO + 1', ' \t \tLINECOUNT = LINECOUNT + 1', ' \t \tL = LINE[:-1]', ' \t \taflag = AFLAG', ' \t \tif aflag:', ' \t \t \tif FS: F = L.split(FS)', ' \t \t \telse: F = L.split()' ] epilogue = [ ' \t \tif not PFLAG: continue', ' \t \tif aflag:', ' \t \t \tif FS: print FS.join(F)', ' \t \t \telse: print \' \'.join(F)', ' \t \telse: print L', ] else: prologue = ['if 1:'] epilogue = [] # Note that we indent using tabs only, so that any indentation style # used in 'command' will come out right after re-indentation. program = '\n'.join(prologue) + '\n' for line in SCRIPT: program += ' \t \t' + line + '\n' program += '\n'.join(epilogue) + '\n' import tempfile fp = tempfile.NamedTemporaryFile() fp.write(program) fp.flush() if DFLAG: import pdb pdb.run('execfile(%r)' % (fp.name,)) else: execfile(fp.name)
Close