This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
strx = input('Enter your b64 encoded string') | |
n = int(input('Enter number of times to decode')) | |
for i in range(n): | |
strx = base64.b64decode(strx) | |
#convert bytes to string | |
res = (str(strx)) | |
#chuck b'' | |
print(res[2:-1]) |