Facebook
From Tiny Capybara, 5 Years ago, written in Plain Text.
This paste is a reply to Jones Mobile Hacked BY SemenderTim from SemenderTim - view diff
Embed
Download Paste or View Raw
Hits: 344
  1.  +----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
  2. | id | email                | deleted | username   | password                                                                                                                         | last_login | modifiedby | datecreated | datemodified |
  3. +----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
  4. | 1  | [email protected] | 0       | admin_jmtv | 74F19AEB4AEF8ED825150FDFBA05C2E97D421D678BCD739BF7321B3399B911AD9B6B2FF1EAA30EC5D5AEB557266196B26D78A16E10A37A88E244A15AF9BAFDF1 | 1523639699 | admin      | 1257787932  | 1523627333   |
  5. +----+----------------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------+------------+------------+-------------+--------------+
  6. https://pastebin.pl/view/raw/7adfafe6
  7. deface
  8. <?php
  9.  
  10. /**
  11. * Send a POST requst using cURL
  12. * @param string $url to request
  13. * @param array $post values to send
  14. * @param array $options for cURL
  15. * @return string
  16. */
  17. function curl_post($url, array $post = NULL, array $options = array())
  18. {
  19.     $defaults = array(
  20.         CURLOPT_POST => 1,
  21.         CURLOPT_HEADER => 0,
  22.         CURLOPT_URL => $url,
  23.         CURLOPT_FRESH_CONNECT => 1,
  24.         CURLOPT_RETURNTRANSFER => 1,
  25.         CURLOPT_FORBID_REUSE => 1,
  26.         CURLOPT_TIMEOUT => 4,
  27.         CURLOPT_POSTFIELDS => http_build_query($post)
  28.     );
  29.  
  30.     $ch = curl_init();
  31.     curl_setopt_array($ch, ($options + $defaults));
  32.     if( ! $result = curl_exec($ch))
  33.     {
  34.         trigger_error(curl_error($ch));
  35.     }
  36.     curl_close($ch);
  37.     return $result;
  38. }
captcha