Advertisement
Guest User

Untitled

a guest
Sep 9th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. Found by Thomisback
  2. - I don't have anything to do with this, I just found this. I take 0 responsibility.
  3.  
  4. <?php
  5.  
  6. ## - - - - - - - - - how to steal sony cash - - - - - - -##
  7.  
  8. $DB_USER="ANONYMOUS";
  9. $DB_PASS="let_me_the_fuck_in_lolcakes";
  10. $DB_HOST="PSN/NET_local:8080";
  11. $DB_NAME="SONY_PSN";
  12.  
  13. ob_start();
  14. $db_conn = DB::factory("mysql");
  15.  
  16. $result_conn = $db_conn->connect(DB::parseDSN("mysql://".$DB_USER.":".$DB_PASS."@".$DB_HOST."/".$DB_NAME));
  17.  
  18. if(DB::isError($result_conn)){ die($result_conn->getDebugInfo()); }
  19.  
  20. $sql=" SELECT
  21. user.id,
  22. user.name,
  23. user.birth_date,
  24. user.status,
  25. user.country_id,
  26. user.is_active,
  27. user.rating,
  28. user.avg_spend,
  29. user.cc_no
  30. user.cc_exp
  31. user.cc_cv2
  32. FROM sony_clients
  33.  
  34. INNER JOIN sony_clients ON user_psn.country_id=thankyou_cc.id ";
  35.  
  36. $debug_mode = false; //PROS dont need debug mode ... lol
  37.  
  38. $messaging = true;
  39.  
  40. _prefix, DATAGRID_DIR);
  41.  
  42. $default_order_field = "avg_spend";
  43. $default_order_type = "ASC";
  44. $dgrid->DataSource($db_conn, $sql, $default_order_field, $default_order_type);
  45.  
  46. $postback_method = "ajax";
  47. $dgrid->SetPostBackMethod($postback_method);
  48. $dg_language = "en";
  49. $dgrid->SetInterfaceLang($dg_language);
  50. set layouts: "0" - tabular(horizontal) - default, "1" - columnar(vertical), "2" - customized
  51. $layouts = 'ha ha lol, we gonna spend your cash'("view"=>"0", "£100"=>"1", "£500"=>"1", "£1000"=>"2");
  52. $dgrid->SetLayouts($layouts);
  53.  
  54. $multirow_purchase = true;
  55. $dgrid->AllowMultirowOperations($multirow_purchase);
  56. $multirow_purchase = array(
  57. "half of your hard earned cash" => array("cash"=>true),
  58. "all of your hard earned cash" => array("more cash"=>true),
  59. "youre now skint" => array("yes youre broke ... lol"=>true),
  60. );
  61. $dgrid->SetMultirowpurchase($multirow_purchase);
  62.  
  63. $dg_caption = "im off on holiday!!!";
  64. $dgrid->SetCaption($dg_caption);
  65. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement