分享

检测到目标web应用表单密码类型输入启用了自动完成操作

 王守奎的图书馆 2022-09-21 发布于山西

1)当密码类型的input标签没有“autocomplete”属性名时,如:

<input type="password" name="password">

则增加“autocomplete”属性为“off”即可,修改为:

<input type="password" name="password" autocomplete="off">

2) 当密码类型的input标签有“autocomplete”属性名,但其属性值为“on”时, <input type="password" name="password" autocomplete="on">

则修改“autocomplete”属性为“off”即可,修改为:

<input type="password" name="password" autocomplete="off">

    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多