Basic cURL help!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Basic cURL help!
# 8  
Old 06-24-2011
I'd give curl another go with setting Referrer (-e option) and maybe even spoof a desktop client (-A "Mozilla/5.0 (Windows NT 6.1; rv:2.0) Gecko/20110319 Firefox/4.0")
This User Gave Thanks to neutronscott For This Post:
# 9  
Old 06-27-2011
If you can monitor the session of a normal browser, it may give you some ideas. What to monitor with changes depending on where the browser is. You could connect indirectly using something in the middle, like tcp_relay.c modified to log the streams. If you have access and things are not too busy, you can monitor the packets.
This User Gave Thanks to DGPickett For This Post:
# 10  
Old 07-09-2011
ah..sorry..this is kinda late..but i figured out this thing i guess!! as you pointed out it was the headers!! and ya..coming to it..there is this extension for chrome.."Request Maker" along with "Tamper data"..these both were quite useful..along with..ofcourse you ppl!! thank u Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. SCO

Curl error

Hello I want to use the Curl and gives me this error. Can someone help me out # curl http : // www .google . es dynamic linker: curl: binder error: symbol not... (3 Replies)
Discussion started by: fersys
3 Replies

2. Shell Programming and Scripting

Using CURL in a script

Hi all so I'm new to scripting but I am making a script that is a url shortener. It will take a url off the command line and spit back the shortened version using bit.ly's api this is what I have so far if then echo "You must supply a URL." exit 1 fi read url... (3 Replies)
Discussion started by: subway69
3 Replies

3. Shell Programming and Scripting

Help with cURL

Hi all; first of all i need to clarify that i am new to apache2 server configuration and for some needs i want to transfer some files using curl to web directory,so please bear with me: following is the command i m running to transfer file to my web directory: curl -T "q"... (4 Replies)
Discussion started by: arien001
4 Replies

4. Programming

cURL and cgi

I have a CGI application done in c++ that communicates with PayPal. I've had an issue where the application dies when I try to perform a cURL operation. Upon further inspection it seems that I can run cURL examples from the command line. Upon even further inspection it seems that I can run... (8 Replies)
Discussion started by: tatebn
8 Replies

5. Shell Programming and Scripting

Curl command

Hello, I try to take out of the command curl the info of the time... time curl --write \"Downloaded %{time total}\" -o ...... but having some problem. (1 Reply)
Discussion started by: protocomm
1 Replies

6. Shell Programming and Scripting

use of curl

I have to transfer a file from my aix box to another server using ftps protocol, how can i achieve this using curl preferably or any other utility. Regards Sandeep (0 Replies)
Discussion started by: jayawantsandeep
0 Replies

7. AIX

use of curl

Hi guys , need some help I have to transfer a file from my aix box to another server using ftps protocol, how can i achieve this using curl preferably or any other utility. Thanks Sandeep (0 Replies)
Discussion started by: jayawantsandeep
0 Replies

8. Shell Programming and Scripting

curl

Aren't there any way to download files as below? For example, I want to download all .html files under the root directory of unix.com/ curl -O https://www.unix.com/*.html This won't work, but please tell me the way to do this. Well, the best way is to get the file list of the directory, but i... (6 Replies)
Discussion started by: Euler04
6 Replies
Login or Register to Ask a Question