Added AndroidOpenURL payload (#125)

pull/100/merge
bg-wa 2017-04-06 22:33:02 -07:00 committed by Sebastian Kinne
parent 5f582ed819
commit 63b281646a
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# android_open_url for Bash Bunnys
* Author: bg-wa
* Version: Version 1.0
* Target: Android 4.2.2
## Description
Opens the browser to a specified url on an unlocked android phone.
## Configuration
**By default this script will open https://www.hak5.org**
Set the URL param as desired.
## STATUS
| LED | Status |
| ------------------ | -------------------------------------------- |
| Green | Working |
| Red | Finished |

View File

@ -0,0 +1,32 @@
#!/bin/bash
#
# Title: Android Open Url (unlocked)
# Author: bg-wa
# Version: 1.0
# Target: Android (4.2.2)
# Props: Hak5
#
# Opens the browser to a specified url on an unlocked android phone.
#
LED G
#+++ USER CONFIG +++
URL="https://www.hak5.org/"
#+++ END USER CONFIG +++
ATTACKMODE HID
Q GUI b
Q DELAY 500
Q ENTER
Q DELAY 1000
Q CTRL l
Q DELAY 100
Q STRING "${URL}"
Q DELAY 100
Q ENTER
LED R