Jump to content
UBot Underground

Is This Possible With Exbrowser ?


Recommended Posts

Hello,

 

As i heard a lot that anything is possible with EXB, i would like to know how this type of problem can be solved.

I spent a day without success.

 

The main question how to know which element to click on random images where the good picture is the upside down one.

 

tQlCHjw.png

91ggxNO.png

 

Here is what i get with firefox EXB elements inspector

<td valign="middle">

<map name="Map" id="Map">
<area shape="rect" coords="0,0,50,50" href="javascript:void(0);" onclick="endprogress(1);">
<area shape="rect" coords="100,0,50,50" href="javascript:void(0);" onclick="endprogress(2);">
<area shape="rect" coords="150,0,50,50" href="javascript:void(0);" onclick="endprogress(3);">
<area shape="rect" coords="200,0,50,50" href="javascript:void(0);" onclick="endprogress(4);">
<area shape="rect" coords="250,0,50,50" href="javascript:void(0);" onclick="endprogress(5);">
<area shape="rect" coords="300,0,50,50" href="javascript:void(0);" onclick="endprogress(6);">
</map>                
<img src="modules.php?m=surfer&show=captcha" usemap="#Map" border="0">
                </td>
Link to post
Share on other sites

Yes docta :(

I make the user to clic it manually but i cant click 1000 all day lol

I did not see anything in the html indicating that, i ve just notice in the inspector after each onclick="endprogress(1);"> i see a little button "Event"

Thanks anyway for help

Link to post
Share on other sites

Find all images if possible, make a script that saves all md5 hashes and then flips the image and saves all flipped md5 hashes in a different folder. Then convert all images in the captcha to md5 hashes and compare them against the flipped image folder.

  • Like 1
Link to post
Share on other sites

Find all images if possible, make a script that saves all md5 hashes and then flips the image and saves all flipped md5 hashes in a different folder. Then convert all images in the captcha to md5 hashes and compare them against the flipped image folder.

Oh my God Masta you point me towards a good way, let me try to understand it and feedback

Thanks a lot

Link to post
Share on other sites

Hello Masta i am back, i have noticed that when i load a page which showing captcha, i have that link :

 

http://www.rileyfelton.com/modules.php?m=surfer&show=captcha

 

When i navigate to that link i have the 6 pictures in 1 png image.

 

I am trying to save them which the flip image position. (see screenshot below)

 

http://prntscr.com/oxd2ov

 

My question is : even i can recognize the picture compared to the one i have download and determine the position to click (1 to 6) how will i send the click to the browser?

 

Thanks in advance

Link to post
Share on other sites

See if you can use save element image on the area tag it may be able to save them individually, otherwise you would have to slice them maybe using image magick or the crop command in the image commands in Ubot (they are in the bot bank)

Link to post
Share on other sites
  • 2 weeks later...

See if you can use save element image on the area tag it may be able to save them individually, otherwise you would have to slice them maybe using image magick or the crop command in the image commands in Ubot (they are in the bot bank)

Hello Masta,

I finally got a time and try your way.

Everytime it shows a captcha i have used the url below to download the image in png

http://www.rileyfelton.com/modules.php?m=surfer&show=captcha

Then i got a list of lot of pictures with the right position to click.

My problem is that after get these pictures's md5 hash with cm certutil i have notice that when i download the captcha corresponding the hashes are not the same.

Did i missed something ?

 

tt8GjY3.png

Link to post
Share on other sites

If you save the exact same image and use the MD5 plugin and use the function $MD5 from file then you should end up with the same hash to compare.

 

example:

navigate("https://en.wikipedia.org/wiki/Pizza","Wait")
save element image(<alt="Eq it-na pizza-margherita sep2005 sml.jpg">,"{$special folder("Desktop")}\\pizza1.jpg")
wait(1)
navigate("https://en.wikipedia.org/wiki/Pizza","Wait")
save element image(<alt="Eq it-na pizza-margherita sep2005 sml.jpg">,"{$special folder("Desktop")}\\pizza2.jpg")
set(#file1,$plugin function("MD5.dll", "$MD5 from file", "{$special folder("Desktop")}\\pizza1.jpg"),"Global")
set(#file2,$plugin function("MD5.dll", "$MD5 from file", "{$special folder("Desktop")}\\pizza2.jpg"),"Global")
if($comparison(#file1,"=",#file2)) {
    then {
        alert("match")
    }
    else {
        alert("no match")
    }
}
  • Like 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...