Need Help with online attacks
:confused: Hello guys hpefully you can help me out, i cant figure it out so far.
when i use hydra against a VM machine im no t able to do and ftp and ssh i get the following errors and im not able to figure it out.
Please HELP!:D
this is what i input:
root@bt:~# hydra 192.168.1.100 ssh -L /root/Desktop/username -P /root/Desktop/username
Code:
Error: Not an FTP protocol or service shutdown: 500 OOPS:
this is what i input:
root@bt:~# hydra 192.168.1.100 ftp -L /root/Desktop/username -P /root/Desktop/username
Code:
Compiled without LIBSSH v0.4.x support, module is not available!
any ideas
Re: Need Help with online attacks
Quote:
Compiled without LIBSSH v0.4.x support, module is not available!
Try to install libssh-dev if this does not work remove hydra and install libssh-dev after library installation is complete simply install hydra.
Re: Need Help with online attacks
Thanks for the reply ill try that :) and ket you know!
Re: Need Help with online attacks
Quote:
Originally Posted by
iliyapolak
Try to install libssh-dev if this does not work remove hydra and install libssh-dev after library installation is complete simply install hydra.
This did not work for me. I installed libssh-dev, then ran hydra again - no SSH support. So I uninstalled both libssh-dev and hydra, then re-installed libssh-dev, then installed hydra - still no SSH support.
I downloaded the hydra tarball from thc.org. In the README file it says if you want SSH support, to add a specific option to the "cmake command line." I tried using "cmake" instead of "make" with the option specified in the README, and I get an error saying there's no CMakeLists.txt. Is there a way to have this file created, or a way to add this option to "make" instead?
Re: Need Help with online attacks
Still Not being able to get it fixed any help guys Please?
Re: Need Help with online attacks
Ok. I was able to get hydra to compile with SSH support, but take caution: I am NOT a developer and have not tested if this has broken anything else with BackTrack. Maybe somebody more familiar can chime in and tell me if my steps interfere with any other programs.
Saying that, here's what I did to get it to get hydra to compile with an SSH option for services:
Code:
apt-get purge hydra
apt-get install cmake libssl-dev
cd /usr/local/src
wget http://www.libssh.org/files/0.4/libssh-0.4.8.tar.gz
tar zxf libssh-0.4.8.tar.gz
cd libssh-0.4.8
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_SSH1=ON ..
make
make install
cd /usr/local/src
wget http://freeworld.thc.org/releases/hydra-6.3-src.tar.gz
tar zxf hydra-6.3-src.tar.gz
cd hydra-6.3-src
./configure
make
make install
Now typing "hydra" I am able to see "ssh" as an available option for the service portion of the syntax.
This was my first time doing anything like this, so I feel really good I was able to get it to work haha. But if anybody tries this, please let me know if it worked for you and/or if it's messed with any other program.
Re: Need Help with online attacks
this worked great
thanks.....
Re: Need Help with online attacks
that works on Hydra 7.3 too
Thanks