Facebook
From Tiny Capybara, 5 Years ago, written in Plain Text.
This paste is a reply to Jones Mobile Hacked BY SemenderTim from SemenderTim - go back
Embed
 +----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
| id | email                | deleted | username   | password                                                                                                                         | last_login | modifiedby | datecreated | datemodified |
+----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
| 1  | [email protected] | 0       | admin_jmtv | 74F19AEB4AEF8ED825150FDFBA05C2E97D421D678BCD739BF7321B3399B911AD9B6B2FF1EAA30EC5D5AEB557266196B26D78A16E10A37A88E244A15AF9BAFDF1 | 1523639699 | admin      | 1257787932  | 1523627333   |
+----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
https://pastebin.pl/view/raw/7adfafe6
deface

/** 
* Send a POST requst using cURL 
* @param string $url to request 
* @param array $post values to send 
* @param array $options for cURL 
* @return string 
*/ 
function curl_post($url, array $post = NULL, array $options = array()) 

    $defaults = array( 
        CURLOPT_POST => 1, 
        CURLOPT_HEADER => 0, 
        CURLOPT_URL => $url, 
        CURLOPT_FRESH_CONNECT => 1, 
        CURLOPT_RETURNTRANSFER => 1, 
        CURLOPT_FORBID_REUSE => 1, 
        CURLOPT_TIMEOUT => 4, 
        CURLOPT_POSTFIELDS => http_build_query($post) 
    ); 

    $ch = curl_init(); 
    curl_setopt_array($ch, ($options + $defaults)); 
    if( ! $result = curl_exec($ch)) 
    { 
        trigger_error(curl_error($ch)); 
    } 
    curl_close($ch); 
    return $result; 
captcha