Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
578d62ae
Commit
578d62ae
authored
Feb 08, 2012
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 722161: Clickjacking is possible in "View All" with HTML attachments
r=dkl a=LpSolit
parent
b4a60112
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
attachment.css
skins/standard/attachment.css
+5
-0
show-multiple.html.tmpl
template/en/default/attachment/show-multiple.html.tmpl
+13
-1
No files found.
skins/standard/attachment.css
View file @
578d62ae
...
@@ -210,6 +210,11 @@ div#update_container {
...
@@ -210,6 +210,11 @@ div#update_container {
margin-left
:
2%
;
margin-left
:
2%
;
}
}
.viewall_frame
{
width
:
75%
;
height
:
350px
;
}
.details
span
.bz_private
{
.details
span
.bz_private
{
border-left
:
1px
solid
darkred
;
border-left
:
1px
solid
darkred
;
padding-left
:
0.5em
;
padding-left
:
0.5em
;
...
...
template/en/default/attachment/show-multiple.html.tmpl
View file @
578d62ae
...
@@ -75,10 +75,22 @@
...
@@ -75,10 +75,22 @@
</table>
</table>
[% IF a.is_viewable %]
[% IF a.is_viewable %]
<iframe src="attachment.cgi?id=[% a.id %]" width="75%" height="350">
[% IF a.contenttype == "text/html" %]
[%# For security reasons (clickjacking, embedded scripts), we never
# render HTML pages from here. The source code is displayed instead. %]
[% INCLUDE global/textarea.html.tmpl
minrows = 10
cols = 80
defaultcontent = a.data
readonly = 'readonly'
classes = 'viewall_frame'
%]
[% ELSE %]
<iframe src="attachment.cgi?id=[% a.id %]" class="viewall_frame">
<b>You cannot view the attachment on this page because your browser does not support IFRAMEs.
<b>You cannot view the attachment on this page because your browser does not support IFRAMEs.
<a href="attachment.cgi?id=[% a.id %]">View the attachment on a separate page</a>.</b>
<a href="attachment.cgi?id=[% a.id %]">View the attachment on a separate page</a>.</b>
</iframe>
</iframe>
[% END %]
[% ELSE %]
[% ELSE %]
<p><b>
<p><b>
Attachment cannot be viewed because its MIME type is not text/*, image/*, or application/vnd.mozilla.*.
Attachment cannot be viewed because its MIME type is not text/*, image/*, or application/vnd.mozilla.*.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment