ソースを参照

Add files via upload

Capitan Cloud 2 年 前
コミット
e565ca602e
1 ファイル変更5 行追加3 行削除
  1. 5 3
      Private/scripts_ajax/putxml.php

+ 5 - 3
Private/scripts_ajax/putxml.php

@@ -34,11 +34,13 @@
 //
 // PARAMETER VALIDATION
 //
-$filename = filter_input(INPUT_POST, "f");
-$filename2 = $filename . ".xml";
+$filename = filter_input(INPUT_POST, "f")??"";
+$filename = strip_tags($filename);
 
-$xmlStr = filter_input(INPUT_POST, "xml");
+$filename2 = $filename . ".xml";
 
+$xmlStr = filter_input(INPUT_POST, "xml")??"";
+$xmlStr = strip_tags($xmlStr);
 
 // if the snip data folder doesn'exist I create it
 // with all the subfolders..