当前位置:   article > 正文

爆破工具安装-centos6.10 神奇hydra\medusa\patator安装_medusa centos安装

medusa centos安装

因实验需要,需要在现有机器上安装hydra、medusa、patator等爆破工具

一、安装hydra

(参考:https://bugging.com.cn/2018/05/16/centos6-%E5%AE%89%E8%A3%85hydra/

1.从GitHub下载安装包:https://github.com/vanhauser-thc/thc-hydra/releases

2.tar xvf 解压

3.进入解压目录: 一顿操作(1) ./configure   (2)make    (3)make install

期间会出现错误,根据参考文章进行修改,vim hydra-svn.c

原第85-89行内容:

  1. //if ((err = svn_client_create_context(&ctx, pool))) {
  2. if ((err = svn_client_create_context2(&ctx, NULL, pool))) {
  3. svn_handle_error2(err, stderr, FALSE, "hydra: ");
  4. return 4;
  5. }

修改后:

  1. if ((err = svn_client_create_context(&ctx, pool))) {
  2. //if ((err = svn_client_create_context2(&ctx, NULL, pool))) {
  3. svn_handle_error2(err, stderr, FALSE, "hydra: ");
  4. return 4;
  5. }

原第109/110行内容:

  1. //err = svn_client_list2(canonical, &revision, &revision, svn_depth_unknown, dirents, FALSE, print_dirdummy, NULL, ctx, pool);
  2. err = svn_client_list3(canonical, &revision, &revision, svn_depth_unknown, dirents, FALSE, FALSE, (svn_client_list_func2_t) print_dirdummy, NULL, ctx, pool);

修改后:

  1. err = svn_client_list2(canonical, &revision, &revision, svn_depth_unknown, dirents, FALSE, print_dirdummy, NULL, ctx, pool);
  2. //err = svn_client_list3(canonical, &revision, &revision, svn_depth_unknown, dirents, FALSE, FALSE, (svn_client_list_func2_t) print_dirdummy, NULL, ctx, pool);

然后再一顿操作安装即可通过。

发现目前release版本还没支持RDP协议,只好安装老版本了:

wget https://github.com/v

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/130767
推荐阅读
相关标签
  

闽ICP备14008679号