From 92ef7d7455d8aca7ed6f3295d0dc21bcd28741ed Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Thu, 17 Jun 2021 16:16:43 +0200 Subject: [PATCH] Revert "Merge pull request #666 from Yisus7u7/master" This reverts commit 5b98a23140d50b40389b284d64d0f2396f386efc, reversing changes made to a6784e40213b3709990f307f0e892832680625cc. --- README.md | 14 ++++---------- _config.yml | 2 +- docs/android/index.md | 42 ------------------------------------------ 3 files changed, 5 insertions(+), 53 deletions(-) delete mode 100644 docs/android/index.md diff --git a/README.md b/README.md index dd0f8e0..322da43 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -![image](https://opengraph.githubassets.com/91871daab983cd69e18846c4f5c40a547e91638b3fe6064d81d9bb4574d95e73/vanhauser-thc/thc-hydra) - - H Y D R A @@ -55,12 +52,12 @@ Your help in writing, enhancing or fixing modules is highly appreciated!! :-) WHERE TO GET ------------ You can always find the newest release/production version of hydra at its -project page at [https://github.com/vanhauser-thc/thc-hydra/releases](https://github.com/vanhauser-thc/thc-hydra/releases) +project page at https://github.com/vanhauser-thc/thc-hydra/releases If you are interested in the current development state, the public development repository is at Github: - svn co [https://github.com/vanhauser-thc/thc-hydra](https://github.com/vanhauser-thc/thc-hydra) + svn co https://github.com/vanhauser-thc/thc-hydra or - git clone [https://github.com/vanhauser-thc/thc-hydra](https://github.com/vanhauser-thc/thc-hydra) + git clone https://github.com/vanhauser-thc/thc-hydra Use the development version at your own risk. It contains new features and new bugs. Things might not work! @@ -76,11 +73,8 @@ make make install ``` -`Note`: To compile hydra on Android (termux) [follow this articule](https://vanhauser-thc.github.io/thc-hydra/docs/android) - - If you want the ssh module, you have to setup libssh (not libssh2!) on your -system, get it from [http://www.libssh.org](http://www.libssh.org), for ssh v1 support you also need +system, get it from http://www.libssh.org, for ssh v1 support you also need to add "-DWITH_SSH1=On" option in the cmake command line. IMPORTANT: If you compile on MacOS then you must do this - do not install libssh via brew! diff --git a/_config.yml b/_config.yml index 427c783..225f091 100644 --- a/_config.yml +++ b/_config.yml @@ -1,2 +1,2 @@ title: "thc-hydra" -theme: jekyll-theme-slate +theme: jekyll-theme-midnight diff --git a/docs/android/index.md b/docs/android/index.md deleted file mode 100644 index 4b70ab9..0000000 --- a/docs/android/index.md +++ /dev/null @@ -1,42 +0,0 @@ -## thc-hydra -### How to compile hydra on Android - -Hydra can run on Android without root permissions, -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 -``` - -then you can use hydra in the termux terminal - -To use xhydra (GUI), you will need to install a graphical output in termux, you can be guided from this article: - -[https://wiki.termux.com/wiki/Graphical_Environment](https://wiki.termux.com/wiki/Graphical_Environment) - -If you have never used a GUI on Android or are not able to configure it, -you can use these projects from the termux community: - -- [openbox by adi1090x](https://github.com/adi1090x/termux-desktop) - -- [lxqt by yisus](https://github.com/Yisus7u7/termux-desktop-lxqt) - -- [xfce4 by yisus](https://github.com/Yisus7u7/termux-desktop-xfce)