Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Fixed XSS in act_filemanager.php #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mod/home/tpls/act_filemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<script type="text/javascript" src="res/jquery/tinymce/4.0b3/plugins/filemanager/js/include.js"></script>
</head>
<body style="padding-top:0px;">
<input type="hidden" id="track" value="<?php echo $_GET['editor']; ?>" />
<input type="hidden" id="track" value="<?php echo htmlspecialchars($_GET['editor']); ?>" />
<input type="hidden" id="insert_folder_name" value="<?php echo _t('Insert folder name:'); ?>" />

<!----- uploader div start ------->
Expand Down