환경 : 윈도우10
https://www.hahwul.com/2017/08/powershell-execution-of-scripts-is.html
해당 경로에서 참고하였습니다.
한글
"이 시스템에서 스크립트를 실행할 수 없으므로 파일을 로드할 수 없습니다"
영문
"execution of scripts is disabled on this system."
이런 에러는Windows에서 정책적으로 Powershell 실행에 제한이 있어서 불가능합니다. 관리자 권한이 있는 powershell로 ExecutionPolicy를 RemoteSigned로 변경해주는 것으로 해결이 가능합니다.
PS C:\> Set-ExecutionPolicy RemoteSigned
잘 바뀌었네요. 바뀐 권한을 보면 RemoteSigned로 변경되어있습니다.
PS C:\> Get-ExecutionPolicy
RemoteSigned
'웹' 카테고리의 다른 글
MySQL SQL 인젝션 대응 PDO (0) | 2020.08.08 |
---|---|
burp js(javascript) response 셋팅 (0) | 2020.07.20 |
Insecure Client-Initiated Renegotiation 취약점 (0) | 2020.06.23 |
Dom Clobbering (with XSS) (0) | 2020.01.06 |
Bug Bounty: Broken API Authorization (0) | 2019.12.04 |