美文网首页
mysql load_file在数据库使用chmod

mysql load_file在数据库使用chmod

作者: Eric_Zeng | 来源:发表于2018-09-29 16:11 被阅读10次

    chmod u+x test.sh  只给拥有者加上可执行权限

    chmod g+x test.sh  只给群组身份加上可执行权限

    chmod o+x test.sh  只给其他人身份加上可执行权限

    chmod a+x test.sh    这里的a就代表所有的3中身份!

    如果要去掉某个身份的某个权限,只需要将+变为-即可

    mysql load_file在数据库注入中使用

    load_file函数只有满足两个条件就可以使用:

    1、文件权限:chmod a+x pathtofile

    2、文件大小: 必须小于max_allowed_packet

    相关文章

      网友评论

          本文标题:mysql load_file在数据库使用chmod

          本文链接:https://www.haomeiwen.com/subject/kqkboftx.html