deepsourcestatus / test-repository

Avoid target='_blank' attribute without rel='noopener noreferrer' JS-0422
Security
Major
8 months ago8 months old
Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations
15      </ul>
16      <button>Login</button>
17      <SideBar></SideBar>
18      <a href="javascript:void(0)" target='_blank'>FAQs</a>19    </>
20  );
21}
Using target="_blank" without rel="noreferrer" (which implies rel="noopener") is a security risk in older browsers: see https://mathiasbynens.github.io/rel-noopener/#recommendations
15      </ul>
16      <button>Login</button>
17      <SideBar></SideBar>
18      <a href="javascript:void(0)" target='_blank'>FAQs</a>19    </>
20  );
21}