Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add server config option for always rendering html code #683

Closed
2 of 6 tasks
pgaskin opened this issue Jan 16, 2017 · 25 comments
Closed
2 of 6 tasks

Add server config option for always rendering html code #683

pgaskin opened this issue Jan 16, 2017 · 25 comments
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail issue/stale reviewed/wontfix The problem described in this issue/fixed in this pull request is not a problem we will fix type/feature Completely new functionality. Can only be merged if feature freeze is not active.

Comments

@pgaskin
Copy link
Contributor

pgaskin commented Jan 16, 2017

  • Gitea version (or commit ref): 1.0.1
  • Git version: 2.9.3
  • Operating system: Alpine Linux
  • Database (use [x]):
    • PostgreSQL
    • MySQL
    • SQLite
  • Can you reproduce the bug at https://try.gitea.io:
    • Yes (provide example URL)
    • No
    • Not relevant

Description

I have a few repos of HTML code, in a repository on a server which only me and people I trust access. I would like there to be a server configuration option to always render html in repos. I am willing to add this feature myself.

--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/41023445-add-server-config-option-for-always-rendering-html-code?utm_campaign=plugin&utm_content=tracker%2F47456670&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F47456670&utm_medium=issues&utm_source=github).
@tboerger
Copy link
Member

Are you talking about a feature like #302?

@tboerger tboerger added type/feature Completely new functionality. Can only be merged if feature freeze is not active. issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail labels Jan 16, 2017
@tboerger tboerger added this to the 1.x.x milestone Jan 16, 2017
@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 16, 2017

Not exactly

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 16, 2017

More like allowing rendering of files in the repo.

@tboerger
Copy link
Member

Can you explain the use case for that? I don't get it yet ;)

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 16, 2017

I have repository with HTML templates. I would like to preview them easily without them being in a separate location. I trust all users with write access to the server, so I want to simplify things by allowing rendering it right out of the repository.

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 16, 2017

Something like changing the ServeData function in routers/repo/download.go to this:

func ServeData(ctx *context.Context, name string, reader io.Reader) error {
	buf := make([]byte, 1024)
	n, _ := reader.Read(buf)
	if n > 0 {
		buf = buf[:n]
	}

	ctx.Resp.Header().Set("Cache-Control", "public,max-age=86400")

	// Google Chrome dislike commas in filenames, so let's change it to a space
	name = strings.Replace(name, ",", " ", -1)

        if setting.Repository.AlwaysRenderRawFiles {
		ctx.Resp.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, name))
	} else if base.IsTextFile(buf) || ctx.QueryBool("render") {
		ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
	} else if base.IsImageFile(buf) || base.IsPDFFile(buf) {
		ctx.Resp.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, name))
	} else {
		ctx.Resp.Header().Set("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, name))
	}

	ctx.Resp.Write(buf)
	_, err := io.Copy(ctx.Resp, reader)
	return err
}

The setting AlwaysRenderRawFiles would have to be added to setting.go with a default of false (for security)

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 16, 2017

I will open a PR

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 17, 2017

I have opened the PR, and it is ready. I have tested the feature myself too.

@lunny lunny modified the milestones: 1.1.0, 1.x.x Jan 17, 2017
@tboerger
Copy link
Member

tboerger commented Jan 17, 2017

What do others think about that? I don't really like the idea to render every document/file.

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 17, 2017

@tboerger I think that even though it is a security risk in most cases, there may be some cases, including my own, where it is needed. It really is not much of a security risk of there is only a few trusted people who are able to write to our create repositories.

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 17, 2017

@tboerger Also, in the issue about XSS with gogs' current implementation which is a ?render parameter, the author of the issue suggests for the option to be moved to the config file gogs/gogs#3608

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 17, 2017

One example of people needing an option like this: gogs/gogs#2593

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 17, 2017

Another few examples: gogs/gogs#2283 (comment) and gogs/gogs#2283 (comment)

The last one I put cannot be solved using something like GitHub pages because it involves viewing rendered raw history of a file

@tboerger
Copy link
Member

IMHO this is something to solve for a separate tool. Many users don't get know how important this option can get

@pgaskin
Copy link
Contributor Author

pgaskin commented Jan 18, 2017 via email

@bkcsoft
Copy link
Member

bkcsoft commented Jan 20, 2017

I really don't like undocumented options... Someone will see it in the code and turn it on without knowing the consequences of that... I'm with @tboerger on this one, Gitea is not made to work like a CDN, there are many other projects out there that fit the purpose better. Caddy can even be setup to monitor your git-repo and automagically serve from that.

@bkcsoft
Copy link
Member

bkcsoft commented Jan 20, 2017

If I am to be completely honest, I vote to remove the ?render=1 option as well, since it is a huge security-risk... or at least make a config-flag to disable it (though for backwards-compat I might consider having it enabled by default 😒 )

@lunny lunny modified the milestones: 1.x.x, 1.1.0 Feb 15, 2017
@lunny
Copy link
Member

lunny commented Feb 15, 2017

same with #685

@pgaskin
Copy link
Contributor Author

pgaskin commented Mar 2, 2017

Doesn't the csrf request token prevent this from being a security risk? If we make it not set the csrf cookie when sending the page, then wouldn't this be perfectly fine?

@strk
Copy link
Member

strk commented Mar 12, 2017

How about clearly describing the security risk, in the current documentation ?
Because I understand the risk you see is already there.

@pgaskin
Copy link
Contributor Author

pgaskin commented Mar 12, 2017

@strk Yes, and also, I use this patch in my server, and many of my friends do as well. There have not been any problems so far. How should it be described?

@strk
Copy link
Member

strk commented Mar 12, 2017

@geek1011 as @bkcsoft did on IRC:

18:49 < BKC> okey, here it goes. It is _extremly_ simple to make a HTML-file 
with a small script in that will take your CSRF-token and session-key, send 
those to a server that changes your password and stores that "for later use"

@lunny
Copy link
Member

lunny commented Mar 13, 2017

But my point is we can genearte files and push the files to servers.
we can push files via local/ssh/ftp/coloud storage/http and etc.
setup a hook running on Gitea itself.

Copy my point from Gitter.

And we can detect the repo's types. Hugo maybe the first type and other formats.

@stale
Copy link

stale bot commented Feb 16, 2019

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you for your contributions.

@stale stale bot added the issue/stale label Feb 16, 2019
@stale
Copy link

stale bot commented Mar 2, 2019

This issue has been automatically closed because of inactivity. You can re-open it if needed.

@stale stale bot closed this as completed Mar 2, 2019
@lunny lunny removed this from the 1.x.x milestone Mar 4, 2019
@lunny lunny added the reviewed/wontfix The problem described in this issue/fixed in this pull request is not a problem we will fix label Mar 4, 2019
@go-gitea go-gitea locked and limited conversation to collaborators Nov 24, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail issue/stale reviewed/wontfix The problem described in this issue/fixed in this pull request is not a problem we will fix type/feature Completely new functionality. Can only be merged if feature freeze is not active.
Projects
None yet
Development

No branches or pull requests

5 participants