Hello team,
I am new to Zap.
I apologize if I ask something wrong or duplicate questions.
I am using the getAttributeValue method in commonlib.CookieUtils, but it seems to be not working well.
For example, the following method call is not working.
---
getAttributeValue("SESSION=ODcxYjg3YzQmMy00OGJjLWI2ZmQtYTc2YTViNGUwNDky; Path=/; HttpOnly; SameSite=Lax", "session");
---
Because for sentence in line 69 in CookieUtils.java start it index from 1.
So I think it ignores "SESSION=ODcxYjg3YzQmMy00OGJjLWI2ZmQtYTc2YTViNGUwNDky;".
Therefore this method returns the null value despite the first argument including the "SESSION" string.
I modified the index from 0, it looks working correctly.