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
14 lines
356 B
Python
Executable File
14 lines
356 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
def main():
|
|
# reboot the system
|
|
with open('/sys/class/gpio/export', 'w') as file:
|
|
file.write('502\n')
|
|
with open('/sys/class/gpio/gpio502/direction', 'w') as file:
|
|
file.write('out\n')
|
|
with open('/sys/class/gpio/gpio502/value', 'w') as file:
|
|
file.write('1\n')
|
|
|
|
if __name__ == "__main__":
|
|
main()
|