From ef3c334671d94b60bc58d8220d723579f6229e7e Mon Sep 17 00:00:00 2001 From: Yisus7u7 <64093255+Yisus7u7@users.noreply.github.com> Date: Wed, 16 Jun 2021 02:30:45 -0500 Subject: [PATCH 1/4] Add termux setup file (android) --- setup-termux.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup-termux.sh diff --git a/setup-termux.sh b/setup-termux.sh new file mode 100644 index 0000000..38d4db2 --- /dev/null +++ b/setup-termux.sh @@ -0,0 +1,17 @@ +#!/bin/bash +#this script will configure hydra in termux + +TERMUX_PREFIX="/data/data/com.termux/files/usr" + +#required dependencies + +pkg update && pkg upgrade +pkg install -y x11-repo +pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3 + +#compile hydra + +./configure --prefix=$TERMUX_PREFIX +make +make install + From f12dc459c1e89aef0538b24f11724bb74752104b Mon Sep 17 00:00:00 2001 From: Yisus7u7 Date: Wed, 16 Jun 2021 03:01:07 -0500 Subject: [PATCH 2/4] Specify in the INSTALL file the steps for Android (termux) --- INSTALL | 18 ++++++++++++++++++ setup-termux.sh | 17 ----------------- 2 files changed, 18 insertions(+), 17 deletions(-) delete mode 100644 setup-termux.sh diff --git a/INSTALL b/INSTALL index 2258405..6bf3de7 100644 --- a/INSTALL +++ b/INSTALL @@ -6,6 +6,24 @@ you run "./configure": Redhat/Fedora: yum install openssl-devel pcre-devel ncpfs-devel postgresql-devel libssh-devel subversion-devel libncurses-devel OpenSuSE: zypper install libopenssl-devel pcre-devel libidn-devel ncpfs-devel libssh-devel postgresql-devel subversion-devel libncurses-devel + +### Note: + +Due to the Android file system, the installation on it is different, please follow these steps: + +``` +# Necessary 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 +``` + +To use xhydra, you will need to install a graphical output in termux, you can be guided from [this article](https://wiki.termux.com/wiki/Graphical_Environment) + + For the Oracle login module, install the basic and SDK packages: http://www.oracle.com/technetwork/database/features/instant-client/index.html diff --git a/setup-termux.sh b/setup-termux.sh deleted file mode 100644 index 38d4db2..0000000 --- a/setup-termux.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -#this script will configure hydra in termux - -TERMUX_PREFIX="/data/data/com.termux/files/usr" - -#required dependencies - -pkg update && pkg upgrade -pkg install -y x11-repo -pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3 - -#compile hydra - -./configure --prefix=$TERMUX_PREFIX -make -make install - From b7e77d767277453370d39235275d428cfad02c3c Mon Sep 17 00:00:00 2001 From: Yisus7u7 Date: Wed, 16 Jun 2021 03:03:31 -0500 Subject: [PATCH 3/4] Specify in the INSTALL file the steps for Android (termux) --- INSTALL | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 6bf3de7..c679c4f 100644 --- a/INSTALL +++ b/INSTALL @@ -7,11 +7,10 @@ you run "./configure": OpenSuSE: zypper install libopenssl-devel pcre-devel libidn-devel ncpfs-devel libssh-devel postgresql-devel subversion-devel libncurses-devel -### Note: +Note: Due to the Android file system, the installation on it is different, please follow these steps: -``` # Necessary dependencies pkg install -y x11-repo pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3 From f1cc9e6cfb290cdb4b7cf50e3bb4951aa05c8c2f Mon Sep 17 00:00:00 2001 From: Yisus7u7 Date: Wed, 16 Jun 2021 03:06:40 -0500 Subject: [PATCH 4/4] Specify in the INSTALL file the steps for Android (termux) --- INSTALL | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index c679c4f..b501691 100644 --- a/INSTALL +++ b/INSTALL @@ -18,9 +18,10 @@ pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3 ./configure --prefix=$PREFIX make make install -``` -To use xhydra, you will need to install a graphical output in termux, you can be guided from [this article](https://wiki.termux.com/wiki/Graphical_Environment) +To use xhydra, you will need to install a graphical output in termux, you can be guided from this article: + +https://wiki.termux.com/wiki/Graphical_Environment For the Oracle login module, install the basic and SDK packages: