Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Proxy
- x-pack
- 한글가이드
- bash
- centos 8
- 로그인불가
- docker
- proxycfg
- ansible
- miniconda
- endpoint security
- Elasticsearch
- Windows
- ssh key 배포
- hardening
- G-suite
- GitLab
- Kibana server is not ready yet
- elastic stack
- XCP-ng
- ELASTIC
- freebsd
- 보안양파
- PlayBook
- macos
- xe guest utilities
- application security
- pfsense
- Kibana
Archives
- Today
- Total
선 밖에 선 자유인
XSS 가능한 html 태그 패턴 본문
<script> : 자바스크립트, VB 스크립트
- <script>alert("test");</script>
<iframe>
- <iframe src="http://xxx.com/"></iframe>
<object>
<object type="application/x-shockwave-flash" data="image/banner.swf" width="140" height="40"></object>
<applet > : 자바 애플릿과 HTML 연결
<applet code="class name" width=n height=n></applet>
<embed> : 웹 페이지에 객체 삽입
<embed src="http://aaa.com/flash.swf"></embed>
<form>
<meta> : meta 태그가 지시하는 URL로 이동, content=0 은 즉시 이동
<meta http-equiv="refresh" content="0;URL=http://www.xxx.com">
<script> 태그가 지시하는 대로 이동
<script>location = "http://xxx.com";</script>
unescape()
html 인코딩된 코드를 디코딩
- 출처: <웹 모의해킹과 시큐어코딩 진단 가이드 > 중에서
Comments