일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 윈도우
- 노드
- Atlassian
- java
- ubuntu
- DB
- 설정
- postgres
- python
- Windows
- 리눅스
- 아틀라시안
- 설치
- script
- 우분투
- 하모니카
- 파이썬
- install
- Linux
- 3.0
- javascript
- PostgreSQL
- 데이터베이스
- 자바
- JS
- hamonikr
- 스크립트
- DATABASE
- 자바스크립트
- node
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
http basic 인증 시 로그아웃 방법 본문
반응형
<html>
<head>
<script language="javascript" type="text/javascript">
let url = "127.0.0.1:80";
var xhr = new XMLHttpRequest();
xhr.onload = function(){
if(xhr.status == 401){
window.location = 'http://' + url + '/login/';
}
};
xhr.open('GET','http://_:_@' + url + '/login/', true, 'logout', 'logout');
xhr.send('');
setTimeout(function(){
window.location = "http://" + url + "/";
}, 5000);
</script>
</head>
<body>
<h1>Log Out Success</h1>
<p>You have successfully logged out of the gerrit.</p>
</body>
</html>
basuc auth 인증은 logout 을 지원하지 않는다.
따라서 잘못된 인증을 전달하여 기존 인증을 덮어쓰도록 하여
강제로 로그아웃을 하도록 만든 후 login 페이지로 이동하도록 구현한다.
참고 : https://developer.mozilla.org/ko/docs/Web/HTTP/Authentication
반응형
Comments