• May 14, 2018

    เห็นใน Push notify หรือเว็บ secure หลายๆที่ และ แฮกเกอร์ ใช้กัน

    $fileHandle = fopen("someImage.jpg", "rb");
    $fileContents = stream_get_contents($fileHandle);
    fclose($fileHandle);
    
    $params = array(
       'http' => array
       (
           'method' => 'POST',
           'header'=>"Content-Type: multipart/form-data\r\n",
           'content' => $fileContents
       )
    );
    $url = "http://somesite.somecompany.com?someParam=someValue";
    $ctx = stream_context_create($params);
    $fp = fopen($url, 'rb', false, $ctx);
    
    $response = stream_get_contents($fp);

    ถ้าเป็นตัวนี้มันสามารถ Post ไปเว็บโดยสามารถซ่อนการทำงานได้
    ต่างจาก post และ get ปกติ ที่จะต้อง action ไปยัง page นั้นๆ

     



เวอไนน์ไอคอร์ส

ประหยัดเวลากว่า 100 เท่า!






เวอไนน์เว็บไซต์⚡️
สร้างเว็บไซต์ ดูแลเว็บไซต์

Categories