this found and skipped is only shown if you use the option to skip/randomize "if a form field can not be filled" is set. If you set it to "Ask user", it will ask you.
You can still have it to RANDOMIZE. Of course the services will be asked first.
Order to resolve is the following:
1. try to answer this by itself in case a math captcha is detected or one of the many 1000's known questions
2. service is asked if enabled
3. user is asked (ASK USER setting) or submission is skipped (SKIP, RANDOMIZE) as a randomized answer to the question will most likely not be successful.
This field has a SPAM protection. Each time the name= and id= get a randomly generated number. So how can I tell SER to chose this field withought relying on name and id?
<input class="form-control" data-content="This should be a unique combination of numbers and letters that you'll be able to remember... but no one else will be able to figure out." data-toggle="popover" id="a3a09e4a87e917b05223f5b3e8aa15e7" name="a3a09e4a87e917b05223f5b3e8aa15e7" type="password" data-original-title="" title="">
I understand we use fron1 to extract the ID=value and front2 to extract the name= value right? But why do we need both? Shouldn't one of them suffice?
Also on front1, I am guessing you shortened the string? Shouldn't the complete string be:
front1=data-content="This should be a unique combination of numbers and letters that you'll be able to remember... but no one else will be able to figure out." data-toggle="popover" id="
Where do I add this part?In the registration stepts(since I encounter this antispam problem there) or in [spam_detection_name]?
add fixed data= %spam_detection_name% =
add fixed data condition= data-content="This should be a unique combination of numbers and letters that
I have 5 fields with this antispam that I need to extract from the page?(username,email,email verrif,password,password verrif).
Do I create an "extract" for all?([spam_detection_name],[spam_detection_email],[spam_detection_email_verrif],[spam_detection_password],[spam_detection_password_verrif]
front1 and front2 are searched in sequence. First SER searches for front1 and if found searches from that position for front2 and so on. Then it takes that stuff fron that position to the location written in "back=...".
---
add fixed data has to be put in the section where the submission takes place.
---
as I understood your copied stuff, it is an empty variable without content right? If not then you have to extract the content as well or simply use
*=%leave% to not define any other fields automatically.
Almost all of these websites got generated fields. SER can recognize the form but most of the data is posted via add fixed data. (like username password, password2 and email)
For username it seems easy, beacuse first match will pickup username field:
front1=<input type="text" id=" back="
Next thing are passwords, first is picked up using
front1=<input type="password" id=" back="
As you can see the second password input is different
I tried using many backs to match back2=tabindex="1" value="" but i couldnt get it to work.
For e-mail we want to use
front1=<input type="text" id=" back="
But we have to match nr.2 aswell.
Now, what's the solution here? I already thought about custom script on my domain where SER visits that and then gets back custom field names - but really is that the best solution here?:)
@ also being able to use variable in must have= could solve the problem
Yes it is working thank you, but a question here, from what i see %variable% cant be used in add fixed data=%variable% right? Do you plan to support that?
Can we send SER text captcha in variable? If yes, how? Example:
Comments
I mean, what option (in project settings ?) will turn ON text captcha solving?
easycalccheck=%question% <label for='easycalccheck'>;<input|<next label>;<
this found and skipped is only shown if you use the option to skip/randomize "if a form field can not be filled" is set. If you set it to "Ask user", it will ask you.
You can still have it to RANDOMIZE. Of course the services will be asked first.
Order to resolve is the following:
1. try to answer this by itself in case a math captcha is detected or one of the many 1000's known questions
2. service is asked if enabled
3. user is asked (ASK USER setting) or submission is skipped (SKIP, RANDOMIZE) as a randomized answer to the question will most likely not be successful.
enabled=1
Once it added my links to 192 subdomains then it stop. Sometimes it stop like that at 22
And after a while i can see:
But using this option, it works fine.
Do we need anything like
beacuse in preview its working, in posting its not
[spam_detection_name]
type=extract
front1=data-content="This should be a unique combination of numbers and letters that
front2=name="
back="
...
add fixed data= %spam_detection_name% =
add fixed data condition=
data-content="This should be a unique combination of numbers and letters that
add fixed data= %spam_detection_name% =
add fixed data condition=
data-content="This should be a unique combination of numbers and letters that
Does this work?
add fixed data= %spam_detection_name% = %password%
I have 5 fields with this antispam that I need to extract from the page?(username,email,email verrif,password,password verrif).
Do I create an "extract" for all?([spam_detection_name],[spam_detection_email],[spam_detection_email_verrif],[spam_detection_password],[spam_detection_password_verrif]
Thanks!
front1 and front2 are searched in sequence. First SER searches for front1 and if found searches from that position for front2 and so on. Then it takes that stuff fron that position to the location written in "back=...".
---
add fixed data has to be put in the section where the submission takes place.
---
as I understood your copied stuff, it is an empty variable without content right? If not then you have to extract the content as well or simply use
*=%leave% to not define any other fields automatically.
If you want to add multiple terms then:
add fixed data=%nr1%=%login%;nr2=login
add fixed data condition=nr1match;nr2match
extra step 1
Also, maybe SER can match by <input type="password" ?
must have can not have variables sorry. You have to solve it differently. Remember you can use alternative front stuff like
front1=try1|try2|try3|...
http://www.scriptcode.net/member.php?mod=register
http://bbs.akxw.cn/member.php?mod=register
Almost all of these websites got generated fields.
SER can recognize the form but most of the data is posted via add fixed data.
(like username password, password2 and email)
For username it seems easy, beacuse first match will pickup username field:
front1=<input type="text" id="
back="
Next thing are passwords, first is picked up using
front1=<input type="password" id="
back="
As you can see the second password input is different
<input type="password" id="bRV7Vl" name="" size="25" tabindex="1" class="px" required />
<input type="password" id="kKijt3" name="" size="25" tabindex="1" value="" class="px" required /></td>
1. tabindex="1" class="px"
2. tabindex="1" value=""
I tried using many backs to match back2=tabindex="1" value="" but i couldnt get it to work.
For e-mail we want to use
front1=<input type="text" id="
back="
But we have to match nr.2 aswell.
Now, what's the solution here? I already thought about custom script on my domain where SER visits that and then gets back custom field names - but really is that the best solution here?:)
@ also being able to use variable in must have= could solve the problem
hmm why don't you use the labels here?
you can use this...
*user name:*=%login%
*Password:*=%password%
*Confirm Password:*=
%password%
*Email:*=%your e-mail%
Beacuse ser cant fill any fields by default I wouldn't ask here if that would work...
so how about this...
[varnameX]
type=extract
front1=User name:
front2=id="
back="
....
add fixed data=%varnameX%=%login%;
for example : http://bbs.akxw.cn/member.php?mod=register
用户名 = username and got 8 matches in source code... also login field (in top corner) for username name="username"
but for registration name="_au1sername_akxw_bbs"
....
ok then this...
[varname_user]
type=extract
front=<input type="text" id="
back="
[varname_mail]
type=extract
front1=<input type="text" id="
front2=<input type="text" id="
back="
[varname_pw2]
type=extract
front1=<input type="password" id="
front2=<input type="password" id="
back="
[varname_pw1]
type=extract
front1=<input type="password" id="
back="
comment=asd; http://nicewebsite.com, awesome website
using awesome website %link%
comment=awesome website asd - http://nicewebsite.com -
this is directly from debug "log"
Just trying your solution above
cant be used in add fixed data=%variable% right? Do you plan to support that?
Can we send SER text captcha in variable?
If yes, how? Example:
For example:
[textcaptcha1]
type=extract
front1=sectplcode[2] + '
back='
url=./misc.php?mod=secqaa&action=update&idhash=%captchaquestionhash1%
source of that url:
then using
add fixed data=easycalccheck=%question% fixed:%textcaptcha1%
result: