Results 1 to 3 of 3

Thread: Hydra using Proxy

  1. #1
    Join Date
    2013-Jul
    Posts
    1

    Hydra using Proxy

    I want to add proxy to my hydra command. Already read the manual, it says to add HYDRA_PROXY="127.0.0.1:8080" but i don't know where i need to add it.

    Here's my complete command:
    hydra -S -l username -P /root/pass/tes.txt 192.168.1.13 http-post-form -f "/secure/login.action:usrid=^USER^&pass=^PASS^:Wrong" HYDRA_PROXY="127.0.0.1:8080"

    If i use this command, hydra only print the help. No ERROR whatsoever, this drive me crazy because I don't know what's wrong.

    I need to use the proxy because kept i getting false positive results from hydra. To troubleshoot this, I plan to inspect the html data using burp suite. That's why I need to connect hydra to proxy.

    Plz help!

  2. #2
    Join Date
    2013-Aug
    Posts
    1
    Quote Originally Posted by zerolimit View Post
    I want to add proxy to my hydra command. Already read the manual, it says to add HYDRA_PROXY="127.0.0.1:8080" but i don't know where i need to add it.

    Here's my complete command:
    hydra -S -l username -P /root/pass/tes.txt 192.168.1.13 http-post-form -f "/secure/login.action:usrid=^USER^&pass=^PASS^:Wrong" HYDRA_PROXY="127.0.0.1:8080"

    If i use this command, hydra only print the help. No ERROR whatsoever, this drive me crazy because I don't know what's wrong.

    I need to use the proxy because kept i getting false positive results from hydra. To troubleshoot this, I plan to inspect the html data using burp suite. That's why I need to connect hydra to proxy.

    Plz help!
    Why don't you just populate your proxychains.conf file and run: proxychains hydra ....?

  3. #3

    Answer that

    Hello

    Having the same question here, I figured it quite quick.
    ( The question is only 1 month old and well refered in Google, that's why I am posting this here )

    The HYDRA_PROXY ( and sisters ) variables are environnement variables
    you must add them in your console like this :
    Code:
    you@yourbox:~$ HYDRA_PROXY=http://127.0.0.1:8080
    or ...

    Code:
    you@yourbox:~$ HYDRA_PROXY=socks4://127.0.0.1:8118
    etc.
    then type

    Code:
    you@yourbox:~$ export HYDRA_PROXY
    check that your variable is now set in your environment :

    Code:
    you@yourbox:~$ printenv | grep HYDRA
    When you'll launch you hydra command now, you will notice this line :
    Code:
    Hydra (http://www.thc.org/thc-hydra) starting at 2013-XX
    [INFO] Using Connect Proxy: socks4://127.0.0.1:8118
    Regards

    Pierce

Similar Threads

  1. Proxy Chains - Not Recognizing Proxy Server
    By gtwcs14 in forum How-To Archive
    Replies: 0
    Last Post: 2020-08-14, 02:13
  2. Hydra issue, hydra -R repeated
    By chrisso in forum General Archive
    Replies: 1
    Last Post: 2015-08-23, 19:58

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •