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
16bffd1c
Commit
16bffd1c
authored
Nov 04, 2013
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unescape url-encoded usernames and passwords
parent
c227c173
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
4 deletions
+40
-4
src/netops.c
+26
-2
tests-clar/network/urlparse.c
+14
-2
No files found.
src/netops.c
View file @
16bffd1c
...
...
@@ -658,6 +658,29 @@ void gitno_connection_data_free_ptrs(gitno_connection_data *d)
git__free
(
d
->
pass
);
d
->
pass
=
NULL
;
}
static
char
unescape_hex
(
char
*
x
)
{
char
digit
;
digit
=
((
x
[
0
]
>=
'A'
)
?
((
x
[
0
]
&
0xdf
)
-
'A'
)
+
10
:
(
x
[
0
]
-
'0'
));
digit
*=
16
;
digit
+=
((
x
[
1
]
>=
'A'
)
?
((
x
[
1
]
&
0xdf
)
-
'A'
)
+
10
:
(
x
[
1
]
-
'0'
));
return
digit
;
}
static
char
*
unescape
(
char
*
str
)
{
int
x
,
y
;
for
(
x
=
y
=
0
;
str
[
x
];
++
x
,
++
y
)
{
if
((
str
[
x
]
=
str
[
y
])
==
'%'
)
{
str
[
x
]
=
unescape_hex
(
str
+
y
+
1
);
y
+=
2
;
}
}
str
[
x
]
=
'\0'
;
return
str
;
}
int
gitno_extract_url_parts
(
char
**
host
,
char
**
port
,
...
...
@@ -699,13 +722,14 @@ int gitno_extract_url_parts(
if
(
u
.
field_data
[
UF_USERINFO
].
len
)
{
const
char
*
colon
=
strchr
(
_userinfo
,
':'
);
if
(
colon
&&
(
colon
-
_userinfo
)
<
u
.
field_data
[
UF_USERINFO
].
len
)
{
*
username
=
git__substrdup
(
_userinfo
,
colon
-
_userinfo
);
*
password
=
git__substrdup
(
colon
+
1
,
u
.
field_data
[
UF_USERINFO
].
len
-
(
colon
+
1
-
_userinfo
));
*
username
=
unescape
(
git__substrdup
(
_userinfo
,
colon
-
_userinfo
)
);
*
password
=
unescape
(
git__substrdup
(
colon
+
1
,
u
.
field_data
[
UF_USERINFO
].
len
-
(
colon
+
1
-
_userinfo
)
));
GITERR_CHECK_ALLOC
(
*
password
);
}
else
{
*
username
=
git__substrdup
(
_userinfo
,
u
.
field_data
[
UF_USERINFO
].
len
);
}
GITERR_CHECK_ALLOC
(
*
username
);
}
return
0
;
...
...
tests-clar/network/urlparse.c
View file @
16bffd1c
...
...
@@ -33,7 +33,7 @@ void test_network_urlparse__trivial(void)
cl_assert_equal_p
(
pass
,
NULL
);
}
void
test_network_urlparse__
weird_url
(
void
)
void
test_network_urlparse__
encoded_password
(
void
)
{
cl_git_pass
(
gitno_extract_url_parts
(
&
host
,
&
port
,
&
path
,
&
user
,
&
pass
,
"https://user:pass%2fis%40bad@hostname.com:1234/"
,
"1"
));
...
...
@@ -41,7 +41,7 @@ void test_network_urlparse__weird_url(void)
cl_assert_equal_s
(
port
,
"1234"
);
cl_assert_equal_s
(
path
,
"/"
);
cl_assert_equal_s
(
user
,
"user"
);
cl_assert_equal_s
(
pass
,
"pass
%2fis%40
bad"
);
cl_assert_equal_s
(
pass
,
"pass
/is@
bad"
);
}
void
test_network_urlparse__user
(
void
)
...
...
@@ -127,6 +127,18 @@ void test_network_urlparse__connection_data_ssl(void)
cl_assert_equal_i
(
conndata
.
use_ssl
,
true
);
}
void
test_network_urlparse__encoded_username_password
(
void
)
{
cl_git_pass
(
gitno_connection_data_from_url
(
&
conndata
,
"https://user%2fname:pass%40word@example.com/foo/bar/baz"
,
"bar/baz"
));
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"443"
);
cl_assert_equal_s
(
conndata
.
path
,
"/foo/"
);
cl_assert_equal_s
(
conndata
.
user
,
"user/name"
);
cl_assert_equal_s
(
conndata
.
pass
,
"pass@word"
);
cl_assert_equal_i
(
conndata
.
use_ssl
,
true
);
}
void
test_network_urlparse__connection_data_cross_host_redirect
(
void
)
{
conndata
.
host
=
git__strdup
(
"bar.com"
);
...
...
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