Guest User

Untitled

a guest
Jan 25th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.0.8.0
  8. * @ Author : DeZender
  9. * @ Release on : 25.09.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function hashcheck()
  15. {
  16. if (EX == 1) {
  17. return false;
  18. }
  19.  
  20. return true;
  21. }
  22.  
  23. if (!(function_exists( 'FBCookie_Login' ))) {
  24. function FBCookie_Login($username, $password)
  25. {
  26. $FbBot = FBCookie( $username, $password );
  27. return $FbBot->login( );
  28. }
  29. }
  30.  
  31. if (!(function_exists( 'FBCookie' ))) {
  32. function FBCookie($username, $password, $debug = false)
  33. {
  34. require APPPATH . 'libraries/FbCookie/FbBot.php';
  35. $FbBot = new FbBot( $username, $password, $debug );
  36. return $FbBot;
  37. }
  38. }
  39.  
  40. if (!(function_exists( 'FbOAuth_Friends' ))) {
  41. function FbOAuth_Friends($username, $password = '', $fid = '', $access_token = '')
  42. {
  43. $params = array(
  44. 'limit' => 10000,
  45. 'access_token' => $access_token
  46. );
  47. $data = FbOAuth( )->api( '/v2.8/' . $fid . '/friends', 'GET', $params );
  48.  
  49. if (isset( $data['data'] ) && !(empty( $data['data'] ))) {
  50. return $data['data'];
  51. }
  52.  
  53. $FbBot = FBCookie( $username, $password );
  54. return $FbBot->friends( );
  55. }
  56. }
  57.  
  58. if (!(function_exists( 'FbOAuth_Post_Likers' ))) {
  59. function FbOAuth_Post_Likers($username, $password = '')
  60. {
  61. $FbBot = FBCookie( $username, $password );
  62. return $FbBot->post_likers( );
  63. }
  64. }
  65.  
  66. if (!(function_exists( 'GET_FRIENDS_BY_TOKEN' ))) {
  67. function GET_FRIENDS_BY_TOKEN($fid, $access_token, $data = array( ), $page = '')
  68. {
  69. $params = array(
  70. 'limit' => 10000,
  71. 'access_token' => $access_token
  72. );
  73.  
  74. if ($page != '') {
  75. $params['after'] = $page;
  76. }
  77.  
  78. $result = FbOAuth( )->api( '/v2.8/' . $fid . '/friends', 'GET', $params );
  79. ..................................................................
  80. ..................................
  81. ......
Advertisement
Add Comment
Please, Sign In to add comment