3cd9b2e1b5
Signed-off-by: maipbui <maibui@microsoft.com> #### Why I did it `subprocess.Popen()` and `subprocess.run()` is used with `shell=True`, which is very dangerous for shell injection. `os` - not secure against maliciously constructed input and dangerous if used to evaluate dynamic content #### How I did it Replace `os` by `subprocess`, remove `shell=True` Remove unused functions
16 lines
328 B
Python
Executable File
16 lines
328 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import subprocess
|
|
import time
|
|
|
|
def main():
|
|
subprocess.call(['hwclock', '-w', '-f', '/dev/rtc1'])
|
|
time.sleep(1)
|
|
|
|
subprocess.call(['i2cset', '-y', '0', '0x36', '0x23', '0'])
|
|
time.sleep(1)
|
|
subprocess.call(['i2cset', '-y', '0', '0x36', '0x23', '1'])
|
|
|
|
if __name__ == '__main__':
|
|
main()
|