freeCodeCamp/curriculum/challenges/arabic/06-information-security-and.../information-security-with-h.../mitigate-the-risk-of-clickj...

929 B

id title challengeType videoUrl localeTitle
587d8247367417b2b2512c38 Mitigate the Risk of Clickjacking with helmet.frameguard() 2

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/app-info").then(data => { assert.include(data.appStack, "frameguard", "helmet.frameguard() middleware is not mounted correctly"); }, xhr => { throw new Error(xhr.responseText); })'
  - text: ''
    testString: 'getUserInput => $.get(getUserInput("url") + "/_api/app-info").then(data => { assert.property(data.headers, "x-frame-options"); assert.equal(data.headers["x-frame-options"], "DENY");}, xhr => { throw new Error(xhr.responseText); })'

Challenge Seed

Solution

// solution required