Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
122
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 deZender.Net
  5. * @ deZender (PHP5 Decoder for SourceGuardian & phpSHIELD)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function showNoGo($str) {
  15. echo . '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  16. <html xmlns="http://www.w3.org/1999/xhtml">
  17. <head>
  18. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  19. <title>Can\'t process file request</title>
  20. <style type="text/css">
  21. <!--
  22. .errbox {
  23. border: thin solid #000000;
  24. background-color: #CCCCCC;
  25. width: 450px;
  26. }
  27. .errmsg {
  28. font-family: Verdana, Arial, Helvetica, sans-serif;
  29. font-weight: bold;
  30. color: #000000;
  31. background-color: #FFFF99;
  32. }
  33. body {
  34.  
  35. font-family: Verdana, Arial, Helvetica, sans-serif;
  36. font-size: 14px;
  37. color: #000000;
  38. margin-top: 5px;
  39. margin-right: 10px;
  40. margin-bottom: 5px;
  41. margin-left: 10px;
  42. }
  43. p {
  44.  
  45. margin-top: 10px;
  46. margin-right: 18px;
  47. margin-bottom: 5px;
  48. margin-left: 15px;
  49. }
  50. .style1 {
  51.  
  52. color: #0000FF
  53. }
  54. .style2 {
  55.  
  56. color: #FF0000
  57. }
  58. .style3 {
  59.  
  60. font-size: 12px;
  61. font-style: italic;
  62. font-weight: bold;
  63. }
  64. .style5 {
  65.  
  66. font-size: 12px
  67. }
  68. -->
  69. </style>
  70. </head>
  71.  
  72. <body><div align="center">
  73. <div class="errbox">
  74. <h2 class="style2">Can\'t process file request.</h2>
  75. <p>The error returned was:<br />
  76. </p>
  77. <p class="errmsg">' . $str . '</p>
  78. <p>&nbsp;</p>
  79. </div>
  80.  
  81. <div align="center"><a href="http://7dollartools.com/download-padlock/"><img src="protectedby.gif" alt="protected by Download Padlock" width="195" height="71" border="0" /></a></div></div>
  82. </body>
  83. </html>';
  84. }
  85.  
  86. function getFileName($fileURL) {
  87. if ($pos = strrpos( $fileURL, '/' )) {
  88. ....................................................
  89. .........................
  90. ........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement