1 <p>HelloWorld rule description.</p>
2 <h2>Noncompliant Code Example</h2>
4 public class MyServlet extends HttpServlet {
5 private String userName; //As this field is shared by all users, it's obvious that this piece of information should be managed differently
11 public class MyAction extends Action {
12 private String userName; //Same reason
18 <li> <a href="https://www.securecoding.cert.org/confluence/x/EYBUC">CERT, MSC11-J.</a> - Do not let session information leak within a servlet </li>