From 2d12a0df6a2a441673d71316abd8c3ee30ee4ab0 Mon Sep 17 00:00:00 2001 From: Yisus7u7 <64093255+Yisus7u7@users.noreply.github.com> Date: Wed, 16 Jun 2021 16:06:21 -0500 Subject: [PATCH] Create index.md --- docs/android/index.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/android/index.md diff --git a/docs/android/index.md b/docs/android/index.md new file mode 100644 index 0000000..4480b3c --- /dev/null +++ b/docs/android/index.md @@ -0,0 +1,27 @@ +## thc-hydra +### How to compile hydra on Android + +Hydra is layers running on Android without rodent permission, +this is thanks to [Termux](https://termux.com/), A powerful emulator +of terminal with an ecosystem of packages. + +To compile hydra on Android, you will need to download +[Termux](https://termux.com/). + +I note that termux no longer provides support +for Android devices less than or equal to Android 6, +therefore your cell phone must be Android 7 or higher. + +After installing termux, enter the following commands +at your terminal: + +``` +# Update package list +pkg update && pkg upgrade +# Installing dependencies +pkg install -y x11-repo +pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3 +# Compiling hydra +./configure --prefix=$PREFIX +make && make install +```