Advertisement
Guest User

Untitled

a guest
May 17th, 2015
3,664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.38 KB | None | 0 0
  1. <?php
  2. /*****************************************************************
  3. * SAYAPRO.COM - Code by RIyan PraTama *
  4. * Create : 29 maret 2015 *
  5. * Author : http://www.fb.com/RIYAN.PRATAMA.R.A *
  6. *---------------------------------------------------------------*
  7. * Jangan menghapus bagian ini untuk menghargai karya orang lain *
  8. *****************************************************************/
  9.  
  10.  
  11. //*Setting site
  12. $site_url = "http://www.sayapro.com";
  13. $site_mode = "test_mode";
  14. $checker_name = "sayapro.com";
  15. $direct_access = "true";
  16. $MyBtcAddress = "12t8qzy518Yc9LutWne37v7jmxe6HwwKPg";
  17. $SecretRecaptcha = "6Lc0uQUTAAAAAN43uI-XgtGzxOy3rYXzK5SbO3Jm";
  18. $SaltPW = "https://www.facebook.com/RIYAN.PRATAMA.R.A";
  19.  
  20. //*Database
  21. $db_name = "sayapro_sayapro";
  22. $db_user = "sayapro_riyan";
  23. $db_password = "riyanpratama";
  24. $db_host = "localhost";
  25.  
  26. //*Invite Code Status
  27. $ic_all = "10";
  28. $ic_used = "3";
  29. $ic_active = "4";
  30.  
  31. //*Url setting
  32. $url = (object) array(
  33. "card" => $site_url.'/card',
  34. "acc" => $site_url.'/acc',
  35. "other" => $site_url.'/other',
  36. "free" => $site_url.'/free',
  37. "invite" => $site_url.'/invites',
  38. "accountsetting" => $site_url.'/account/setting',
  39. "logout" => $site_url.'/account/logout.php',
  40. "login" => $site_url.'/account',
  41. "freecredit" => $site_url.'/freecredit',
  42. "addcredit" => $site_url.'/buy',
  43. "home" => $site_url,
  44. "order" => $site_url.'/order',
  45.  
  46. //*Merchant Setting
  47. "StripeCekAPI"=> $site_url.'/merchant/stripe/CekAPI.php',
  48. "StripeCharge1"=> $site_url.'/merchant/stripe/Charge1.php',
  49. "StripeCharge2"=> $site_url.'/merchant/stripe/Charge2.php',
  50. "StripeCharge3"=> $site_url.'/merchant/stripe/Charge3.php',
  51. "StripeCharge4"=> $site_url.'/merchant/stripe/Charge3.php'
  52. );
  53.  
  54. //*Status checker
  55. $StatusChecker = (object) array(
  56. "card" => "8",
  57. "acc" => "1",
  58. "other" => "0",
  59. "free" => "6",
  60. );
  61.  
  62. $domain = (object) array(
  63. "sayapro"=> "sayapro.com",
  64. "ccforml"=> "ccfor.ml"
  65. );
  66.  
  67. //*Card Checker
  68. $ccv1 = (object) array(
  69. "name" => "CCV 1 Check Billing",
  70. "description" => "Support all types of card. Check billing only, Charge $1-$4. Available for <font color=red><b>All User</b></font>",
  71. "live" => "-&cent;2",
  72. "cc_die" => "-&cent;0",
  73. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  74. "link" => '../ccv1'
  75. );
  76.  
  77. $ccv2 = (object) array(
  78. "name" => "CCV Gate 2",
  79. "description" => "Support all types of card. Charge with $5-$9 USD. Available for <font color=red><b>All User</b></font>.",
  80. "live" => "-&cent;2",
  81. "cc_die" => "-&cent;0",
  82. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  83. "link" => '../ccv2'
  84. );
  85.  
  86. $ccv3 = (object) array(
  87. "name" => "CCV Gate 3",
  88. "description" => "Support all types of card. Charge with $20-$60 USD. Check High Balance Card. Available for <font color=red><b>All User</b></font>",
  89. "live" => "-&cent;5",
  90. "cc_die" => "-&cent;0",
  91. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  92. "link" => '../ccv3'
  93.  
  94. );
  95.  
  96. $ccv4 = (object) array(
  97. "name" => "CCV Gate 4",
  98. "description" => " Support Visa, Amex and Master Card. Charge $100-$500. Check Very High Balance Card. Only <font color=blue><b>Paid User</b></font> up who can use this feature.",
  99. "live" => "-&cent;10",
  100. "cc_die" => "-&cent;0",
  101. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  102. "link" => '../ccv4'
  103. );
  104.  
  105. $ccv5 = (object) array(
  106. "name" => "CCV Gate 5",
  107. "description" => "Duplicate CCV 3 but available for <font color=red><b>All User</b></font>. Charge $20-$60 USD",
  108. "live" => "-&cent;4",
  109. "cc_die" => "-&cent;0",
  110. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  111. "link" => '../ccv5'
  112. );
  113.  
  114. $ccv6 = (object) array(
  115. "name" => "CCV Gate 6",
  116. "description" => "Support Visa, Amex and Master Card. Charge $10-$30. Available for <font color=red><b>All User</b></font>",
  117. "live" => "-&cent;2",
  118. "cc_die" => "-&cent;0",
  119. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  120. "link" => '../ccv6'
  121. );
  122.  
  123. $vbv = (object) array(
  124. "name" => "3D-Secure Checker",
  125. "description" => "VBV/MCSC (3D-Secure) Checker. This is not checker for checking dead or live cards. <font color=blue><b>Paid User</b></font> only.",
  126. "live" => "-&cent;2",
  127. "cc_die" => "-&cent;1",
  128. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  129. "link" => '../vbv'
  130. );
  131.  
  132. $ccd1 = (object) array(
  133. "name" => "CCD Gate 1",
  134. "description" => "Merchant donate. Charge $5 - $10. Tester Merchant up to Free User. ( Anti merchant die )",
  135. "live" => "-&cent;2",
  136. "cc_die" => "-&cent;0",
  137. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  138. "link" => '../ccd1'
  139. );
  140.  
  141. $checker = (object) array(
  142. "ccv1" => $ccv1,
  143. "ccv2" => $ccv2,
  144. "ccv3" => $ccv3,
  145. "ccv4" => $ccv4,
  146. "ccv5" => $ccv5,
  147. "ccv6" => $ccv6,
  148.  
  149. "vbv" => $vbv,
  150. "ccd1" => $ccd1,
  151. );
  152.  
  153. //*Free Tools
  154. $free_bin = (object) array(
  155. "name" => "Bin Checker",
  156. "description" => "Check Bin Information ",
  157. "live" => "-&cent;0",
  158. "cc_die" => "-&cent;0",
  159. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  160. "link" => "../bin"
  161. );
  162.  
  163. $free_md5 = (object) array(
  164. "name" => "MD5 Generator",
  165. "description" => "MD5 Hash Generator Information",
  166. "live" => "-&cent;0",
  167. "cc_die" => "-&cent;0",
  168. "status" => '<i class="fa fa-times" style="color:#D9534F"></i>',
  169. "link" => "../md5"
  170. );
  171. $free_filter = (object) array(
  172. "name" => "Filter tool",
  173. "description" => "Filter any thing you want",
  174. "live" => "-&cent;0",
  175. "cc_die" => "-&cent;0",
  176. "status" => '<i class="fa fa-times" style="color:#D9534F"></i>',
  177. "link" => "/"
  178. );
  179. $free_reposition = (object) array(
  180. "name" => "Mail/Pass Re-position",
  181. "description" => "Convert mail/pass into format email|pwd to use in checker ",
  182. "live" => "-&cent;0",
  183. "cc_die" => "-&cent;0",
  184. "status" => '<i class="fa fa-times" style="color:#D9534F"></i>',
  185. "link" => "../reposition"
  186. );
  187. $free_mp8chars = (object) array(
  188. "name" => "8 Chars Mail/Pass Filter",
  189. "description" => "Filter Mail/Pass by password length",
  190. "live" => "-&cent;0",
  191. "cc_die" => "-&cent;0",
  192. "status" => '<i class="fa fa-times" style="color:#D9534F"></i>',
  193. "link" => "../mp8chars"
  194. );
  195. $free_extrap = (object) array(
  196. "name" => "CC Extrap",
  197. "description" => "Free CC Extrap for all user, Expand Credit Card",
  198. "live" => "-&cent;0",
  199. "cc_die" => "-&cent;0",
  200. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  201. "link" => "../extrap"
  202. );
  203.  
  204. $freetools = (object) array(
  205. "bin" => $free_bin,
  206. "md5" => $free_md5,
  207. "filter" => $free_filter,
  208. "reposition" => $free_reposition,
  209. "mp8chars" => $free_mp8chars,
  210. "extrap" => $free_extrap,
  211. );
  212.  
  213. //*Account Checker
  214. $acc_paypal = (object) array(
  215. "name" => "PayPal Account Checker",
  216. "description" => "Check login, bank, card, balance, address, phone, BML, Smart Connect,... ",
  217. "live" => "-&cent;2",
  218. "cc_die" => "-&cent;0",
  219. "status" => '<i class="fa fa-check" style="color:#1CAF9A"></i>',
  220. "link" => '../paypal'
  221. );
  222.  
  223. $AccChecker = (object) array(
  224. "paypal" => $acc_paypal
  225. );
  226.  
  227.  
  228. //*Invitecode rules
  229. $InviteCode = 'SPRO'. '-' .RandomIC("3"). '-' . RandomIC("3"). '-' . RandomIC("3");
  230.  
  231. //*Connect to database
  232. ConnectToDatabase($db_name,$db_user,$db_password,$db_host);
  233. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement