首页 > 其他 > 详细

PWN ORW

时间:2018-02-18 16:17:49      阅读:432      评论:0      收藏:0      [点我收藏+]

2018-02-18 15:44:34

Open Write Read

技术分享图片

 

技术分享图片

 


open函数

#include <sys/types.h>
       #include <sys/stat.h>
       #include <fcntl.h>

       int open(const char *pathname, int flags);
       int open(const char *pathname, int flags, mode_t mode);

       int creat(const char *pathname, mode_t mode);

       int openat(int dirfd, const char *pathname, int flags);
       int openat(int dirfd, const char *pathname, int flags, mode_t mode);
最简单的open *pathname文件路径 flags 打开的模式,可读 可写 可执行

PWN ORW

原文:https://www.cnblogs.com/rookieDanny/p/8452849.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!