aboutsummaryrefslogtreecommitdiffstats
path: root/trustcache.1
blob: f5aaf5f8cbfd2dd7338bdbf612d590a5d5d58116 (plain) (blame)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.\"-
.\" Copyright (c) 2022 Cameron Katri.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY CAMERON KATRI AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL CAMERON KATRI OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd June 16, 2022
.Dt TRUSTCACHE 1
.Os
.Sh NAME
.Nm trustcache
.Nd Create and interact with trustcaches
.Sh SYNOPSIS
.Nm
.Cm append
.Op Fl f Ar flags
.Op Fl u Ar uuid | 0
.Ar infile
.Ar
.Nm
.Cm create
.Op Fl u Ar uuid
.Op Fl v Ar version
.Ar outfile
.Ar
.Nm
.Cm info
.Op Fl c
.Op Fl h
.Op Fl e Ar entrynum
.Ar file
.Nm
.Cm remove
.Op Fl k
.Ar file
.Ar hash ...
.Sh DESCRIPTION
The
.Nm
utility is used to get info about and modify Apple trustcaches.
.Pp
The following commands are supported by
.Nm :
.Bl -tag -width create
.It Xo
.Cm append
.Op Fl f Ar flags
.Op Fl u Ar uuid | 0
.Ar infile
.Ar
.Xc
Modify the trustcache at
.Ar infile
to include each signed Mach-O at the specified paths.
If
.Ar file
is both 40 characters and hexadecimal, that hash will be added to the cache.
.Ar uuid
is used to specify a custom uuid to be used.
If it is
.Ar 0 ,
the uuid will be left the same, otherwise, it will be regenerated.
If
.Fl f
is specified, any new entries with have the flags specified at
.Ar flags .
.It Xo
.Cm create
.Op Fl u Ar uuid
.Op Fl v Ar version
.Ar outfile
.Ar
.Xc
Create a trustcache at
.Ar outfile .
Each Mach-O found in the specified inputs will be scanned for
a code signature and hashed.
Any malformed or unsigned Mach-O will be ignored.
Each slice of a FAT binary will have its hash included.
Versions 0, 1, and 2 are supported, if not specified, 1 is assumed.
If
.Ar uuid
is specified, that will be used instead of a randomly generated one.
.It Xo
.Cm info
.Op Fl c
.Op Fl h
.Op Fl e Ar entrynum
.Ar file
.Xc
Print information about
.Ar file .
The output for each hash will be in one of these formats:
.Pp
.Dl <cdhash> <flags> [<hash_type>]
.Dl <cdhash> <flags> [<hash_type>] [<category>]
.Pp
If the
.Fl c
is given, only the hashes will be printed.
If
.Fl h
is given, only the header will be printed.
If
.Ar entrynum
is specified, only that entry will be printed.
.It Xo
.Cm remove
.Op Fl k
.Ar file
.Ar hash ...
.Xc
Remove each specified hash from
.Ar file .
If
.Fl k
is specified, the uuid will not be regenerated.
The number of removed entries will be printed.
.El
.Sh EXIT STATUS
.Ex -std
.Sh SEE ALSO
.Xr cryptex-dump-trust-cache 1 ,
.Xr cryptex-generate-trust-cache 1
.Sh HISTORY
The
.Nm
utility was written by
.An Cameron Katri Aq Mt me@cameronkatri.com .