Skip to content

Commit

Permalink
Merge pull request #150 from hluu/master
Browse files Browse the repository at this point in the history
Prevent XSS in the data viewer and in error message #149
  • Loading branch information
hluu committed Oct 20, 2014
2 parents 0f6b8f5 + 5ec6440 commit abd2c66
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file not shown.
Binary file removed extlib/azkaban-execserver-2.6.1.jar
Binary file not shown.
Binary file added extlib/azkaban-execserver-2.6.2.jar
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
#foreach($line in $file.get("content"))
<tr>
#foreach($item in $line)
<td>$item</td>
<td>$esc.html($item)</td>
#end
</tr>
#end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
<br/>
#end

$errorMsg
$esc.html($errorMsg)
#end
</div>
#else
#if($error_message != "null")
<div class="box-error-message">$error_message</div>
<div class="box-error-message">$esc.html($error_message)</div>
#elseif($success_message != "null")
<div class="box-success-message">$success_message</div>
#end
Expand Down

0 comments on commit abd2c66

Please sign in to comment.