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

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

                Created:
                Updated: