1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use std::net::IpAddr;
use std::str::FromStr;
use rpki::uri;
pub trait UriExt {
fn get_authority(&self) -> &str;
fn has_dubious_authority(&self) -> bool {
let authority = self.get_authority();
if authority == "localhost" {
return true;
}
if authority.contains(':') {
return true
}
if IpAddr::from_str(authority).is_ok() {
return true
}
false
}
}
impl UriExt for uri::Https {
fn get_authority(&self) -> &str {
self.authority()
}
}
impl UriExt for uri::Rsync {
fn get_authority(&self) -> &str {
self.authority()
}
}
impl UriExt for uri::RsyncModule {
fn get_authority(&self) -> &str {
self.authority()
}
}