Links with onclick event not followed

marie_lbl's Avatar

marie_lbl

12 Nov, 2015 10:30 AM

Hi,

I'm scanning a webapp with Arachni but it doesn't seem to follow some links.

Here is an example of link which is not followed :

<a href="#" 
onclick="mojarra.jsfcljs(document.getElementById('usersList:userListForm'),{'usersList:userListForm:usersTable:j_idt30':'usersList:userListForm:usersTable:j_idt30'},'');return false" 
class="btn btn-success">
 New user
</a>

It's a link generated by the jsf code :

<h:commandLink action="#{myBean.createNewUser()}" styleClass="btn btn-success"> #{msg['new_user']}</h:commandLink>

I know it's not followed because I got in the arachni logs :

[-] BrowserCluster Worker#37948840: Job timed-out after 25 seconds: #<Arachni::BrowserCluster::Jobs::ResourceExploration::EventTrigger:32519920 @resource=#<Arachni::Page:18375440 @url="https://myserver/mywebapp/users/list.xhtml" @dom=#<Arachni::Page::DOM:18371360 @url="https://myserver/mywebapp/users/list.xhtml" @transitions=40 @data_flow_sinks=0 @execution_flow_sinks=0>> @event=:onclick @element=<a href="#" onclick="mojarra.jsfcljs(document.getElementById('usersList:userListForm'),{'usersList:userListForm:usersTable:j_idt30':'usersList:userListForm:usersTable:j_idt30'},'');return false" class="btn btn-success"> time=25.096439984 timed_out=true>

And because I don't see the page-we-should-see-if-we-follow-the-link in the arachni report "sitemap" page.

My webapp is using :
Primefaces 4.1.0
JSF 2.2.10
Tomcat 7.0.64

I'm using Arachni 1.3.1, which I'm calling by the following command line :

arachni https://myserver/mywebapp/ --scope-dom-depth-limit=10 --scope-extend-paths="/path/to/arachni-paths.txt" --audit-links --audit-forms --audit-ui-inputs --audit-ui-forms --plugin=autologin:url=https://myserver/mywebapp/login.xhtml,parameters='j_username=myusername&j_password=mypassword,check='My account' --scope-exclude-pattern=logout --checks='sql_*,http_*,os_*,xss_*,insecure_*,allowed_methods,csrf,code_injection,directory_listing,emails,form_upload,session_fixation,xpath_injection' --platforms='linux,pgsql,oracle,tomcat,java,jsf' --report-save-path=pentest.afr && \
arachni_reporter pentest.afr --reporter=html:outfile=pentest.html.zip

I don't know if there is something I forgot in order to tell Arachni to follow this kind of links, or if it's a bug.
We had some problems using PhantomJS for our Cucumber/Selenium tests and we are finally using HtmlUnit instead. So maybe it's kind of related to PhantomJS.

Did someone else have this problem ?
Did I miss something in my arachni command-line ?
Is it possible to configure Arachni to use another webdriver than PhantomJS (HtmlUnit or FirefoxDriver, for example) ?

Thanks for your help,

Marie

  1. Support Staff 1 Posted by Tasos Laskos on 12 Nov, 2015 07:30 PM

    Tasos Laskos's Avatar

    Hello,

    No this isn't because of a misconfiguration, there may be a JS error or something causing the page not to load.

    Could you please try the nightlies to see if the issue has been fixed?
    If it's still there (or if you get a new issue, the nightles are unstable after all) you can send me all the details in private and I'll try to debug this.

    Cheers

  2. Support Staff 2 Posted by Tasos Laskos on 13 Nov, 2015 03:44 AM

    Tasos Laskos's Avatar

    Hello again,

    I forgot to mention, you can't use an alternative browser, it's PhantomJS 1.9.2 only.

    Cheers

  3. 3 Posted by marie_lbl on 13 Nov, 2015 10:38 AM

    marie_lbl's Avatar

    Hello,

    Thanks for your quick reply.

    I tried with the nightlies : the result is quite the same (the page I want is still not in the sitemap report).

    I don't see this message (I got with Arachni 1.3.1) in the logs anymore :

    [-] BrowserCluster Worker#37948840: Job timed-out after 25 seconds: #<Arachni::BrowserCluster::Jobs::ResourceExploration::EventTrigger:32519920 @resource=#<Arachni::Page:18375440 @url="https://myserver/mywebapp/users/list.xhtml" @dom=#<Arachni::Page::DOM:18371360 @url="https://myserver/mywebapp/users/list.xhtml" @transitions=40 @data_flow_sinks=0 @execution_flow_sinks=0>> @event=:onclick @element=<a href="#" onclick="mojarra.jsfcljs(document.getElementById('usersList:userListForm'),{'usersList:userListForm:usersTable:j_idt30':'usersList:userListForm:usersTable:j_idt30'},'');return false" class="btn btn-success"> time=25.096439984 timed_out=true>
    

    I don't know if it's significant - maybe it doesn't try to click on the link anymore (in this case it's "worst" than in 1.3.1), or maybe you just don't display the "BrowserCluster Worker (...) Arachni::BrowserCluster::Jobs::ResourceExploration::EventTrigger" logs anymore (?).

    But, for information, I still see

    [*] XSS in HTML element event attribute: Auditing form input 'usersList:userListForm:usersTable:j_idt30' pointing to: '"https://myserver/mywebapp//users/list.xhtml'
    
    So I know my link is seen by Arachni. But it is not clicked/followed by Arachni.

    I double-checked : manually I can click on the link and go to the desired page, and I don't have any error in the Javascript console (browser : Chrome).

    Thanks a lot for offering to debug !
    I can't give you access to the webapp I'm scanning, but I will try to reproduce the problem in a little project, and give you all the informations you need to reproduce (if it's possible).

  4. Support Staff 4 Posted by Tasos Laskos on 13 Nov, 2015 07:40 PM

    Tasos Laskos's Avatar

    Yes please, a small test case on its own would actually be better than access to the full webapp.
    These JS issues are hard to troubleshoot so I need to have a look at it myself.

    Let me know once you've put something together.

    Cheers

  5. 5 Posted by marie_lbl on 16 Nov, 2015 01:51 PM

    marie_lbl's Avatar

    Ok so here is my small test case :
    https://github.com/lebloism/link-not-followed-by-arachni

    I tried to put enough information in the README, but tell me if you need something else.
    (And thanks again for your support !)

  6. Support Staff 6 Posted by Tasos Laskos on 17 Nov, 2015 01:16 AM

    Tasos Laskos's Avatar

    Best. Bug report. Ever.

    I'm on it.

  7. Support Staff 7 Posted by Tasos Laskos on 17 Nov, 2015 04:38 AM

    Tasos Laskos's Avatar

    Hm, I just tried it and it worked:

    ./bin/arachni http://127.0.0.2:8080/ --checks -
    

    Here's the relevant bit:

     [*] [HTTP: 200] http://127.0.0.2:8080/users/edit.xhtml
     [~] Identified as: tomcat, java
     [~] Analysis resulted in 0 usable paths.
     [~] DOM depth: 2 (Limit: 5)
     [~]   Transitions:
     [~]     -- [0.3489s] load     => page (http://127.0.0.2:8080/)
     [~]         * [0.0005s] request  => http://127.0.0.2:8080/
     [~]         * [0.0395s] request  => http://127.0.0.2:8080/javax.faces.resource/jsf.js.xhtml?ln=javax.faces&stage=Development
     [~]     -- [0.2326s] click    => <a href="#" onclick="mojarra.jsfcljs(document.getElementById('j_idt8'),{'j_idt8:j_idt9':'j_idt8:j_idt9'},'');return false" class="btn btn-success"> 
     [~]         * [0.0077s] request  => http://127.0.0.2:8080/users/list.xhtml
     [~]         * [0.0067s] request  => http://127.0.0.2:8080/users/edit.xhtml
    

    I was using the code in the nightlies, are you getting different results?

  8. 8 Posted by marie_lbl on 17 Nov, 2015 06:12 AM

    marie_lbl's Avatar

    I am using the nightlies too, I committed the results on github so you can see it (pentest.afr and pentest.html.zip). I read the "html" report but normally it's the same, isn't it ?

    The difference between you and me is the command line. I'm using quite the same command line as before (except for the "login" part, because my webapp is simpler, without login or HTTPS). This is the command line I'm using for the small test case :

    arachni http://myhostname:8080/ --scope-dom-depth-limit=10 --scope-extend-paths="/path/to/arachni-paths.txt" --audit-links --audit-forms --audit-ui-inputs --audit-ui-forms --checks='sql_*,http_*,os_*,xss_*,insecure_*,allowed_methods,csrf,code_injection,directory_listing,emails,form_upload,session_fixation,xpath_injection' --platforms='linux,pgsql,oracle,tomcat,java,jsf' --report-save-path=pentest.afr && arachni_reporter pentest.afr --reporter=html:outfile=pentest.html.zip
    

    Can you try with this command line and see if you reproduce ?

  9. 9 Posted by marie_lbl on 17 Nov, 2015 06:17 AM

    marie_lbl's Avatar

    Maybe the problem is the "scope-extend-paths" option : I thought it was "include these paths too", but maybe it is "include only these paths" ?

  10. Support Staff 10 Posted by Tasos Laskos on 17 Nov, 2015 06:27 AM

    Tasos Laskos's Avatar

    Not unless I somehow mixed it with the restrict-paths option which isn't out of the question, but let's start simple.

    Can you verify that you're getting to that page in the test app by only using the --checks - option?

  11. 11 Posted by marie_lbl on 17 Nov, 2015 06:35 AM

    marie_lbl's Avatar

    I will as soon as I am in my office (I don't have the correct environment at home), so in 2-3 hours. I'll try with different command lines "between" yours and mine, so we'll be able to identify the option which raise the problem. I'll let you know.

  12. Support Staff 12 Posted by Tasos Laskos on 17 Nov, 2015 06:48 AM

    Tasos Laskos's Avatar

    I actually managed to reproduce the issue so it's OK.

    Turns out that it has to do with Arachni auditing the inputs of the hidden form wrapped around that link, which are used to pass viewstate tokens.
    That audit invalidatd the viewstate so when the browsers click the link the application returns an error instead of redirecting to the edit page.

    You can skip auditing those input vectors with:

    --audit-exclude-vector=javax.faces.ViewState --audit-exclude-vector=j_idt
    

    The values to these options are treated as regular expressions, so any input vector that includes them will be ignored (one of them was j_idt8, not sure if the integer changes so I used j_idt as a catch all).

    I verified that it works on the sample webapp you setup (thanks for that), let me know how it does against the real thing.

    Cheers

  13. 13 Posted by marie_lbl on 17 Nov, 2015 05:29 PM

    marie_lbl's Avatar

    Thanks for the hint.

    Indeed it works on the sample webapp with the audit-exclude-vector options.
    But it doesn't work in my real webapp :
    1) I can't exclude all the inputs with "j_idt' in the 'name' attribute because some of them should be scanned.
    2) On some pages, there is an ID defined for the form (h:form id="myForm") and, in these cases, the generated hidden input has for name "myForm" (= not containing "j_idt")
    3) There is probably others complications because I tried to run the command line with

    --audit-exclude-vector=javax.faces.ViewState --audit-exclude-vector=j_idt --audit-exclude-vector="[Ff]orm$"
    
    in order to exclude all the generated inputs (with and without an ID defined in the h:form - all my IDs for the h:form tags end with "form" or "Form") - even if I would have some interesting inputs not scanned. But it doesn't work : Arachni still doesn't follow the links.

    I'll try again tomorrow, and maybe give you an other sample webapp, closer to the real webapp than the first one.

    But I would like to know if it would be possible to change the condition "regex on the 'name' attribute" ?
    For example, I would be very interested in excluding all the hidden inputs (type=hidden), and someone else could be interested in a condition like "regex on the 'id' attribute".
    Is it possible to have a more flexible condition for example with 2 options : --audit-exclude-vector-attribute and --audit-exclude-vector-pattern.
    So they could be used like that :

    --audit-exclude-vector-attribute=name --audit-exclude-vector-pattern=javax.faces.ViewState
    
    or like that
    --audit-exclude-vector-attribute=type --audit-exclude-vector-pattern=hidden
    
    ?
  14. Support Staff 14 Posted by Tasos Laskos on 18 Nov, 2015 12:23 AM

    Tasos Laskos's Avatar

    You can't do that via CLI options because the configuration would get unworkable really fast, you can however write a simple plugin that adds a global callback to determine which elements should be skipped from the audit.

    Do you want to push the new sample webapp first or shall I show you an example of such a plugin?

  15. 15 Posted by marie_lbl on 18 Nov, 2015 10:52 AM

    marie_lbl's Avatar

    I'm very interested in the plugin you're talking about, can you give me an example ?

    I created an other branch in my github project, with a similar webapp but this time with 2 lists and 2 edit pages : https://github.com/lebloism/link-not-followed-by-arachni/tree/two-l...

    If I run Arachni with the audit-exclude-vector options : it works when I have only 1 list and 1 edit pages (=branch "master"), but not when I have 2 lists and 2 edit pages (= branch "two-lists").

    I don't understand why the viewState is still invalidated despite the audit-exclude-vector options on the "two-lists" branch. Do you have any idea ?
    I hope it will help me to understand what it doesn't work in my real webapp.

    (Thanks again for helping me)

  16. Support Staff 16 Posted by Tasos Laskos on 18 Nov, 2015 12:03 PM

    Tasos Laskos's Avatar

    That was indeed a bug caused by a deduplication mixup. The DOM events of the 2 links were identical so only one was followed, luckily it was an easy fix.

    And I also managed to reproduce the original time-out issue, not sure why that happens yet though.

    I need to do some more testing but I'll have some nightlies for you tomorrow.

    Cheers

  17. Support Staff 17 Posted by Tasos Laskos on 19 Nov, 2015 06:53 AM

    Tasos Laskos's Avatar

    The fix is in the nightlies, if you exclude the vectors I had mentioned is should work fine.
    If you still require the plugin let me know and I'll whip something up.

  18. Support Staff 18 Posted by Tasos Laskos on 19 Nov, 2015 07:06 AM

    Tasos Laskos's Avatar

    Actually, I think I spoke too soon.
    The missing page in the sample app may have been appropriate because the edit pages only differ in text nodes, from the browser's perspective processing just one of them is enough, there's nothing to be gained by including the second one in the scan.

    Can you add something "interesting" to at least one of them please?
    Like an <input> field.

  19. Support Staff 19 Posted by Tasos Laskos on 19 Nov, 2015 07:17 AM

    Tasos Laskos's Avatar

    I added the following to edit2.xhtml :

    <h:form>
                    <h:commandLink action="#{usersPage.createNew2()}"
                               styleClass="btn btn-success">
                        new user 2
                    </h:commandLink>
    </h:form>
    

    And the following to edit1.xhtml :

    <h:form>
                    <h:commandLink action="#{usersPage.createNew1()}"
                               styleClass="btn btn-success">
                        new user 1
                    </h:commandLink>
    </h:form>
    

    In that case both pages were logged appropriately since they were processed as they contained some useful workload.

    So I'm guessing we're back to the invalidated viewstate, I'll get working on a sample plugin to let you filter elements.

    Cheers

  20. 20 Posted by marie_lbl on 19 Nov, 2015 10:10 AM

    marie_lbl's Avatar

    1 ---
    I got the nightlies, thanks !

    2---
    What do you mean by "In that case both pages were logged appropriately" ? Do you mean "with that code everything works now, the both edit pages are scanned by Arachni" ? Because it's not the case for me : I added your code in the edit pages (see updated branch "two-lists"), but the pages edit1 and edit2 are still not mentionned in the logs, nor in the report. (The list pages have now both 500 status code)

    So maybe I did'nt understand you correctly, or we have differents results between you and me for the same code :S

    3 ---
    I'm trying to understand what Arachni does (to undestand how the viewstate is invalidated) by reading its logs.
    Can you explain me the following logs ?

    [*] Got new page from the browser-cluster: http://david-virtualbox:8080/users/list1.xhtml
    [~] DOM depth: 2 (Limit: 10)
    [~]   Transitions:
    [~]     -- [0.8795s] load     => page (http://david-virtualbox:8080/users/list1.xhtml)
    [~]         * [0.0004s] request  => http://david-virtualbox:8080/users/list1.xhtml
    [~]         * [0.1706s] request  => http://david-virtualbox:8080/javax.faces.resource/jsf.js.xhtml?ln=javax.faces
    [~]     -- [0.4127s] click    => <a href="#" onclick="mojarra.jsfcljs(document.getElementById('j_idt8'),{'j_idt8:j_idt9':'j_idt8:j_idt9'},'');return false" class="btn btn-success"> 
    [~]         * [0.0126s] request  => http://david-virtualbox:8080/users/list1.xhtml
    

    I understand these logs as :
    the "click" on

    <a href="#" onclick="mojarra.jsfcljs(document.getElementById('j_idt8'),{'j_idt8:j_idt9':'j_idt8:j_idt9'},'');return false" class="btn btn-success">
    
    generates a request for "list1.xhtml".
    This is OK because the network says, when I click on the link :
    POST list1 -> 302 Found location = "http://david-virtualbox:8080/users/edit1.xhtml&quot; -> GET edit1.

    So the logs say "request for list1", OK, it's the POST part. But what about the remaining part "302 -> redirection to edit1" ?
    Does Arachni read the "location" part of the 302 response, in order to do the request to the provided location ?

    (Sorry maybe I don't undestand how Arachni works at all, so my questions would be totally stupid. Please be indulgent, I'm just trying to understand ^^' )

    4 ---
    I'm still interested by the plugin because I will need it for my real webapp. But I don't think it will help for the sample webapp : I'm already excluding all the hidden inputs generated by JSF (with regex on their names). So it seems Arachni is invalidating the ViewState but with something else than scanning the JSF generated hidden inputs.
    Do you have an idea which other Arachni action could do that ?

  21. Support Staff 21 Posted by Tasos Laskos on 19 Nov, 2015 10:25 AM

    Tasos Laskos's Avatar

    1, Better wait another half an hour or so for the new ones, the nightlies worked temporarily for me because I broke them. The original behavior was the correct one I think.
    2. Yeah with the changes in the edit pages both of them were in the sitemap. Although right now I couldn't reproduce it either, instead getting loads of 500 errors too (always happened with both branches but intermittently). I'm pretty sure the test cases don't accurately reflect the issue that you're getting from the real webapp and we are instead chasing bugs in the sample ones.
    3. You got it right and redirects will be followed, but in this case it's not the viewstate being invalidated but the sample app exploding for some reason.
    4. We better focus on the real application and go from there, the sample ones don't seem representative of it. I don't think that it's about invalidated viewstates any more but rather these errors:

    Nov 19, 2015 12:15:54 PM org.apache.catalina.core.StandardHostValve custom
    SEVERE: Exception Processing ErrorPage[errorCode=500, location=/error.xhtml]
    javax.servlet.ServletException
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:659)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
            at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:749)
            at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:489)
            at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:412)
            at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:339)
            at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:467)
            at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:338)
            at org.apache.catalina.core.StandardHostValve.throwable(StandardHostValve.java:428)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:201)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100)
            at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
            at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1041)
            at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:603)
            at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:310)
            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
            at java.lang.Thread.run(Thread.java:745)
    Caused by: java.lang.NullPointerException
            at com.sun.faces.context.flash.ELFlash$FlashInfo.encode(ELFlash.java:1631)
            at com.sun.faces.context.flash.ELFlash$PreviousNextFlashInfoManager.encode(ELFlash.java:1460)
            at com.sun.faces.context.flash.ELFlash.doLastPhaseActions(ELFlash.java:717)
            at com.sun.faces.context.flash.ELFlash.doPostPhaseActions(ELFlash.java:652)
            at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:458)
            at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:133)
            at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120)
            at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
            at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:647)
    

    I'll let you know once I've got a sample plugin ready.

  22. 22 Posted by marie_lbl on 19 Nov, 2015 10:59 AM

    marie_lbl's Avatar

    Ok for stopping with the sample webapp which is maybe not representative anymore.
    I'll wait for your sample plugin and then try again on the real webapp !
    (Thx for your work)

  23. Support Staff 23 Posted by Tasos Laskos on 20 Nov, 2015 07:19 AM

    Tasos Laskos's Avatar

    I'm afraid I've got some bad news, the forms are sometimes extracted from browser requests instead of the HTML code of the page, depending on which component gets there first.

    This means that full context (like the HTML code, attribute details etc) isn't always available.
    The only information that remains constant is the input data and the action, so the only reliable way of filtering element audits are the CLI scope and audit options.

  24. 24 Posted by marie_lbl on 20 Nov, 2015 10:57 AM

    marie_lbl's Avatar

    Ok :-(

    Actually, maybe we don't need to exclude these inputs from the audit. What we need is Arachni to follow the links and discover the other pages BEFORE auditing these inputs and invalidating the viewstate.

    Would it be possible for you to change the order of the actions ? (maybe through an option)
    I suppose, from the behaviour we saw, that the current order is :
    find a page, auditing the page inputs, discover other pages through the links present on the current page, auditing these pages and so one.

    Would it be possible to have :
    find a page, discover other pages through the links present on this page (store it for later), auditing the current page inputs, and then process the discovered pages
    ?

  25. Support Staff 25 Posted by Tasos Laskos on 20 Nov, 2015 11:22 AM

    Tasos Laskos's Avatar

    That won't work in the grand scheme of things but I think I found another way around it.
    It's probably going to hurt performance when the server doesn't set caching options for the response, so I'll try to enable it only when necessary.

    Whatever the case, if this solves the problem I'm OK with a performance penalty if it means automatically taking care of these types of issues.

    I'll keep you posted on my progress.

    Cheers

  26. Support Staff 26 Posted by Tasos Laskos on 20 Nov, 2015 02:34 PM

    Tasos Laskos's Avatar

    Nightlies are up (except Windows), let me know how they work.

  27. 27 Posted by marie_lbl on 20 Nov, 2015 05:12 PM

    marie_lbl's Avatar

    It discovered one page which was not listed in the scope-extend-paths file (users/edit.xhtml, accessible from a link on users/list.xhtml which is a page listed in the scope-extend-paths).
    But this edit page has a 500 status code. Maybe the data transfered from the list to the edit page are not correctly transferred ?
    FYI we use the JSF Flash scope in order to transfer data from a page to another : http://docs.oracle.com/javaee/6/api/javax/faces/context/Flash.html
    "Variables stored in the flash scope will survive a redirection and they will be discarded afterwards. This is really useful when implementing a Post-Redirect-Get pattern" "Flash scope survives redirect, exactly once"

    But, for every other similar situations (profiles/list.xhtml -> profiles/edit.xhtml, entities/list.xhtml -> entities/edit.xhtml, etc ), it didn't discover the edit pages.

    And, regression : I have now 0 issues (which is not correct since I hade some little issues in the previous reports, like E-mail address disclosure)

  28. Support Staff 28 Posted by Tasos Laskos on 21 Nov, 2015 06:58 AM

    Tasos Laskos's Avatar

    I don't think I can help without access to the web application at this point, any chance you can arrange that?

  29. 29 Posted by marie_lbl on 02 Dec, 2015 03:18 PM

    marie_lbl's Avatar

    Hi !

    Sorry for the delay. I couldn't convince my team to give you access. We finally chose to stop trying to launch the tests automatically with Arachni, and we went back to our first try, which we knew was working as we need : manual tests with ZAP.
    Maybe we will have more time later to give it a new try, but currently we can't.

    Thanks again for all the effort you made, it's very pleasant to have such a support !

  30. Support Staff 30 Posted by Tasos Laskos on 02 Dec, 2015 04:46 PM

    Tasos Laskos's Avatar

    That's too bad, I hate knowing that there's a simple bug somewhere lurking around causing trouble.
    Still, I understand your team's reluctance to provide access.

    If anything changes please do let me know.

    Cheers

  31. Tasos Laskos closed this discussion on 02 Dec, 2015 04:46 PM.

Comments are currently closed for this discussion. You can start a new one.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac