updated 2021-06-23
Version 2105 (Build 14026.20302)
==========================================
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader | |
== Shell |
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
namespace AES | |
{ | |
class Program | |
{ | |
static string aes_key = "AXe8YwuIn1zxt3FPWTZFlAa14EHdPAdN9FaZ9RQWihc="; | |
static string aes_iv = "bsxnWolsAyO7kCfWuyrnqg=="; |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
FROM ubuntu | |
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get upgrade | |
RUN apt-get install -y openssh-server supervisor | |
ADD sshd.conf /etc/supervisor/conf.d/sshd.conf | |
RUN mkdir -p /var/run/sshd |