UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_bf4bbf91d0ed
/
app
/
Services
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
GitVersionSevice.php
<?php namespace EstudioLMS\Services; class GitVersionSevice { private $version; /** * GitVersionSevice constructor. */ public function __construct() { try { exec('git -C ' . base_path() . ' describe --always', $version_mini_hash); exec('git -C ' . base_path() . ' log -1', $line); $this->version['short'] = $version_mini_hash[0]; $this->version['long'] = $version_mini_hash[0]; } catch (\Exception $e) { $this->version['short'] = '0.0.1'; $this->version['long'] = '0.0.1'; } } public function short() { return $this->version['short']; } public function long() { return $this->version['long']; } public function show() { $version_number = shell_exec('git -C ' . base_path() . ' rev-list HEAD | wc -l'); return $version_number[0]; } }
Copyright © 2026 - UnknownSec