본문 바로가기
개발/Linux

웹 취약점 처리 (SCP)

by 철권 2022. 12. 27.
728x90

//-----------------------------------------------------------------------------
    - 에러 메시지
Refused to load the script  because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-inline'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.

    - 해결 방법
https://stackoverflow.com/questions/31211359/refused-to-load-the-script-because-it-violates-the-following-content-security-po

<meta http-equiv="Content-Security-Policy" content="default-src * self blob: data: gap:; style-src * self 'unsafe-inline' blob: data: gap:; script-src * 'self' 'unsafe-eval' 'unsafe-inline' blob: data: gap:; object-src * 'self' blob: data: gap:; img-src * self 'unsafe-inline' blob: data: gap:; connect-src self * 'unsafe-inline' blob: data: gap:; frame-src * self blob: data: gap:;">

728x90
반응형

'개발 > Linux' 카테고리의 다른 글

SNMP프로토콜의 이해, SNMP 트랩  (0) 2023.02.08
gsjava 리눅스 계정 정보  (0) 2023.01.05
시간 kst 변경  (0) 2022.12.15
netplan 삭제  (0) 2022.12.15
gsjava robots.txt 설정  (0) 2022.12.14