Loading... <div class="tip inlineBlock info simple small"> 最近羊了个羊很火啊,听说还有人通宵玩。然后刚好在52破解上看到有人发通关地址,就想拿来试一试 </div> # 接口 通关接口: ```php https://cat-match.easygame2021.com/sheep/v1/game/game_over?rank_score=1&rank_state=1&rank_time=90&rank_role=1&skin=1 ``` 抓取cookie教程:抓包教程:[https://www.52pojie.cn/thread-1688336-1-1.html](https://www.52pojie.cn/thread-1688336-1-1.html) 可以从这个地址可以看出他们用&做为连接,通过抓包得知羊了个羊的cookie是用t来表示的,所以可以写成如下形式。 `https://cat-match.easygame2021.com/sheep/v1/game/game_over?rank_score=1&rank_state=1&rank_time=90&rank_role=1&skin=1&t=你的游戏cookie` 然后直接在浏览器上访问,果然和我想的一样,完美过关+1 也不需要用用到post和get直接访问就行 # 界面展示 为方便使用随便写了个界面,在文本框中填入你的游戏cookie即可 ![请输入图片描述](https://loljz.cn/usr/uploads/2022/09/727166903.jpg) # 完整代码 完整代码如下 ```html <!DOCTYPE html> <html lang="en"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>羊了个羊去nm</title> <link rel="canonical" href="https://getbootstrap.com/docs/4.3/examples/sign-in/"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> <link rel="stylesheet" type="text/css" href="http://hfzs.06pan.com/css/v3.css" /> </head> <body> <div class="header"> </div> <div class="index_info"> <p class="p3">保护羊羊人人有责</p> <p class="p1">一键通关 帮助你不在熬夜</p> <div> <form method="post" action="" > <div class="group"> <h2>cookie</h2> <input type="text" id="reason" name="body" value="" class="unique_code" placeholder="游戏cookie" > <br> <button type="submit" class="index_submit" >一键通关</button> </div> </form> </div> </div> </body> </html> <?php $login_url= "https://cat-match.easygame2021.com/sheep/v1/game/game_over?rank_score=1&rank_state=1&rank_time=90&rank_role=1&skin=1"; $cookie =htmlentities(trim($_POST['body'])); access_url("https://cat-match.easygame2021.com/sheep/v1/game/game_over?rank_score=1&rank_state=1&rank_time=90&rank_role=1&skin=1&t=".$cookie); function access_url($url) { if ($url=='') return false; $fp = fopen($url, 'r') or exit('Open url faild!'); if($fp){ while(!feof($fp)) { $file.=fgets($fp).""; } fclose($fp); } return $file; } ?> ``` 最后修改:2022 年 09 月 17 日 © 允许规范转载 打赏 赞赏作者 赞 1 如果觉得我的文章对你有用,请随意赞赏
3 条评论
看的我热血沸腾啊https://www.237fa.com/
这个代码运行出来显示输入cookie界面了。但是为什么输入进去没反应
php环境有嘛?