Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Tor+Proxychains+Curl

Programming languages, Coding, Executables, Package Creation, and Scripting.
Post Reply
Message
Author
hack3rcon
Posts: 746
Joined: 2015-02-16 09:54
Has thanked: 48 times

Tor+Proxychains+Curl

#1 Post by hack3rcon »

Hello,
I changed "Proxychains" configuration for using Tor. How can I use below code via proxychains:

Code: Select all

curl -X POST https://textbelt.com/text \
       --data-urlencode phone='' \
       --data-urlencode message='Hello world' \
       -d key=textbelt
Thank you.

reinob
Posts: 1189
Joined: 2014-06-30 11:42
Has thanked: 97 times
Been thanked: 47 times

Re: Tor+Proxychains+Curl

#2 Post by reinob »

hack3rcon wrote:Hello,
I changed "Proxychains" configuration for using Tor. How can I use below code via proxychains:

Code: Select all

curl -X POST https://textbelt.com/text \
       --data-urlencode phone='' \
       --data-urlencode message='Hello world' \
       -d key=textbelt
I'd start with "man proxychains". I think you'll clearly see how it is meant to be used.

PS1: If you just want to make a program use tor, you can use torsocks (or torify) instead of proxychains.
PS2: curl already supports using a proxy (man curl, quickly: curl --socks5-hostname localhost:9050), so you don't even need an extra tool.

hack3rcon
Posts: 746
Joined: 2015-02-16 09:54
Has thanked: 48 times

Re: Tor+Proxychains+Curl

#3 Post by hack3rcon »

Thank you.
I did "$ proxychains bash" then run the command, but not worked and showed me the page source code.
The curl parameter showed the same result.

reinob
Posts: 1189
Joined: 2014-06-30 11:42
Has thanked: 97 times
Been thanked: 47 times

Re: Tor+Proxychains+Curl

#4 Post by reinob »

hack3rcon wrote:Thank you.
I did "$ proxychains bash" then run the command, but not worked and showed me the page source code.
The curl parameter showed the same result.
I guess you didn't bother to read the webpage ("source code") that was returned to you, did you?

hint: many providers don't like people accessing their services via tor.

hack3rcon
Posts: 746
Joined: 2015-02-16 09:54
Has thanked: 48 times

Re: Tor+Proxychains+Curl

#5 Post by hack3rcon »

I guess you mean is "Cloudflare".
No idea about it?

reinob
Posts: 1189
Joined: 2014-06-30 11:42
Has thanked: 97 times
Been thanked: 47 times

Re: Tor+Proxychains+Curl

#6 Post by reinob »

hack3rcon wrote:I guess you mean is "Cloudflare".
No idea about it?
Well if you look at the webpage you see that it's cloudflare asking you to solve a captcha.
That means textbelt.com don't want tor users, which in this case means, they don't want you.

Post Reply