Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
558738ad
Commit
558738ad
authored
Nov 08, 2013
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
JSON CallBack类型的链接,这类出现在几乎各大Web 2.0网站中。修补这类安全问题很简单,只要在目标网页开头部分强制加一个空格即可,这样BOM头就无效了。
parent
0fb7d4ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
output.go
context/output.go
+1
-1
No files found.
context/output.go
View file @
558738ad
...
...
@@ -158,7 +158,7 @@ func (output *BeegoOutput) Jsonp(data interface{}, hasIndent bool) error {
if
callback
==
""
{
return
errors
.
New
(
`"callback" parameter required`
)
}
callback_content
:=
bytes
.
NewBufferString
(
template
.
JSEscapeString
(
callback
))
callback_content
:=
bytes
.
NewBufferString
(
" "
+
template
.
JSEscapeString
(
callback
))
callback_content
.
WriteString
(
"("
)
callback_content
.
Write
(
content
)
callback_content
.
WriteString
(
");
\r\n
"
)
...
...
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