Description:

http://123.206.87.240:9001/test/

hints:JavaScript


Solution:

查看网页源代码,发现一段代码

var clicks=0
$(function() {
  $("#cookie")
    .mousedown(function() {
      $(this).width('350px').height('350px');
    })
    .mouseup(function() {
      $(this).width('375px').height('375px');
      clicks++;
      $("#clickcount").text(clicks);
      if(clicks >= 1000000){
      	var form = $('<form action="" method="post">' +
		'<input type="text" name="clicks" value="' + clicks + '" hidden/>' +
		'</form>');
		$('body').append(form);
		form.submit();
      }
    });
});

按照意思,要用POST方式传递clicks变量,其值要大于等于1000000

用hackbar传参【BugkuCTF】Web--点击一百万次获得flag【BugkuCTF】Web--点击一百万次


Flag:

flag{Not_C00kI3Cl1ck3r}

相关文章:

  • 2021-04-28
  • 2021-04-11
  • 2021-10-10
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-12-18
猜你喜欢
  • 2021-04-28
  • 2021-12-28
  • 2021-04-23
  • 2021-07-01
  • 2021-05-19
  • 2022-12-23
相关资源
相似解决方案