HEX
Server: Apache/2.4.54 (Unix) OpenSSL/1.0.2k-fips
System: Linux f17.eelserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
User: zulfiqar (1155)
PHP: 8.2.0
Disabled: mail, exec, system, popen, proc_open, shell_exec, passthru, show_source
Upload Files
File: /home/zulfiqar/public_html/wp-content/plugins/gallery-videos/index.php
<?php
	/*
		Plugin name: Gallery
		Plugin URI: https://total-soft.com/wp-video-gallery/
		Description: Gallery is a user-friendly plugin to display user or hashtag-based gallery feeds as a responsive customizable gallery.
		Version: 2.4.9
		Author: Video Gallery by Total-Soft
		Author URI: https://total-soft.com/
		License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
	*/
	if ( ! defined( 'WPINC' ) ) {
		die;
	}
	define( 'TSVG_VERSION', '2.4.9' );
	define( 'TSVG_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
	define( 'TSVG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
	define( 'TSVG_PLUGIN_DIR', plugin_dir_url( __FILE__ ) );
	function tsvg_acitvate_plugin() {
		require_once plugin_dir_path( __FILE__ ) . 'includes/class-tsvg-activator.php';
		TS_Video_Gallery_Activate::activate();
	}
	function tsvg_deacitvate_plugin() {
		require_once plugin_dir_path( __FILE__ ) . 'includes/class-tsvg-deactivator.php';
		TS_Video_Gallery_Deactivate::deactivate();
	}
	register_activation_hook( __FILE__, 'tsvg_acitvate_plugin' );
	register_deactivation_hook( __FILE__, 'tsvg_deacitvate_plugin' );
	require plugin_dir_path( __FILE__ ) . 'includes/class-tsvg-gallery.php';
	function tsvg_run_plugin() {
		$tsvg_plugin = new TS_Video_Gallery();
		$tsvg_plugin->run();
	}
	tsvg_run_plugin();
?>