Hi guys,
I hope someone can help me out. I'm about ready to pull my hair out. I'm trying to auto create accounts at feedage.com; however, I'm having trouble with the form submission.
I'm trying to submit to http://www.feedage.com/myfeedage/signup.php
To auto submit, I'm trying to pass the following url with all of the form elements including the recaptcha challenge & response key:
http://www.
feedage.com/myfeedage/signup.php?ref=http://www.feedage.com/myfeedage/signup.php&un=iamcool1&pw1=iamabadass1&pw2=iamabadass1&email=myemail%40gmail.com&nl=yes&recaptcha_challenge_field=03AHJ_VutY6kctWAdmI0FWUt5KulJ9NrKfNSN73ZhOOamcq82DmUBpOaesNtCwQvWl_W2XJvSWfcovk3YV4QPQ11ryB68szHJOJb7sSA7hpxYBf2gm9dycljL5V8KfIRsMBcALMDe1CuE21DO8NDOSOGENLBi-hxrxoQ&recaptcha_response_field=lksloss+left&submit=Sign+Up
(I'm passing this url using curl in php.)
I hope someone can tell me what I'm missing.
Thanks in advance!
Here's the page source:
I hope someone can help me out. I'm about ready to pull my hair out. I'm trying to auto create accounts at feedage.com; however, I'm having trouble with the form submission.
I'm trying to submit to http://www.feedage.com/myfeedage/signup.php
To auto submit, I'm trying to pass the following url with all of the form elements including the recaptcha challenge & response key:
http://www.
feedage.com/myfeedage/signup.php?ref=http://www.feedage.com/myfeedage/signup.php&un=iamcool1&pw1=iamabadass1&pw2=iamabadass1&email=myemail%40gmail.com&nl=yes&recaptcha_challenge_field=03AHJ_VutY6kctWAdmI0FWUt5KulJ9NrKfNSN73ZhOOamcq82DmUBpOaesNtCwQvWl_W2XJvSWfcovk3YV4QPQ11ryB68szHJOJb7sSA7hpxYBf2gm9dycljL5V8KfIRsMBcALMDe1CuE21DO8NDOSOGENLBi-hxrxoQ&recaptcha_response_field=lksloss+left&submit=Sign+Up
(I'm passing this url using curl in php.)
I hope someone can tell me what I'm missing.
Thanks in advance!
Here's the page source:
Code:
<form name="form1" method="post" action="/myfeedage/signup.php">
<input type="hidden" name="ref" value="http://www.feedage.com/myfeedage/signup.php" />
<table width="95%" border="0" align="center" cellpadding="4" cellspacing="3" class="featured_cell_content">
<tr>
<td width="34%"><div align="right" class="input_label">Username:</div></td>
<td colspan="2"><input name="un" type="text" id="un" class="text_input_required" size="32" maxlength="32" value="" >
<div class="error_text"></div>
</td>
</tr>
<tr>
<td><div align="right" class="input_label">Password:</div></td>
<td colspan="2"><input name="pw1" type="password" id="pw1" class="text_input_required" size="32" maxlength="32" value="">
<div class="error_text"></div>
</td>
</tr>
<tr>
<td><div align="right" class="input_label">Re-enter password:</div></td>
<td colspan="2"><input name="pw2" type="password" id="pw2" class="text_input_required" size="32" maxlength="32"></td>
</tr>
<tr>
<td><div align="right" class="input_label">Your Email:</div></td>
<td colspan="2"><input name="email" type="text" id="email" class="text_input_required" size="32" maxlength="48" value="" >
<div class="error_text"></div>
</td>
</tr>
<tr>
<td><div align="right" class="input_label">Receive Feedage Newletter:</div></td>
<td colspan="2"><input name="nl" type="checkbox" id="nl" value="yes" checked></td>
</tr>
<tr>
<td><script type="text/javascript" src="[URL="http://thebotnet.com/view-source:http://api.recaptcha.net/challenge?k=6LfJKgwAAAAAAMI29-P3XVTr3Pjo0Cy5mPldGPbG"]http://api.recaptcha.net/challenge?k=6LfJKgwAAAAAAMI29-P3XVTr3Pjo0Cy5mPldGPbG[/URL]"></script>
<noscript>
<iframe src="http://api.recaptcha.net/noscript?k=6LfJKgwAAAAAAMI29-P3XVTr3Pjo0Cy5mPldGPbG" height="300" width="500" frameborder="0"></iframe><br/>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript> <div class="error_text"></div>
</td>
<td width="23%"><div align="center">
<input type="submit" name="submit" value="Sign Up">
</div></td>
<td width="43%" class="contentsm">By clicking Sign Up, you are
indicating that you have read and agree to the <a href="[URL="http://thebotnet.com/view-source:http://www.feedage.com/terms_of_service.php"]../terms_of_service.php[/URL]">Terms
of Service</a>.</td>
</tr>
</table>
</form>