Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
7e8d9789
Commit
7e8d9789
authored
Oct 05, 2018
by
Carlos Martín Nieto
Committed by
Patrick Steinhardt
Oct 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
submodule: add failing test for option-injection protection in url and path
parent
74937431
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
0 deletions
+80
-0
tests/submodule/inject_option.c
+80
-0
No files found.
tests/submodule/inject_option.c
0 → 100644
View file @
7e8d9789
#include "clar_libgit2.h"
#include "posix.h"
#include "path.h"
#include "submodule_helpers.h"
#include "fileops.h"
#include "repository.h"
static
git_repository
*
g_repo
=
NULL
;
void
test_submodule_inject_option__initialize
(
void
)
{
g_repo
=
setup_fixture_submodule_simple
();
}
void
test_submodule_inject_option__cleanup
(
void
)
{
cl_git_sandbox_cleanup
();
}
static
int
find_naughty
(
git_submodule
*
sm
,
const
char
*
name
,
void
*
payload
)
{
int
*
foundit
=
(
int
*
)
payload
;
GIT_UNUSED
(
sm
);
if
(
!
git__strcmp
(
"naughty"
,
name
))
*
foundit
=
true
;
return
0
;
}
void
test_submodule_inject_option__url
(
void
)
{
int
foundit
;
git_submodule
*
sm
;
git_buf
buf
=
GIT_BUF_INIT
;
cl_git_pass
(
git_buf_joinpath
(
&
buf
,
git_repository_workdir
(
g_repo
),
".gitmodules"
));
cl_git_rewritefile
(
buf
.
ptr
,
"[submodule
\"
naughty
\"
]
\n
"
" path = testrepo
\n
"
" url = -u./payload
\n
"
);
git_buf_free
(
&
buf
);
/* We do want to find it, but with the appropriate field empty */
foundit
=
0
;
cl_git_pass
(
git_submodule_foreach
(
g_repo
,
find_naughty
,
&
foundit
));
cl_assert_equal_i
(
1
,
foundit
);
cl_git_pass
(
git_submodule_lookup
(
&
sm
,
g_repo
,
"naughty"
));
cl_assert_equal_s
(
"testrepo"
,
git_submodule_path
(
sm
));
cl_assert_equal_p
(
NULL
,
git_submodule_url
(
sm
));
git_submodule_free
(
sm
);
}
void
test_submodule_inject_option__path
(
void
)
{
int
foundit
;
git_submodule
*
sm
;
git_buf
buf
=
GIT_BUF_INIT
;
cl_git_pass
(
git_buf_joinpath
(
&
buf
,
git_repository_workdir
(
g_repo
),
".gitmodules"
));
cl_git_rewritefile
(
buf
.
ptr
,
"[submodule
\"
naughty
\"
]
\n
"
" path = --something
\n
"
" url = blah.git
\n
"
);
git_buf_free
(
&
buf
);
/* We do want to find it, but with the appropriate field empty */
foundit
=
0
;
cl_git_pass
(
git_submodule_foreach
(
g_repo
,
find_naughty
,
&
foundit
));
cl_assert_equal_i
(
1
,
foundit
);
cl_git_pass
(
git_submodule_lookup
(
&
sm
,
g_repo
,
"naughty"
));
cl_assert_equal_s
(
"naughty"
,
git_submodule_path
(
sm
));
cl_assert_equal_s
(
"blah.git"
,
git_submodule_url
(
sm
));
git_submodule_free
(
sm
);
}
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