Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Icecast-Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Icecast-Server
Commits
6e2773a4
Commit
6e2773a4
authored
9 years ago
by
Philipp Schafft
Browse files
Options
Downloads
Plain Diff
Merged update for file extension check
Closes:
#2248
parents
805084cc
c8f565b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/util.c
+15
-27
15 additions, 27 deletions
src/util.c
src/util.h
+3
-2
3 additions, 2 deletions
src/util.h
with
18 additions
and
29 deletions
src/util.c
+
15
−
27
View file @
6e2773a4
...
...
@@ -197,35 +197,23 @@ char *util_get_extension(const char *path) {
}
int
util_check_valid_extension
(
const
char
*
uri
)
{
int
ret
=
0
;
char
*
p2
;
if
(
uri
)
{
p2
=
strrchr
(
uri
,
'.'
);
if
(
p2
)
{
p2
++
;
if
(
strncmp
(
p2
,
"xsl"
,
strlen
(
"xsl"
))
==
0
)
{
/* Build the full path for the request, concatenating the webroot from the config.
** Here would be also a good time to prevent accesses like '../../../../etc/passwd' or somesuch.
*/
ret
=
XSLT_CONTENT
;
}
if
(
strncmp
(
p2
,
"htm"
,
strlen
(
"htm"
))
==
0
)
{
/* Build the full path for the request, concatenating the webroot from the config.
** Here would be also a good time to prevent accesses like '../../../../etc/passwd' or somesuch.
*/
ret
=
HTML_CONTENT
;
}
if
(
strncmp
(
p2
,
"html"
,
strlen
(
"html"
))
==
0
)
{
/* Build the full path for the request, concatenating the webroot from the config.
** Here would be also a good time to prevent accesses like '../../../../etc/passwd' or somesuch.
*/
ret
=
HTML_CONTENT
;
}
const
char
*
p2
;
}
if
(
!
uri
)
return
UNKNOWN_CONTENT
;
p2
=
strrchr
(
uri
,
'.'
);
if
(
!
p2
)
return
UNKNOWN_CONTENT
;
p2
++
;
if
(
strcmp
(
p2
,
"xsl"
)
==
0
||
strcmp
(
p2
,
"xslt"
)
==
0
)
{
return
XSLT_CONTENT
;
}
else
if
(
strcmp
(
p2
,
"htm"
)
==
0
||
strcmp
(
p2
,
"html"
)
==
0
)
{
return
HTML_CONTENT
;
}
return
ret
;
return
UNKNOWN_CONTENT
;
}
static
int
hex
(
char
c
)
...
...
This diff is collapsed.
Click to expand it.
src/util.h
+
3
−
2
View file @
6e2773a4
...
...
@@ -17,8 +17,9 @@
/* for FILE* */
#include
<stdio.h>
#define XSLT_CONTENT 1
#define HTML_CONTENT 2
#define UNKNOWN_CONTENT 0
#define XSLT_CONTENT 1
#define HTML_CONTENT 2
#define READ_ENTIRE_HEADER 1
#define READ_LINE 0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment