Jump to content
UBot Underground

Nightmare captcha input field


Recommended Posts

Hi Guys

 

Im having a very difficult time filling in the captcha field on the following site

 

http://webx.ntu.edu.sg/hall7/index_files/page0002.htm

 

Its on the right hand side

 

After you have filled out the the name - url and message - once you click shout then it prompts for a captcha -

 

Im unable to send the captcha code to the text field provided

 

Looking it up on my browser - I see its called spamCode -

 

Any help would be gret

 

thanks

 

abs

Link to post
Share on other sites

capture image from <img src="http://oggix.com/shout/post/pwgen.php?rand=432&thepassword=xddmDSVtlEU%3D">

using wildcards for rand and thepassword

 

crack it and post value to spamCode text field

then submit :)

 

 

<div id="shout">
<div id="name"><b>Spam Prevention</b></div>
<div id="date"><br><img src="http://oggix.com/shout/post/pwgen.php?rand=432&thepassword=xddmDSVtlEU%3D"> <br><br></div>
<div id="comment">Please insert text in the image above:</div>
<div id="date"><input name="spamCode" value="" type="text"></div>
<div id="comment"><br><input name="submit" value="Submit" type="submit"><br><br></div>
	<div id="hr"><hr noshade="noshade" size="1"></div>

</div>

 

Have it continually run in loop searching page for "Spam Prevention" or "spamCode"

 

Let me know how it turns out.

 

TJ

Link to post
Share on other sites

capture image from <img src="http://oggix.com/shout/post/pwgen.php?rand=432&thepassword=xddmDSVtlEU%3D">

using wildcards for rand and thepassword

 

crack it and post value to spamCode text field

then submit :)

 

 

<div id="shout">
<div id="name"><b>Spam Prevention</b></div>
<div id="date"><br><img src="http://oggix.com/shout/post/pwgen.php?rand=432&thepassword=xddmDSVtlEU%3D"> <br><br></div>
<div id="comment">Please insert text in the image above:</div>
<div id="date"><input name="spamCode" value="" type="text"></div>
<div id="comment"><br><input name="submit" value="Submit" type="submit"><br><br></div>
	<div id="hr"><hr noshade="noshade" size="1"></div>

</div>

 

Have it continually run in loop searching page for "Spam Prevention" or "spamCode"

 

Let me know how it turns out.

 

TJ

 

 

Hi - Any chance of a example bot - As I am able to see the code inside of mozilla however not inside of Ubot

 

So when I search for the image it is not found

 

Also I am unable to write to the spamCode field

 

Thanks

Link to post
Share on other sites

Hi - Thanks alot for all your efforts

 

Its a hard one for sure

 

just cant understand why I cant see the capthca image in Ubot but can in Mozilla

 

And I just cant get the captcha field reply box to enter

Link to post
Share on other sites

this might get u closer...

 

webx captcha.ubot

 

Hi Thanks for having a look

 

Ive actually managed to narrow the capture down using one command - But its still a very uncleanway of pulling it

 

Ive attached the bot -

 

Getting the text into the spamCode is the hardest -

 

One thing you can do if you get a chance is have a look at the page using the web developers tool bar

 

Under the forms menu click on view form information

 

You will be taken to a new page showing all the details

 

What you will notice is that it uses password and codes -

 

Then it also points to a url http://www.oggix.com/shout/post/

 

It may well be writing to the url using the code and password to hit the correct location

 

It may not be anything - I also played with it for a couple of hours - then gave up because my head started to spin

 

But if you get a chance to look at the form info - I believe this could lead to a solve

 

Thanks

sample.ubot

Link to post
Share on other sites

Not quite. But at least Davids code gets me a lot closer. Having an iframe plus a form is really complicating things.

it is almost like ubot doesnt see the iframe....

 

 

a java coder could probably scream thru this just by using java to imput the values since the page seems to respond to that....

Link to post
Share on other sites

Unfortunately, there does not seem to be a solution. While David's potential solution gets us closer it is just not close enough. After spending quite a bit of time on this I passed it up the food chain here and the developers came to the same conclusion.

 

They did state that this would not be a problem in the next version. So until that time we will just have to wait before we can solve this particular issue.

Link to post
Share on other sites

HI

 

Thanks to all that helped try and solve this with me -

 

A special thanks to David, Botbuddy, LoWrIdErTJ and the Ubot support staff

 

Even though we were unable to solve it - Im sure it gives Seth and Eddie something to look at when working on V4

 

If you need more urls like this then feel free to let me know

 

thanks

 

Abs

Link to post
Share on other sites

Right now, UBot can't access the iframe because it is on another domain, and IE does not let you access iframes from other domains due to security issues. Luckily this isn't an issue in UBot 4 :).

 

Anyway, we can work around this in a somewhat hacky way by using sendkeys :).

 

Try out this attached bot, it seems to work well for me.

 

sample-eddie.ubot

  • Like 3
Link to post
Share on other sites

Right now, UBot can't access the iframe because it is on another domain, and IE does not let you access iframes from other domains due to security issues. Luckily this isn't an issue in UBot 4 :).

 

Anyway, we can work around this in a somewhat hacky way by using sendkeys :).

 

Try out this attached bot, it seems to work well for me.

 

sample-eddie.ubot

 

not sure why that worked, but it does... nice job eddie.....

 

how is the "select attribute" of "name" , "shout" picking up the captcha text input field???

 

is that what focus chosen is doing?

 

 

also, is there a way to resize the captcha dialog box so that the "enter" key shows up?

 

thanks

 

still scratching my head, david

 

 

ps==== +1 given, nice job!!!

Link to post
Share on other sites

not sure why that worked, but it does... nice job eddie.....

 

how is the "select attribute" of "name" , "shout" picking up the captcha text input field???

 

is that what focus chosen is doing?

 

 

also, is there a way to resize the captcha dialog box so that the "enter" key shows up?

 

thanks

 

still scratching my head, david

 

 

ps==== +1 given, nice job!!!

 

 

"shout" is the name of the iframe. I'm focusing on the iframe, and then sending the tab key into it to tab to the captcha field. Then entering the text and using the newline to send an enter keypress to submit it.

 

I'm not sure about resizing the captcha dialog box, seems like it should do that itself since it knows the size of the image haha.

 

Hope that helps.

Link to post
Share on other sites

Interesting. Well, I would have given you a +1 if it had added the captcha to the box but in my three attempts it didn't.

 

Lookin forward to seeing v4

 

LOL...well he DID get a LOT further than any of us! +1

 

 

 

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...