Skip to content

Commit

Permalink
Stable Release - 1.5.10.1584
Browse files Browse the repository at this point in the history
* Setup/fix authentication issues

* Should commonize auth checks

* Set static mountd port for NFS

* Should fix issue of isloaded

* Should push the change derp

* Should refine out nfs building

* Should ensure ymls are updated appropriately here

* Should fix upload png/jpg issue

---------

Co-authored-by: JJ Fullmer <ldscellist@Gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Tom Elliott <tommygunsster@gmail.com>
  • Loading branch information
3 people authored Aug 16, 2024
1 parent 3e84527 commit fe8a36d
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 38 deletions.
23 changes: 23 additions & 0 deletions lib/common/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1355,6 +1355,29 @@ configureFOGService() {
startInitScript
}
configureNFS() {
dots "Setting up NFS configuration file"
if [[ -f "/etc/nfs.conf" ]]; then
# Fix all set port=20048 back to default values
sed -i '/^port=20048/ {s/^port=20048/# port=0/}' /etc/nfs.conf >>$error_log 2>&1
fi
# set port in nfs.conf.d directory
if [[ -f "/etc/nfs.conf" && ! -d "/etc/nfs.conf.d/" ]]; then
mkdir /etc/nfs.conf.d
elif [[ -f "/usr/etc/nfs.conf" && ! -d "/usr/etc/nfs.conf.d/" ]]; then
mkdir /usr/etc/nfs.conf.d
fi
if [[ -f "/etc/nfs.conf" && ! -f "/etc/nfs.conf.d/fog-nfs.conf" ]]; then
cat > /etc/nfs.conf.d/fog-nfs.conf <<EOF
[mountd]
port=20048
EOF
elif [[ -f "/usr/etc/nfs.conf" && ! -f "/usr/etc/nfs.conf.d/fog-nfs.conf" ]]; then
cat > /usr/etc/nfs.conf.d/fog-nfs.conf <<EOF
[mountd]
port=20048
EOF
fi
errorStat $?
dots "Setting up exports file"
if [[ $blexports != 1 ]]; then
echo "Skipped"
Expand Down
21 changes: 19 additions & 2 deletions packages/web/lib/fog/fogbase.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -969,9 +969,8 @@ protected static function arrayFind(
protected function isLoaded($key)
{
$key = $this->key($key);
$result = isset($this->isLoaded[$key]) ? $this->isLoaded[$key] : 0;
$result = isset($this->isLoaded[$key]) ? true : false;
$this->isLoaded[$key] = true;
++$this->isLoaded[$key];

return $result ? $result : false;
}
Expand Down Expand Up @@ -2578,4 +2577,22 @@ public static function is_array_of_assoc_arrays($arr) {
}
return true;
}
/**
* Is Authorized to perform action simplified
*
* @param $return_bool Defaults to false, but can return bool
*
* @return void|bool
*/
public static function is_authorized($return_bool = false)
{ $authorized = self::$FOGUser->isValid() ||
strtolower(($_SERVER['HTTP_X_REQUESTED_WITH'] ?? '')) == 'xmlhttprequest';
if ($return_bool) {
return $authorized;
}
if (!$authorized) {
echo _('Unauthorized');
exit;
}
}
}
2 changes: 1 addition & 1 deletion packages/web/lib/fog/system.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static function _versionCompare()
public function __construct()
{
self::_versionCompare();
define('FOG_VERSION', '1.5.10.1566');
define('FOG_VERSION', '1.5.10.1584');
define('FOG_SCHEMA', 271);
define('FOG_BCACHE_VER', 141);
define('FOG_CLIENT_VERSION', '0.13.0');
Expand Down
8 changes: 1 addition & 7 deletions packages/web/lib/pages/fogconfigurationpage.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3061,16 +3061,10 @@ public function settingsPost()
'jpeg',
'png',
];
$extensionCheck = strtolower(pathinfo($src, PATHINFO_EXTENSION));
if (!in_array($extensionCheck, $validExtensions)) {
throw new Exception(
_('Upload file extension must be, jpg, jpeg, or png')
);
}
$extensionCheck = strtolower(pathinfo($set, PATHINFO_EXTENSION));
if (!in_array($extensionCheck, $validExtensions)) {
throw new Exception(
_('Created file extension must be, jpg, jpeg, or png')
_('Upload file extension must be, jpg, jpeg, or png')
);
}
if ($width != 650) {
Expand Down
8 changes: 1 addition & 7 deletions packages/web/management/export.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,7 @@
* @link https://fogproject.org
*/
require '../commons/base.inc.php';
$unauthorized = !(isset($currentUser) && $currentUser->isValid()) || empty($_SERVER['HTTP_X_REQUESTED_WITH'])
|| strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest';

if ($unauthorized) {
echo _('Unauthorized');
exit;
}
FOGCore::is_authorized();

$report = unserialize($_SESSION['foglastreport']);
if (!($report instanceof ReportMaker)) {
Expand Down
8 changes: 1 addition & 7 deletions packages/web/service/getversion.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,7 @@
} elseif (isset($_REQUEST['url'])) {

// Prevent an unauthenticated user from making arbitrary requests.
$unauthorized = !$currentUser->isValid() || empty($_SERVER['HTTP_X_REQUESTED_WITH'])
|| strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest';

if ($unauthorized) {
echo _('Unauthorized');
exit;
}
FOGCore::is_authorized();

$url = $_REQUEST['url'];
$res = $FOGURLRequests
Expand Down
8 changes: 1 addition & 7 deletions packages/web/status/getfiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,7 @@
require '../commons/base.inc.php';

// Prevent file enumeration by an unauthenticated user
$unauthorized = !(isset($currentUser) && $currentUser->isValid()) || empty($_SERVER['HTTP_X_REQUESTED_WITH'])
|| strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest';

if ($unauthorized) {
echo _('Unauthorized');
exit;
}
FOGCore::is_authorized();

if (!is_string($_GET['path'])) {
echo json_encode(
Expand Down
8 changes: 1 addition & 7 deletions packages/web/status/kernelvers.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@
if (isset($_POST['url'])) {

// Prevent an unauthenticated user from making arbitrary requests.
$unauthorized = !$currentUser->isValid() || empty($_SERVER['HTTP_X_REQUESTED_WITH'])
|| strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest';

if ($unauthorized) {
echo _('Unauthorized');
exit;
}
FOGCore::is_authorized();

$res = $FOGURLRequests
->process(filter_input(INPUT_POST, 'url'));
Expand Down

0 comments on commit fe8a36d

Please sign in to comment.