Advertisement
Guest User

Untitled

a guest
May 24th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
  6. *
  7. * @ Version : 1.1.3.0
  8. * @ Author : DeZender
  9. * @ Release on : 17.05.2011
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. $relativePath = $str->fromHTML( $_REQUEST['path'] );
  15.  
  16. if (!( $fileman->isCleanPath( $relativePath ))) {
  17. exit( 'Invalid path!' );
  18. }
  19.  
  20. if ($fileman->isSharedPath( $relativePath )) {
  21. $isSharedFolder = true;
  22. $pathInfo = $fileman->parsePath( $relativePath );
  23. $uid = $pathInfo['uid'];
  24. }
  25.  
  26. $path = $myfiles->getUserAbsolutePath( $relativePath );
  27. $keyword = $str->fromHTML( $_POST['keyword'] );
  28. $searchFilename = $str->fromHTML( $_POST['filename'] );
  29. $metaValue = $str->fromHTML( $_POST['metavalue'] );
  30. $metaField = $str->fromHTML( $_POST['metafield'] );
  31. ......................................
  32. ...........................
  33. ................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement