Skip to content

Commit

Permalink
Merge pull request #609 from jeffmcjunkin/patch-14
Browse files Browse the repository at this point in the history
Update hydra.py: Add cmake dependency
  • Loading branch information
HackingDave committed May 24, 2024
2 parents 282d34d + 8e58889 commit d62d266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/vulnerability-analysis/hydra.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
INSTALL_LOCATION="hydra"

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="libssl-dev libssh-dev libidn11-dev libpcre3-dev libgtk2.0-dev libmysqlclient-dev libpq-dev libsvn-dev firebird-dev ldap-utils ruby-dev"
DEBIAN="libssl-dev libssh-dev libidn11-dev libpcre3-dev libgtk2.0-dev libmysqlclient-dev libpq-dev libsvn-dev firebird-dev ldap-utils ruby-dev cmake"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="openssl-devel pcre-devel ncpfs-devel postgresql-devel libssh-devel subversion-devel libncurses-devel"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="echo installing hydra,cd {INSTALL_LOCATION},git clone http://git.libssh.org/projects/libssh.git libssh,cd libssh,mkdir build,cd build,cmake -DWITH_SSH1=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..,make -j4,make install,cd ../../,./configure,make -j4,make install"
AFTER_COMMANDS="cd {INSTALL_LOCATION},git clone http://git.libssh.org/projects/libssh.git libssh,cd libssh,mkdir build,cd build,cmake -DWITH_SSH1=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..,make -j4,make install,cd ../../,./configure,make -j4,make install"

# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER="hydra"

0 comments on commit d62d266

Please sign in to comment.