Skip to content

Modyfing End-Url without submission

I am using 

verify submission=1
submit success skip verify=1

I receive a link at the end that is added to my verified list

http://www.x.com/?message=changeSubmitted

Now, is it possible to delete "?message=changeSubmitted" ?

Comments

  • SvenSven www.GSA-Online.de

    yes, by using this:

    verify url=%my_verify_url%


    and below [setup] add...

    [my_verify_url]

    type=extract

    input=%url%

    remove=?message=changeSubmitted

  • are you sure this is correct beacuse no, its not working aswell as i cant find in script manual

    input=
    remove=

    do you mean this ?

    verify url=./index.php
    verify url replace=/edit/;/show/
    verify url remove=sub/
  • SvenSven www.GSA-Online.de
    edited April 2015

    that "verify url remove" will work as well I guess. But my previous way should also work with one correction...

    [my_verify_url]

    type=extract

    default=%targeturl%

    remove=?message=changeSubmitted

  • andrzejekandrzejek Polska
    edited April 2015
    Now its working :)

    Can you share with us all the missing "things" in script manual?

    best regards


  • SvenSven www.GSA-Online.de
    hmm there shouldn't be much missing...at least Im not aware of anything.
  • Ok if you say so, thanks. Got a question about text captcha, can you add to debug what rule is applied from 

    text_captcha_extract.dat ?

    Or maybe add option to ignore text_captcha_extract.dat into specific engine - would be easier?

    beacuse often i got text captcha popup when its actually something other or graphic captcha.
  • SvenSven www.GSA-Online.de

    text_captcha_extract.dat is for a different purpose. It's used to extract the answer from the question like: 

    What color has the Sun (answer: yellow)?

  • ok thank you, what about text captchas then? how we can ignore / check what rule matches?
    i know there is workaround to make it work, but i never realized how i actually made it to work (ignoring)
  • SvenSven www.GSA-Online.de
    You mean you want to see how SER was able to fill the answer itself?
  • andrzejekandrzejek Polska
    edited April 2015
    Lets go from scratch.

    Sometimes when coding new engine (or fixed website)
    there's a graphic captcha / field - SER then (not always of course) gives me a popup window to fill textual captcha (when its actuall graphic captcha / checkbox).

    I want to see why SER is matching this as textual captcha / disable it.

    heres example:

    example


    image

    image

    image


    ctl00$bcr$ctl01$ctl00$valcaptcha=%captcha% fixed http://www.lexisnexis.com/captcha/CaptchaImagePlayer.aspx

    not working
  • SvenSven www.GSA-Online.de

    you better try...

    ctl00$bcr$ctl01$ctl00$valcaptcha=%captcha% CaptchaImagePlayer.aspx

    The parameter in %captcha% is telling SER to look for images with that string. Using the "fixed:" prefix should only be done when there is no way in html source to get the URL of the image.

  • heh its not working i tried it at first place:)
  • SvenSven www.GSA-Online.de
    hmm but it should work! :o Can you share the engine to debug it myself?
  • Sent to you
  • andrzejekandrzejek Polska
    edited April 2015
    Captcha is now recognized, thank you

    Btw i got not idea how i would find out that myself,

    is there any resource where you explain things like that or is this just my lack of knowledge and i already got resources to fix this?

    Next question, can we ignore certain forms? Like

    form name=!ignorebutton
  • SvenSven www.GSA-Online.de

    Yes you can use that syntax. Though I never used that as identification happens with 4 parameters:

    • form name
    • form id
    • form url
    • number of defined variables that match
  • andrzejekandrzejek Polska
    edited June 2015
    @Sven One question: 

    If i want to match form id=save
    and ignore form id=order

    then

    form id=save
    form id=!order

    or

    form id=save|!order

    whats the correct syntax (! = is ignoring the form right? just making sure)

    looks like nothing is working, i understand your previous post but looks that at this point would be easier to just ignore the form rather than match all the things (websites are different and this one got exact form url for both bad and good form, exact variables, both got them, also good form got no ID and bad form got id so it could be ignored with !)

    bad form:
    form url=login.php
    fiorm id=order
    form name=order

    good form
    form url=login.php
    form id=
    form name=form 2 (cant be used beacuse fails at other websites)
  • SvenSven www.GSA-Online.de
    form id=save !order
  • form id=save|save2|save3 !order !order2 !order3 

    that works too ? @sven
  • Are you sure its working well?:) I cant get it to work, at least with multiple save save1 save3
  • SvenSven www.GSA-Online.de

    form id=save|save2|save3 !order !order2 !order3 

    that will match anything with

    a) save

    b) save2

    c) save3 and not having order2 or order3 as word in it.

    However the whole form match is done by forum url, form name and form id + all the used and identified form vairables.

Sign In or Register to comment.