diff options
author | Simon Rettberg | 2020-07-30 17:21:29 +0200 |
---|---|---|
committer | Simon Rettberg | 2020-07-31 12:05:13 +0200 |
commit | 4e31f99e098568c5d133125630533dad91d07348 (patch) | |
tree | d6302d3d526a79f64c0b081581679f928f55da54 /modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php | |
parent | [exams] More sanity checks regarding date/time and locations (diff) | |
download | slx-admin-4e31f99e098568c5d133125630533dad91d07348.tar.gz slx-admin-4e31f99e098568c5d133125630533dad91d07348.tar.xz slx-admin-4e31f99e098568c5d133125630533dad91d07348.zip |
[serversetup-bwlp-ipxe/statistics] Sanitize strings from clients
Some string from the clients might not be well suited for utf-8
representation. Add wrapper functions that clean utf-8 strings, or
convert ANSI strings to UTF-8 while removing problematic chars.
Diffstat (limited to 'modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php')
-rw-r--r-- | modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php b/modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php index 1b33a1ac..a6376b0e 100644 --- a/modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php +++ b/modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php @@ -126,10 +126,8 @@ HERE; { if ($this->hasExtension) { $slxConsoleUpdate = '--update'; - $slxPasswordOnly = '--nouser'; } else { $slxConsoleUpdate = ''; - $slxPasswordOnly = ''; } $serverIp = $this->serverIp; @@ -258,19 +256,18 @@ HERE; if ($special === 'localboot') { // Get preferred localboot method, depending on system model // Check if required arguments are given; if not, spit out according script and chain to self - $uuid = Request::any('uuid', false, 'string'); // Get platform - EFI or PCBIOS $manuf = Request::any('manuf', false, 'string'); $product = Request::any('product', false, 'string'); - if ($uuid === false && $manuf === false && $product === false) { + if ($this->uuid === false && $manuf === false && $product === false) { return $this->redirect('special', 'localboot'); } $BOOT_METHODS = Localboot::BOOT_METHODS[$this->platform]; $localboot = false; $model = false; - if ($uuid !== false && Module::get('statistics') !== false) { + if ($this->uuid !== false && Module::get('statistics') !== false) { // If we have the machine table, we rather try to look up the system model from there, using the UUID - $row = Database::queryFirst('SELECT systemmodel FROM machine WHERE machineuuid = :uuid', ['uuid' => $uuid]); + $row = Database::queryFirst('SELECT systemmodel FROM machine WHERE machineuuid = :uuid', ['uuid' => $this->uuid]); if ($row !== false && !empty($row['systemmodel'])) { $model = $row['systemmodel']; } @@ -284,6 +281,7 @@ HERE; if (!empty($manuf)) { $model .= " ($manuf)"; } + $model = Util::ansiToUtf8($model); } } // Query |