AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/nice/administrator/components/com_djcatalog2/helpers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/nice/administrator/components/com_djcatalog2/helpers/attachment.php
<?php
/**
 * @package DJ-Catalog2
 * @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
 * @license http://www.gnu.org/licenses GNU/GPL
 * @author url: http://dj-extensions.com
 * @author email contact@dj-extensions.com
 */

defined ('_JEXEC') or die('Restricted access');
use Joomla\CMS\Filesystem\Path;
use Joomla\CMS\Filesystem\Folder;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Factory;

class DJCatalog2HelperAttachment
{
	protected static $attachments_path = 'media/djcatalog2/msg_attachments';
	static $blacklist = array('php','php3','php4', 'php5', 'php6', 'phtml', 'pht', 'shtml','asa','cer','asax','swf','xap','sh','js');
	
	public static function processFile($file, $userTo = 0) {
		$fileInfo = null;
		
		$targetDir = Path::clean(JPATH_ROOT.'/'.static::$attachments_path.'/'.$userTo);
		if (!Folder::exists($targetDir)) {
			Folder::create($targetDir);
		}
		
		$isUploaded = (bool)(isset($file['tmp_name']));
		$isCustomPath = (bool)(isset($file['custom_path']));
		
		$newFile = array(
			'name' => '',
			'ext' => '',
			'size' => 0,
			'path' => '',
			'fullpath' => '',
			'source' => ''
		);
		
		if ($isUploaded) {
			if (!isset($file['error']) || !isset($file['size']) || !isset($file['name'])) {
				return false;
			}
			if ($file['error'] > 0 || $file['size'] == 0 || $file['name'] == '') {
				return false;
			}
			
			$newFile['source'] = $file['tmp_name'];
			
			$newFile['size'] = $file['size'];
			$newFile['name'] = static::createFileName($file['name'], $targetDir);
			$newFile['ext'] = File::getExt($newFile['name']);
			$newFile['path'] = static::$attachments_path.'/'.$userTo;
			$newFile['fullpath'] = static::$attachments_path.'/'.$userTo.'/'.$newFile['name'];
		} else if ($isCustomPath) {
			if (!isset($file['fullpath']) || !isset($file['fullname']) || !isset($file['caption'])) {
				return false;
			}
			$newFile['source'] = $file['fullpath'];
			$newFile['size'] = filesize($file['fullpath']);
			$newFile['name'] = static::createFileName($file['caption'] . '.' . File::getExt($file['fullname']), $targetDir);
			$newFile['ext'] = File::getExt($newFile['name']);
			$newFile['path'] = static::$attachments_path.'/'.$userTo;
			$newFile['fullpath'] = static::$attachments_path.'/'.$userTo.'/'.$newFile['name'];
		} else if (isset($file['fullname']) && isset($file['caption'])){
			$newFile['source'] = Path::clean(JPATH_ROOT . '/media/djmessages/tmp/'.$file['fullname']);
			
			$newFile['size'] = $file['size'];
			$newFile['name'] = static::createFileName($file['caption'] . '.' . File::getExt($file['fullname']), $targetDir);
			$newFile['ext'] = File::getExt($newFile['name']);
			$newFile['path'] = static::$attachments_path.'/'.$userTo;
			$newFile['fullpath'] = static::$attachments_path.'/'.$userTo.'/'.$newFile['name'];
		} else if (is_string($file) && File::exists($file)){
			$isCustomPath= true;
			$pathinfo = pathinfo($file);
			
			$newFile['source'] = $file;
			$newFile['size'] = filesize($file);
			$newFile['name'] = static::createFileName($pathinfo['filename'] . '.' . $pathinfo['extension'], $targetDir);
			$newFile['ext'] = File::getExt($newFile['name']);
			$newFile['path'] = static::$attachments_path.'/'.$userTo;
			$newFile['fullpath'] = static::$attachments_path.'/'.$userTo.'/'.$newFile['name'];
		}
		
		if (!$newFile['source'] || !$newFile['fullpath'] || File::exists($newFile['source']) == false) {
			return false;
		}
		
		
		if (preg_match('/\.(php|shtml|pht|asp)/i', $newFile['name'])) {
			return false;
		}
		
		if (static::isFileInfected($newFile['source'])) {
			return false;
		}
		
		if ($isUploaded) {
			if (File::upload($newFile['source'], Path::clean(JPATH_ROOT.'/'.$newFile['fullpath'])) == false) {
				return false;
			}
		} else if ($isCustomPath) {
			if (File::copy($newFile['source'], Path::clean(JPATH_ROOT.'/'.$newFile['fullpath'])) == false) {
				return false;
			}
		} else {
			if (File::move($newFile['source'], Path::clean(JPATH_ROOT.'/'.$newFile['fullpath'])) == false) {
				return false;
			}
		}
		
		unset($newFile['source']);
		return $newFile;
	}
	
	public static function getFiles($message) {
		$fileInfo = null;
		if (is_object($message) && isset($message->attachments)) {
			$fileInfo = $message->attachments;
		} else if (is_array($message) && isset($message['attachments'])) {
			$fileInfo = $message['attachments'];
		}
		
		if (empty($fileInfo)) {
			return false;
		}
		
		return (is_string($fileInfo)) ? json_decode((string)$fileInfo, true) : $fileInfo;
	}
	
	public static function getFile($message, $name) {
		$attachments = static::getFiles($message);
		if (!$attachments) {
			return false;
		}
		
		foreach($attachments as $file) {
			if (strcmp($name, $file['name']) === 0) {
				return static::getFileByPath(Path::clean(JPATH_ROOT.'/'.$file['fullpath']));
			}
		}
		
		return false;
	}
	
	public static function createFileName($filename, $path) {
		$lang = Factory::getApplication()->getLanguage();
		
		$hash = md5($filename);
		$namepart = File::stripExt($filename);
		$extpart = File::getExt($filename);
		
		$namepart = $lang->transliterate($namepart);
		$namepart = strtolower((string)$namepart);
		$namepart = File::makeSafe($namepart);
		$namepart = str_replace(' ', '_', $namepart);
		
		if ($namepart == '') {
			$namepart = $hash;
		}
		
		$filename = $namepart.'.'.$extpart;
		
		if (File::exists($path.'/'.$filename)) {
			if (is_numeric(File::getExt($namepart)) && count(explode(".", $namepart))>1) {
				$namepart = File::stripExt($namepart);
			}
			$iterator = 1;
			$newname = $namepart.'.'.$iterator.'.'.$extpart;
			while (File::exists($path.'/'.$newname)) {
				$iterator++;
				$newname = $namepart.'.'.$iterator.'.'.$extpart;
			}
			$filename = $newname;
		}
		
		return $filename;
	}
	
	protected static function isFileInfected($filePath) {
		$infected = 0;
		$fhandler = fopen($filePath, "r");
		while (!feof($fhandler))
		{
			// Get the current line that the file is reading
			$fline = fgets($fhandler) ;
			if(preg_match('/eval(\s)*\(/i', $fline)) {
				$infected++;
				break;
			} else if(stristr($fline, "base64")) {
				$infected++;
				break;
			} else if(stristr($fline, "<?php")) {
				$infected++;
				break;
			}
		}
		fclose($fhandler);
		
		return (bool)($infected > 0);
	}
	
	protected static function getFileByPath($filename, $mime = null) {
		
		if (!File::exists($filename)) {
			return false;
		}
		
		$document = Factory::getDocument();
		$filesize = filesize($filename);
		/*if ($filesize === 0) {
		 return false;
		 }*/
		$parts = pathinfo($filename);
		$ext = strtolower((string)$parts["extension"]);
		//ob_start();
		
		// Required for some browsers
		if(ini_get('zlib.output_compression'))
			ini_set('zlib.output_compression', 'Off');
			
			// Determine Content Type
			$ctype = "application/force-download";
			if ($mime) {
				$ctype = $mime;
			}
			else if (function_exists('mime_content_type')) {
				$ctype = mime_content_type($filename);
			} else {
				switch ($ext) {
					case "pdf": $ctype="application/pdf"; break;
					case "exe": $ctype="application/octet-stream"; break;
					case "zip": $ctype="application/zip"; break;
					case "doc": $ctype="application/msword"; break;
					case "xls": $ctype="application/vnd.ms-excel"; break;
					case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
					case "gif": $ctype="image/gif"; break;
					case "png": $ctype="image/png"; break;
					case "jpeg":
					case "jpg": $ctype="image/jpg"; break;
					case "txt": $ctype="text/plain"; break;
					case "csv": $ctype="text/csv"; break;
					case "apk": $ctype="application/vnd.android.package-archive"; break;
					
					default: $ctype="application/force-download";
				}
			}
			
			if (!count(array_diff(ob_list_handlers(), array('default output handler'))) || ob_get_length()) {
				while(@ob_end_clean());
			}
			
			$document->setMimeEncoding($ctype);
			
			$attachment_name = $parts["basename"];
			
			header("Pragma: public"); // required
			header("Expires: 0");
			header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
			header("Cache-Control: private",false); // required for certain browsers
			header("Content-Type: ".$ctype);
			header("Content-Disposition: filename=\"".$attachment_name."\";" );
			//header("Content-Disposition: attachment; filename=\"".$parts["basename"]."\";" );
			header("Content-Transfer-Encoding: binary");
			header("Content-Length: ".$filesize);
			
			return static::readFileChunked($filename);
	}
	
	protected static function readFileChunked($filename, $retbytes = true) {
		$chunksize = 1024*1024;
		$buffer = '';
		$cnt = 0;
		$handle = fopen($filename, 'rb');
		if ($handle === false) {
			return false;
		}
		while (!feof($handle)) {
			$buffer = fread($handle, $chunksize);
			echo $buffer;
			@ob_flush();
			@flush();
			if ($retbytes) {
				$cnt += strlen($buffer);
			}
		}
		$status = fclose($handle);
		if ($retbytes && $status) {
			return $cnt;
		}
		return $status;
	}
	
	public static function upload() {
		
		$app = Factory::getApplication();
		$config = Factory::getConfig();
		
		$params = ComponentHelper::getParams( 'com_djmessages' );
		
		$whitelist = explode(',', $params->get('allowed_attachment_types', 'jpg,png,bmp,gif,pdf,tif,tiff,txt,csv,doc,docx,xls,xlsx,xlt,pps,ppt,pptx,ods,odp,odt,rar,zip,tar,bz2,gz2,7z'));
		
		foreach($whitelist as $key => $extension) {
			if (!in_array(trim((string)$extension), static::$blacklist)) {
				$whitelist[$key] = strtolower(trim((string)$extension));
			}
		}
		
		// HTTP headers for no cache etc
		header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
		header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
		header("Cache-Control: no-store, no-cache, must-revalidate");
		header("Cache-Control: post-check=0, pre-check=0", false);
		header("Pragma: no-cache");
		
		// Settings
		$targetDir = JPATH_ROOT . DIRECTORY_SEPARATOR . 'media' . DIRECTORY_SEPARATOR . 'djmessages' . DIRECTORY_SEPARATOR . 'tmp';
		//$targetDir = 'uploads';
		
		$cleanupTargetDir = true; // Remove old files
		$maxFileAge = 12 * 3600; // Temp file age in seconds
		
		// 5 minutes execution time
		@set_time_limit(5 * 60);
		
		// Uncomment this one to fake upload time
		// usleep(5000);
		
		// Get parameters
		$chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
		$chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 0;
		$fileName = isset($_REQUEST["name"]) ? $_REQUEST["name"] : '';
		
		// Clean the fileName for security reasons
		$fileName = preg_replace('/[^\w\._]+/', '_', $fileName);
		
		// Make sure the fileName is unique but only if chunking is disabled
		if ($chunks < 2 && file_exists($targetDir . DIRECTORY_SEPARATOR . $fileName)) {
			$ext = strrpos($fileName, '.');
			$fileName_a = substr($fileName, 0, $ext);
			$fileName_b = substr($fileName, $ext);
			
			$count = 1;
			while (file_exists($targetDir . DIRECTORY_SEPARATOR . $fileName_a . '_' . $count . $fileName_b))
				$count++;
				
				$fileName = $fileName_a . '_' . $count . $fileName_b;
		}
		
		$filePath = $targetDir . DIRECTORY_SEPARATOR . $fileName;
		
		if (Folder::exists($targetDir)) {
			Folder::create($targetDir);
		}
		
		// Create target dir
		if (!file_exists($targetDir))
			@mkdir($targetDir);
			
			// Remove old temp files
			if ($cleanupTargetDir) {
				if (is_dir($targetDir) && ($dir = opendir($targetDir))) {
					while (($file = readdir($dir)) !== false) {
						$tmpfilePath = $targetDir . DIRECTORY_SEPARATOR . $file;
						
						// Remove temp file if it is older than the max age and is not the current file
						if (filemtime($tmpfilePath) < time() - $maxFileAge && $tmpfilePath != "{$filePath}.part") {
							@unlink($tmpfilePath);
						}
					}
					closedir($dir);
				} else {
					jexit('{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"}');
				}
			}
			
			// Look for the content type header
			if (isset($_SERVER["HTTP_CONTENT_TYPE"]))
				$contentType = $_SERVER["HTTP_CONTENT_TYPE"];
				
				if (isset($_SERVER["CONTENT_TYPE"]))
					$contentType = $_SERVER["CONTENT_TYPE"];
					
					// Handle non multipart uploads older WebKit versions didn't support multipart in HTML5
					if (strpos($contentType, "multipart") !== false) {
						if (isset($_FILES['file']['tmp_name']) && is_uploaded_file($_FILES['file']['tmp_name'])) {
							// Open temp file
							$out = @fopen("{$filePath}.part", $chunk == 0 ? "wb" : "ab");
							if ($out) {
								// Read binary input stream and append it to temp file
								$in = @fopen($_FILES['file']['tmp_name'], "rb");
								
								if ($in) {
									while ($buff = fread($in, 4096))
										fwrite($out, $buff);
								} else
									jexit('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
									@fclose($in);
									@fclose($out);
									@unlink($_FILES['file']['tmp_name']);
							} else
								jexit('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
						} else
							jexit('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}');
					} else {
						// Open temp file
						$out = @fopen("{$filePath}.part", $chunk == 0 ? "wb" : "ab");
						if ($out) {
							// Read binary input stream and append it to temp file
							$in = @fopen("php://input", "rb");
							
							if ($in) {
								while ($buff = fread($in, 4096))
									fwrite($out, $buff);
							} else
								jexit('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
								
								@fclose($in);
								@fclose($out);
						} else
							jexit('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
					}
					
					// Check if file has been uploaded
					if (!$chunks || $chunk == $chunks - 1) {
						// Strip the temp .part suffix off
						rename("{$filePath}.part", $filePath);
						
						$arr = explode(".", $filePath);
						$ext = strtolower(end($arr));
						
						if (!in_array($ext, $whitelist) || preg_match('/\.(php|shtml|pht|asp)/i', $filePath)) {
							@unlink($filePath);
							jexit('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Wrong file format."}, "id" : "id"}');
						}
						
						if(stristr($filePath, '.jpg') || stristr($filePath, '.png') || stristr($filePath, '.gif') || stristr($filePath, '.jpeg')){
							$imgInfo = getimagesize($filePath);
							if(!isset($imgInfo[2])) { // not an image
								@unlink($filePath);
								jexit('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "File is not an image."}, "id" : "id"}');
							}
						}
						
						$infected = 0;
						$fhandler = fopen($filePath, "r");
						while (!feof($fhandler))
						{
							// Get the current line that the file is reading
							$fline = fgets($fhandler) ;
							if(preg_match('/eval(\s)*\(/i', $fline)) {
								$infected++;
								break;
							} else if(stristr($fline, "base64")) {
								$infected++;
								break;
							} else if(stristr($fline, "<?php")) {
								$infected++;
								break;
							} /*else if(stristr($fline, "<?")) {
							$infected++;
							break;
							}*/
						}
						fclose($fhandler);
						
						if($infected){
							@unlink($filePath);
							jexit('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "File is not accepted."}, "id" : "id"}');
						}
					}
					
					jexit('{"jsonrpc" : "2.0", "result" : null, "id" : "id"}');
					
	}
}

Anon7 - 2022
AnonSec Team