Server IP : 15.235.198.142 / Your IP : 216.73.216.126 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/rhodeworks/wp-content/plugins/nextgen-gallery/src/DynamicThumbnails/ |
Upload File : |
<?php namespace Imagely\NGG\DynamicThumbnails; use Imagely\NGG\DataStorage\Manager as StorageManager; use Imagely\NGG\Display\StaticAssets; class Controller { public function index_action( $return = false ) { @set_time_limit( 0 ); @ini_set( 'memory_limit', '-1' ); $dynthumbs = Manager::get_instance(); $uri = $_SERVER['REQUEST_URI']; $params = $dynthumbs->get_params_from_uri( $uri ); $request_params = $params; if ( $params != null ) { $storage = StorageManager::get_instance(); $image_id = $params['image']; $size = $dynthumbs->get_size_name( $params ); $abspath = $storage->get_image_abspath( $image_id, $size, true ); $valid = true; // Render invalid image if hash check fails if ( $abspath == null ) { $uri_plain = $dynthumbs->get_uri_from_params( $request_params ); $hash = \wp_hash( $uri_plain ); if ( strpos( $uri, $hash ) === false ) { $valid = false; $filename = StaticAssets::get_abspath( 'DynamicThumbnails/invalid_image.png' ); readfile( $filename ); } } if ( $valid ) { $storage->render_image( $image_id, $size ); } } } }