diff options
author | Thomas Van Iseghem <[email protected]> | 2022-12-18 11:55:41 +0100 |
---|---|---|
committer | Thomas Van Iseghem <[email protected]> | 2022-12-18 11:55:41 +0100 |
commit | a07ff26219ba7adf21f7f392d74fd1a67f126e08 (patch) | |
tree | 7a10bf1f1108e6e7f250449004e8c035661c7a2b | |
parent | bd0656c147c2a08d4a1f77c84e8603e3d8cc0b64 (diff) | |
download | OpenCortex-a07ff26219ba7adf21f7f392d74fd1a67f126e08.tar.gz OpenCortex-a07ff26219ba7adf21f7f392d74fd1a67f126e08.zip |
Fixed error in step 6
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -180,8 +180,10 @@ Now time for some cleanup. ## Step 6: restoring the update script Now that you have persistent access, there is no need to have the exploit anymore. You can keep it, but it poses a security risk and disables the update functionality. +To restore this, just remove the custom Python script, and replace it back with the original one. This can be done with the following commands: + ```console -rm cloud_updater_custom.py +rm cloud_updater.py mv cloud_updater_backup.py cloud_updater.py ``` |