1. 程式人生 > >PWN ORW

PWN ORW

reat 分享圖片 class alt 技術 bsp ros ons open

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