{
  "id": "01",
  "content": [
    {
      "type": "heading",
      "text": "The Role of Password Security in Infrastructure"
    },
    {
      "type": "text",
      "html": "Passwords affect apps, DBs, backups, logs, and support. A weak link anywhere can compromise everything."
    },
    {
      "type": "text",
      "html": "<strong>Goals:</strong> store strong hashes only, minimize attack surface, monitor auth events, design safe recovery."
    }
  ],
  "quiz": {
    "questions": [
      {
        "id": "q1",
        "type": "single",
        "text": "Acceptable storage in production?",
        "options": [
          {
            "id": "a",
            "text": "Salted password hashes only"
          },
          {
            "id": "b",
            "text": "Plaintext passwords"
          },
          {
            "id": "c",
            "text": "Passwords in emails"
          }
        ],
        "correct": [
          "a"
        ]
      },
      {
        "id": "q2",
        "type": "single",
        "text": "Password security is:",
        "options": [
          {
            "id": "a",
            "text": "End-to-end across the stack"
          },
          {
            "id": "b",
            "text": "Only front-end"
          },
          {
            "id": "c",
            "text": "Only DB"
          }
        ],
        "correct": [
          "a"
        ]
      }
    ]
  }
}