mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-19 13:01:00 -07:00
Specify in the INSTALL file the steps for Android (termux)
This commit is contained in:
parent
ef3c334671
commit
f12dc459c1
2 changed files with 18 additions and 17 deletions
18
INSTALL
18
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
|
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
|
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:
|
For the Oracle login module, install the basic and SDK packages:
|
||||||
http://www.oracle.com/technetwork/database/features/instant-client/index.html
|
http://www.oracle.com/technetwork/database/features/instant-client/index.html
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue