dor@tehexploa
Registered Member
- Apr 25, 2009
- 95
- 26
I'm having trouble creating an automated e-mail POST script using cURL. I'm thinking it is failing for one of two reasons:
1. cookies aren't being deleted each time the script attempts to post a new e-mail address
2. the content data includes a random x and y value that isn't referenced in the source
my questions are:
- (1) Would curl keep/delete cookies in the following code?
for(i < whatever; i++)
{curl_init(); curl_exec()}
// I have proper set_opt's establishing cookie use w/
// CURLOPT_COOKIEFILE and CURLOPT_COOKIEJAR
- (2) if the source code doesn't contain any reference to the values used in the fields x and y and doesn't refer to any .js anywhere what could these values be?
'Email=' . urlencode($emails[$i]) . '&x=77&y=21'
that's an example of how i hardcoded a response
but this combined with my suspicions above have given me results but results that indicate i've used the same IP or e-mail already which I haven't..
if anyone wants/needs more info i can PM them
1. cookies aren't being deleted each time the script attempts to post a new e-mail address
2. the content data includes a random x and y value that isn't referenced in the source
my questions are:
- (1) Would curl keep/delete cookies in the following code?
for(i < whatever; i++)
{curl_init(); curl_exec()}
// I have proper set_opt's establishing cookie use w/
// CURLOPT_COOKIEFILE and CURLOPT_COOKIEJAR
- (2) if the source code doesn't contain any reference to the values used in the fields x and y and doesn't refer to any .js anywhere what could these values be?
'Email=' . urlencode($emails[$i]) . '&x=77&y=21'
that's an example of how i hardcoded a response
but this combined with my suspicions above have given me results but results that indicate i've used the same IP or e-mail already which I haven't..
if anyone wants/needs more info i can PM them