Advertisement
Guest User

Untitled

a guest
Nov 15th, 2012
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. define( 'DEFINE_MY_ACCESS', true );
  15. define( 'ADMIN', true );
  16. require( '../comm.php' );
  17.  
  18. if ($storeowner['id']) {
  19. exit( );
  20. }
  21.  
  22. require( 'includes/fun.inc.php' );
  23. require( '../includes/fun.inc.php' );
  24. require( 'includes/comm.inc.php' );
  25. $results = mainChk( );
  26. $msg = nl2br( $msg );
  27.  
  28. if ($results['addons']) {
  29. $addons = $results['addons'];
  30. }
  31.  
  32.  
  33. if ($debug_output) {
  34. echo '<textarea cols=100 rows=20>';
  35. print_r( $results );
  36. echo '</textarea>';
  37. }
  38.  
  39.  
  40. if (isset( $_GET )) {
  41. foreach ($_GET as $key => $value) {
  42. $_GET[$key] = preg_replace( '/[^a-z^A-Z^0-9s|^.^,^=^@^_^#^-^\-^\?^\&^\\ ^\/^\r^\n]*/', '', $value );
  43. }
  44. }
  45.  
  46. $licensekey = str_replace( '-', '', $licensekey );
  47. $licensekey = trim( $licensekey );
  48.  
  49. if (( ( $username || $password ) || $licensekey )) {
  50. if (check_token( )) {
  51. $loginsuccess = false;
  52. $username = trim( $username );
  53. $password = trim( $password );
  54. $err_output = null;
  55.  
  56. if ($username) {
  57. if ($password) {
  58. $username = mysql_real_escape_string( $username );
  59. $password = mysql_real_escape_string( $password );
  60. ..........................................................................
  61. ...........................................
  62. ...................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement