Uploaded image for project: 'PicketBox '
  1. PicketBox
  2. SECURITY-744

WebJASPIAuthenticator doesn't populate Subject when building JBossGenericPrincipal

XMLWordPrintable

      WebJASPIAuthenticator creates a new Subject that it passes to the JASPIC Auth Module (SAM):

      Subject clientSubject = new Subject();
      if (sam != null) {
          result = sam.isValid(messageInfo, clientSubject, messageLayer, appContext, cbh);
      }
      

      Source

      Afterwards this Subject instance is put into the JBossGenericPrincipal when this is being build:

      protected Principal buildJBossPrincipal(Subject subject, Principal principal, GroupPrincipalCallback gpc) {
          // ...
      
          // build and return the JBossGenericPrincipal.
          return new JBossGenericPrincipal(realm, principal.getName(), null, roles, principal, null, null, null, subject);
      }
      

      Source

      This seems to assume that the JASPIC Auth Module has populated the Subject (as happens with JAAS login modules), but this is not what happens. JASPIC Auth Modules unlike JAAS login modules are universal and have no knowledge of the container specific Subject layout.

      The container should thus populate the Subject based on the callbacks.

      WebJASPIAuthenticator does uses the callbacks to store the caller/user principal and roles directly into the JBossGenericPrincipal. Calls like HttpServletRequest#getUserPrincipal directly return JBossGenericPrincipal#getUserPrincipal and thus work.

      However, EJBContext#getCallerPrincipal() which is implemented by org.jboss.as.security.service.SimpleSecurityManager#getCallerPrincipal works with securityContext.getSubjectInfo().getAuthenticatedSubject and does not work.

      This SubjectInfo is initialized in org.jboss.as.web.security.SecurityContextAssociationValve via the following code:

      sc.getUtil().createSubjectInfo(new SimplePrincipal(
          principal.getName()), 
          principal.getCredentials(),
          principal.getSubject() // clientSubject from JASPIC SAM
      );
      

      (principal here is the JBossGenericPrincipal that's returned by WebJASPIAuthenticator)

      Because the Subject instance used here is still the empty instance, the authenticated identity will not be available in EJB beans. EJBContext#getCallerPrincipal() will always return the anonymous principal and every check for a role will return false.

      Adding something like the following code to buildJBossPrincipal seems to propagate the authenticated identity correctly to the EJB module:

      Subject authenticatedSubject = new Subject();
      
      // Add the caller principal to the Subject
      Group callerPrincipalGroup = new SimpleGroup("CallerPrincipal");
      callerPrincipalGroup.addMember(principal);
      authenticatedSubject.getPrincipals().add(callerPrincipalGroup);
              
      // Add the roles to the Subject
      if (!roles.isEmpty()) {
          Group rolesGroup = new SimpleGroup("Roles");
          for (String role : roles) {
              rolesGroup.addMember(new SimplePrincipal(role));
          }
          authenticatedSubject.getPrincipals().add(rolesGroup);
      }
      
      return new JBossGenericPrincipal(realm, principal.getName(), null, roles, principal, null, null, null, authenticatedSubject);
      
      

      I've tested locally with this patch and it indeed seems to work.

        1. GR4-Practice-Test-2025.pdf
          93 kB
          Amanda Jones
        2. C_THR82_2405-pdf-download-2025.pdf
          315 kB
          Amanda Jones
        3. 700-245-Cheatsheet-2025.pdf
          349 kB
          Amanda Jones
        4. C_THR89_2405-VCE-2025.pdf
          332 kB
          Amanda Jones
        5. C_ARSUM_2404-free-pdf-2025.pdf
          324 kB
          Amanda Jones
        6. C_THR87_2405-Practice-Test-2025.pdf
          329 kB
          Amanda Jones
        7. ACA100-exam-questions-2025.pdf
          347 kB
          Amanda Jones
        8. C_THR86_2405-practice-questions-2025.pdf
          338 kB
          Amanda Jones
        9. E_S4CPE_2405-braindumps-2025.pdf
          302 kB
          Amanda Jones
        10. C_LCNC_2406-Exam-Braindumps-2025.pdf
          332 kB
          Amanda Jones
        11. JN0-280-free-pdf-2025.pdf
          335 kB
          Amanda Jones
        12. C_THR88_2405-examcollection-2025.pdf
          329 kB
          Amanda Jones
        13. HPE7-A04-dump-2025.pdf
          324 kB
          Amanda Jones
        14. ISO-IEC-20000-Foundation-questions-and-answers-2025.pdf
          315 kB
          Amanda Jones
        15. C_THR83_2405-test-questions-2025.pdf
          325 kB
          Amanda Jones
        16. HQT-4420-Practice-Questions-2025.pdf
          319 kB
          Amanda Jones
        17. ITIL-4-Specialist-High-velocity-IT-questions-and-answers-2025.pdf
          343 kB
          Amanda Jones
        18. 402-mock-exam-2025.pdf
          326 kB
          Amanda Jones
        19. GCX-SCR-PDF-Questions-2025.pdf
          336 kB
          Amanda Jones
        20. PRINCE2-Agile-Practitioner-Practice-Test-2025.pdf
          315 kB
          Amanda Jones
        21. Salesforce-AI-Specialist-braindumps-2025.pdf
          324 kB
          Amanda Jones
        22. NS0-093-practice-questions-2025.pdf
          337 kB
          Amanda Jones
        23. FCP_FAZ_AN-7-4-PDF-Dumps-2025.pdf
          337 kB
          Amanda Jones
        24. C_S4CPR_2408-PDF-Download-2025.pdf
          323 kB
          Amanda Jones
        25. C_S4CS_2408-Test-Prep-2025.pdf
          350 kB
          Amanda Jones
        26. 1Z0-1085-24-Study-Guide-2025.pdf
          327 kB
          Amanda Jones
        27. AIF-C01-Real-Exam-Questions-2025.pdf
          340 kB
          Amanda Jones
        28. C_C4H41_2405-cheat-sheet-2025.pdf
          318 kB
          Amanda Jones
        29. SPLK-1005-study-guide-2025.pdf
          343 kB
          Amanda Jones
        30. 1Z0-1066-24-braindumps-2025.pdf
          331 kB
          Amanda Jones
        31. IdentityIQ-Engineer-Exam-Cram-2025.pdf
          401 kB
          Amanda Jones
        32. 1Z0-1072-24-Free-PDF-2025.pdf
          342 kB
          Amanda Jones
        33. AD0-E330-cheat-sheets-2025.pdf
          311 kB
          Amanda Jones
        34. C_C4H51_2405-Latest-Topics-2025.pdf
          318 kB
          Amanda Jones
        35. C_THR92_2405-test-prep-2025.pdf
          336 kB
          Amanda Jones
        36. 312-82-questions-answers-2025.pdf
          336 kB
          Amanda Jones
        37. C_TFG61_2405-study-guide-2025.pdf
          312 kB
          Amanda Jones
        38. C1000-172-exam-dumps-2025.pdf
          356 kB
          Amanda Jones
        39. IdentityNow-Engineer-real-questions-2025.pdf
          339 kB
          Amanda Jones
        40. QSDA2024-Questions-and-Answers-2025.pdf
          434 kB
          Amanda Jones
        41. 303-cram-2025.pdf
          326 kB
          Amanda Jones
        42. TMMi-P_Syll2-1-Exam-Questions-2025.pdf
          358 kB
          Amanda Jones
        43. C_C4H46_2408-free-pdf-2025.pdf
          326 kB
          Amanda Jones
        44. D-PDD-DY-23-Practice-test-2025.pdf
          332 kB
          Amanda Jones
        45. Databricks-Generative-AI-Engineer-Associate-practice-test-2025.pdf
          377 kB
          Amanda Jones
        46. ISO-IEC-27005-Risk-Manager-PDF-Dumps-2025.pdf
          364 kB
          Amanda Jones
        47. C_STC_2405-test-prep-2025.pdf
          304 kB
          Amanda Jones
        48. TDVCL2-dumps-2025.pdf
          332 kB
          Amanda Jones
        49. ISO-31000-CLA-exam-questions-2025.pdf
          358 kB
          Amanda Jones
        50. 1Z0-1084-24-PDF-Download-2025.pdf
          328 kB
          Amanda Jones
        51. C_TFG51_2405-brain-dumps-2025.pdf
          316 kB
          Amanda Jones
        52. ISO-22301-Lead-Implementer-Cheatsheet-2025.pdf
          393 kB
          Amanda Jones
        53. C_S4CFI_2408-free-pdf-download-2025.pdf
          364 kB
          Amanda Jones
        54. H13-311_V3-5-braindumps-2025.pdf
          342 kB
          Amanda Jones
        55. FCSS_SOC_AN-7-4-PDF-Braindumps-2025.pdf
          359 kB
          Amanda Jones
        56. RCNI-VCE-2025.pdf
          315 kB
          Amanda Jones
        57. QSBA2024-real-questions-2025.pdf
          373 kB
          Amanda Jones
        58. JN0-683-PDF-Braindumps-2025.pdf
          394 kB
          Amanda Jones
        59. JN0-637-practice-questions-2025.pdf
          405 kB
          Amanda Jones
        60. C_S4CPB_2408-Free-Exam-PDF-2025.pdf
          400 kB
          Amanda Jones
        61. C_C4H62_2408-Latest-Questions-2025.pdf
          334 kB
          Amanda Jones
        62. LEED-AP-ND-pdf-download-2025.pdf
          377 kB
          Amanda Jones
        63. SAVIGA-C01-study-guide-2025.pdf
          342 kB
          Amanda Jones
        64. C_SAC_2415-boot-camp-2025.pdf
          366 kB
          Amanda Jones
        65. D-PSC-MN-01-brain-dumps-2025.pdf
          369 kB
          Amanda Jones
        66. 1Z0-1122-24-Exam-dumps-2025.pdf
          349 kB
          Amanda Jones
        67. PSE-SWFW-Pro-24-examcollection-2025.pdf
          354 kB
          Amanda Jones
        68. NSE6_FSR-7-3-exam-prep-2025.pdf
          324 kB
          Amanda Jones
        69. Amazon-DEA-C01-practice-test-2025.pdf
          502 kB
          Amanda Jones
        70. TCC-C01-practice-exam-2025.pdf
          481 kB
          Amanda Jones
        71. 700-695-Exam-Questions-2025.pdf
          349 kB
          Amanda Jones
        72. FCSS_NST_SE-7-4-braindumps-2025.pdf
          483 kB
          Amanda Jones
        73. ITIL-4-Specialist-Monitor-Support-Fulfil-sample-test-2025.pdf
          391 kB
          Amanda Jones
        74. 1Z0-1042-24-Exam-Questions-2025.pdf
          318 kB
          Amanda Jones
        75. FCP_FMG_AD-7-4-Actual-Questions-2025.pdf
          405 kB
          Amanda Jones
        76. MB-280-test-prep-2025.pdf
          427 kB
          Amanda Jones
        77. C_S43_2023-Question-Bank-2025.pdf
          525 kB
          Amanda Jones
        78. CAMS-FCI-bootcamp-2025.pdf
          441 kB
          Amanda Jones
        79. FCP_FAZ_AD-7-4-dumps-questions-2025.pdf
          533 kB
          Amanda Jones
        80. 1Z0-071-exam-prep-2025.pdf
          366 kB
          Amanda Jones
        81. C_THR84_2405-real-questions-2025.pdf
          455 kB
          Amanda Jones
        82. NIST-COBIT-2019-real-questions-2025.pdf
          658 kB
          Amanda Jones
        83. LEED-AP-BD-C-free-pdf-2025.pdf
          713 kB
          Amanda Jones
        84. LEED-AP-O-M-test-questions-2025.pdf
          379 kB
          Amanda Jones

              Unassigned Unassigned
              arjan.tijms@gmail.com Arjan Tijms (Inactive)
              Votes:
              5 Vote for this issue
              Watchers:
              9 Start watching this issue

                Created:
                Updated: