惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
G
Google Developers Blog
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
aimingoo的专栏
aimingoo的专栏
N
News and Events Feed by Topic
L
LINUX DO - 最新话题
V
Vulnerabilities – Threatpost
H
Hacker News: Front Page
T
Tor Project blog
P
Proofpoint News Feed
P
Privacy International News Feed
Recorded Future
Recorded Future
F
Fortinet All Blogs
量子位
博客园 - 聂微东
月光博客
月光博客
博客园 - Franky
SecWiki News
SecWiki News
G
GRAHAM CLULEY
腾讯CDC
Know Your Adversary
Know Your Adversary
宝玉的分享
宝玉的分享
The Cloudflare Blog
美团技术团队
小众软件
小众软件
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Threatpost
爱范儿
爱范儿
A
Arctic Wolf
博客园 - 叶小钗
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Project Zero
Project Zero
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
C
Cyber Attacks, Cyber Crime and Cyber Security
博客园 - 三生石上(FineUI控件)
PCI Perspectives
PCI Perspectives
Latest news
Latest news
V
V2EX
罗磊的独立博客
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
S
Security Affairs
S
SegmentFault 最新的问题

十二的编程笔记

26 年新年前 vibe coding 感慨 - 随便写写 社区驱动型流量的转化效能与质量特征分析 - AI - 计算机科学 ClawdBot 祛魅 2 小时安装 + 实际体验 还需再练练 - AI - 计算机科学 golang 标准库源码解析 - runtime2 GMP - Lib - GO - 计算机科学 BCTF2025-AI - BCTF2025 - CTF - 计算机科学 BCTF2025-MISC-01~08 - BCTF2025 - CTF - 计算机科学 golang 标准库源码解析 - channel - Lib - GO - 计算机科学 golang 标准库源码解析 - Context - Lib - GO - 计算机科学 golang 多版本环境控制 - GO - 计算机科学 cloudflare connect 踩坑记录 - Project - 计算机科学 BCTF2024-MISC - BCTF2024 - CTF - 计算机科学 Hexo 使用 github Action 进行发布 - Project - 计算机科学 BCTF2024-IOT - BCTF2024 - CTF - 计算机科学 BCTF2024-REVERSE - BCTF2024 - CTF - 计算机科学 分布式事务 - 高可用 - 计算机科学 分布式 CAP 和 BASE 理论 简介 - 高可用 - 计算机科学 搭建使用 Cloudflare Worker 的 Docker 镜像 - Project - 计算机科学 GitHub Copilot 封号及退款过程 - Project - 计算机科学 记录一次 innodb 全表 update - MySQL - Database - 计算机科学
BCTF2024-WEB-01~08 - BCTF2024 - CTF - 计算机科学
本文作者: Twelveeee @十二的编程笔记 · 2024-10-12 · via 十二的编程笔记

# 万能密码

题目

小明是一个运维工程师,他竟然忘记了管理台的密码,看着系统登录框,他陷入了沉思

www.example.com

答案

flag{9b29c64d7d5c05103510474792e59a67}

题解
sql 注入
密码输入 `1' or '1'='1`

# 未授权访问

题目

小明是一个研发工程师,有一次他接到一个需求,负责为 http://example.com:8080/ 管理平台添加一个接口,写个接口的事,实现功能逻辑很简单,但不要忘了安全授权

答案

flag{ac07a1308c5580fbbe57c16afdad1ae3}

题解

js 代码中有一段这个

, Y = () => D({
    url: "http://" + window.location.host + "/api/userinfo?id=" + t.toString(),
    method: "get"
})

请求 http://example.com/api/userinfo?id=0

# 前端认证

题目

小明是一个运维工程师,他竟然忘记了管理台 http://example.com/#/login 的密码,看着系统登录框,他又陷入了沉思

答案

flag{4bfc0fb4b27629d86daa293e61657294}

题解

劫持前端将 返回 code 改为 “0” 即可

# github

题目

小雅是一个研发工程师,有一天他接到了一个 bctf2024 的一个游戏项目,由于项目紧迫,他想回家后继续努力工作,多么勤劳的程序猿啊,然而他习惯性的登录了 github

答案

flag{03321386129b425e2c190baf810f8e44}

题解

通过搜索 BCTF2024,找到仓库,再 commit 中记录有 flag

# 线上调试信息

题目

小韩是一个研发工程师,一天他在解决一个线上 http://example.com/#/login bug,于是开启了调试信息,上线后,忘了关了。。。。。

答案

flag{1101748de24f770b3ea3fe92af73450b}

题解
# 扫url
wscan --log-level=debug ws  --plug=dirscan --basic-crawler http://example.com:8080/ --html-output=./wscan_scan_result.html

# 发现 http://example.com/debug/pprof/
# http://example.com/debug/pprof/cmdline?debug=1

# 不安全配置

题目

小丁是一个研发工程师,一天他为了 http://example.com:8080/#/login 监控服务方便,他配置了 actuator

答案

flag{75b8eecf3ff828a958d20b03c8077ddc}

题解
# 扫一下url
wscan --log-level=debug ws  --plug=dirscan --basic-crawler http://example.com/api/ --html-output=./wscan_scan_result_api.html

找到 /api/actuator
heapdump 用 idea 打开,有 flag

# 不可以爬取的路径

题目

小夏上线了他的网站 http://example.com/#/login

答案

flag{aa2646a667ee1cd83235786dccef4a26}

题解
http://example.com/robots.txt
User-agent: *
Disallow: flag_1s_3ere

http://example.com/flag_1s_3ere

# 线上备份

题目

小 S 是一个运维工程师,一天他接到业务需求,进行线上 http://example.com/#/login 代码备份,然后就悲剧了

答案

flag{93ac40e0ceda197913f46d78c9d4715b}

题解
# 扫一下
wscan --log-level=debug ws  --plug=dirscan --basic-crawler http://example.com/ --html-output=./wscan_scan_result.html

有个 .DS_Store 文件
ttps://github.com/lijiejie/ds_store_exp 用这个打开
python3 ds_store_exp.py http://example.com/.DS_Store

找到目录
http://example.com/assets.zip

打开有个 flag