Permanently Closed Marketplace Sales Thread

Status
Not open for further replies.
Captcha Sniper 5.10 Released

-NEW EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-add and updated a few captcha types, current total: 1291 (the most of any desktop captcha solver)

Download, install and copy your .lic file from the old folder.
 
Captcha Sniper 5.11 Released

-NEW EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-add and updated a few captcha types, current total: 1304 (the most of any desktop captcha solver)

-new image processing filter: Conditional Negate
-new custom trained database generator from your system fonts
-improved the captcha type detection/recognition engine

Download, install and copy your .lic file from the old folder.
 
A picture worths more than thousand words

i5t08z.jpg
 
iMacros Captcha solving with Captcha Sniper:

This assumes you have some basic understanding of how to write a macro in iMacros. You will need to have Captcha Sniper running of course and have the the correct captcha type selected. This speciic example was created in iMacros for firefox. You will need to click ?Options? then un-check Visual effects/Highligh object when found and click ?Apply?. Also note that the local file paths used in this demo are also specific to FireFox.

Code:
<Beginning of your iMacro Script>
'insert this code whenever you can see the capcha image within your own macro code
'this will delete any existing captcha image otherwise imacros will have errors
FILEDELETE NAME=c:\ captcha.jpg
'define where we want to download the captcha image
ONDOWNLOAD FOLDER=c:\ FILE=captcha.jpg
'this downloads the captcha image - this line below will be specific to the form you are writing your macro for.
TAG POS=1 TYPE=IMG FORM=ID:pgbSaveForm ATTR=HREF:"*asimg*" CONTENT=EVENT:SAVE_ELEMENT_SCREENSHOT
'this opens a new tab to submit the image to Captcha Sniper and loads the file that came with your download
URL GOTO=file:///C:/captchasnipertest.html
?this selects the captcha image we just saved so that we can send it to Captcha Sniper
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://poster.decaptcher.com/ ATTR=NAME:pict CONTENT=C:\captcha.jpg
?this sends the captcha image to Captcha Sniper
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://poster.decaptcher.com/ ATTR=VALUE:Send
?this extracts the answer from Captcha Sniper and saves it into a variable !VAR1
SET !EXTRACT_TEST_POPUP NO
TAG POS=1 TYPE=BODY ATTR=TXT:* EXTRACT=TXT
SET !VAR1 EVAL("var s=\"{{!EXTRACT}}\"; l=s.lastIndexOf(\"|\");s=s.substr(l+1);")
?close the tab
TAB CLOSE
?set the captcha image text box to the answer from Captcha Sniper.  Again, parts of the line below will be specific to the form you are writing your macro for.
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:fpg_form ATTR=NAME:fpg_antispam CONTENT={{!VAR1}}
<Remaining of your iMacro Script>

Can someone give me instructions on how to find " ATTR=HREF:"*asimg*" from a page.
Thankyou
 
Can someone give me instructions on how to find " ATTR=HREF:"*asimg*" from a page.
Thankyou

as noted in the line just above that, "this downloads the captcha image - this line below will be specific to the form you are writing your macro for."

Which means that your specific situation will be different. You are looking actually looking for the image src attribute but iMacros calls it the href. You can see use the iMacros image extract button or you can right click the captcha image in your browser and the click 'inspect' to find what you are looking for.

In the example above we used the wildcard character '*' because many times a part of the src attribute will be different upon each page load.
 
as noted in the line just above that, "this downloads the captcha image - this line below will be specific to the form you are writing your macro for."

Which means that your specific situation will be different. You are looking actually looking for the image src attribute but iMacros calls it the href. You can see use the iMacros image extract button or you can right click the captcha image in your browser and the click 'inspect' to find what you are looking for.

In the example above we used the wildcard character '*' because many times a part of the src attribute will be different upon each page load.

Perfect Answer! Thank you.
 
Trying to run the imacros script however I'm getting "RuntimeError: element INPUT specified by NAME:pict was not found" error. My code for that line is:
Code:
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://poster.decaptcher.com/ ATTR=NAME:pict CONTENT=C:\Users\Public\Documents\Captchas\captcha.jpg

Other than the captcha location, this is the code that came in the script provided by captchasniper. Anyone know how I can fix this or where to start looking to solve the problem?

Thank you
 
Trying to run the imacros script however I'm getting "RuntimeError: element INPUT specified by NAME:pict was not found" error. My code for that line is:
Code:
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://poster.decaptcher.com/ ATTR=NAME:pict CONTENT=C:\Users\Public\Documents\Captchas\captcha.jpg

Other than the captcha location, this is the code that came in the script provided by captchasniper. Anyone know how I can fix this or where to start looking to solve the problem?

Thank you
Trying to run the imacros script however I'm getting "RuntimeError: element INPUT specified by NAME:pict was not found" error. My code for that line is:
Code:
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:http://poster.decaptcher.com/ ATTR=NAME:pict CONTENT=C:\Users\Public\Documents\Captchas\captcha.jpg

Other than the captcha location, this is the code that came in the script provided by captchasniper. Anyone know how I can fix this or where to start looking to solve the problem?

Thank you

You might want to try googling "iMacros Recaptcha" and check out the various solutions. One thing to bear in mind is that Captcha Sniper will only solve at 12% one version of Recaptcha (which doesnt appear very often these days). The newer version of Recaptcha is not really solvable by software. There are some solutions out there, but they are cumbersome, complex and unstable.

The resources behind Recaptcha will always outweigh what independent developers have and it will always be a cat and mouse game.
 
You might want to try googling "iMacros Recaptcha" and check out the various solutions. One thing to bear in mind is that Captcha Sniper will only solve at 12% one version of Recaptcha (which doesnt appear very often these days). The newer version of Recaptcha is not really solvable by software. There are some solutions out there, but they are cumbersome, complex and unstable.

The resources behind Recaptcha will always outweigh what independent developers have and it will always be a cat and mouse game.

I'm not trying to use it for Recaptcha V2. I'm trying to get the imacros script that was provided to work with any of the other various captcha models, However iMacros throws out a Runtime error, saying
Code:
ATTR=NAME:pict
from the given script can not be found. Anyone else get the given iMacros script that is given to work? If so, what should I replace for
Code:
ATTR=NAME:pict
. I appreciate your assistance. I'm on day 2 of my trial and would really love to get this working.
 
I'm not trying to use it for Recaptcha V2. I'm trying to get the imacros script that was provided to work with any of the other various captcha models, However iMacros throws out a Runtime error, saying
Code:
ATTR=NAME:pict
from the given script can not be found. Anyone else get the given iMacros script that is given to work? If so, what should I replace for
Code:
ATTR=NAME:pict
. I appreciate your assistance. I'm on day 2 of my trial and would really love to get this working.

This line is sending the captcha that was just saved to captcha sniper. It is doing this from the file captchasnipertest.html which in the example is located in the root of the c drive. You would need to copy this file from the captcha sniper install / files folder to the root of c:\

You can ping me on skype: imbotz for further assistance.
 
This line is sending the captcha that was just saved to captcha sniper. It is doing this from the file captchasnipertest.html which in the example is located in the root of the c drive. You would need to copy this file from the captcha sniper install / files folder to the root of c:\

You can ping me on skype: imbotz for further assistance.


Just sent you a SKype message and contact request. Thanks
 
Are you same person? I thought it had looked similar to forum bot. when I had gotten your email from submitting my license.
 
Captcha Sniper 5.12 Released

-EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-updated/improved the solve rate on some captchas.
-fixed an issue with captcha type detection for multiple sizes

Download, install and copy your .lic file from the old folder.
 
Captcha Sniper 5.13 Released

-EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-updated/improved the solve rate on some captchas.
-added new captcha types - current total: 1313 (the most of any desktop captcha solver)

Download, install and copy your .lic file from the old folder.
 
Captcha Sniper 5.14 Released

-EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-updated/improved the solve rate on some captchas.
-added new captcha types - current total: 1318 (the most of any desktop captcha solver)
-fixed a bug with the hosts file redirects

Download, install and copy your .lic file from the old folder
 
Captcha Sniper 5.15 Released

-EXCLUSIVE PRICING FOR BHW .... ONLY $47 FOR A FULL LIFETIME LICENSE!!!!! - BUY NOW


-updated/improved the solve rate on some captchas.
-added new captcha types - current total: 1328 (the most of any desktop captcha solver)

Download, install and copy your .lic file from the old folder
 
Status
Not open for further replies.
Back
Top