about summary refs log tree commit diff stats
path: root/sandboxing
Commit message (Collapse)AuthorAgeFilesLines
* sandbox: more scenariosKartik K. Agaram2021-12-251-0/+5
|
* sandbox: new scenarioKartik K. Agaram2021-12-251-0/+4
|
* more sandboxing scenariosKartik K. Agaram2021-12-251-0/+9
|
* back to sandboxing; focus on files and socketsKartik K. Agaram2021-12-251-0/+2
|
* sandbox: no popenKartik K. Agaram2021-12-251-1/+1
| | | | Again, too difficult to sandbox for now.
* sandbox: UXKartik K. Agaram2021-12-251-1/+3
|
* sandbox: another scenario, some UX ideasKartik K. Agaram2021-12-251-0/+8
| | | | | | | | | | | | | I'd originally thought of allowing policies to be influenced by arbitrary code. But that may be overkill: - it's probably not a good idea to allow policies to read/write from file system - it's even less a good idea to allow policies to access the network - particularly since it's difficult (error-prone) to distinguish GET/POST in arbitrary protocols - once you allow file system and network, you're pretty close to owned So let's first focus on the simplest policy, the one that is easiest to secure. We'll add capabilities to policies as we gain confidence we can secure them.
* sandbox: record scenarios I've thought of so farKartik K. Agaram2021-12-251-4/+24
|
* .Kartik K. Agaram2021-12-251-2/+2
|
* stop futzing around and start sandboxingKartik K. Agaram2021-12-244-0/+937
f'>^
a35042fb ^
b4c2c703 ^
b6aff4c3 ^
cc952d63 ^
a35042fb ^
845bd407 ^

a35042fb ^
845bd407 ^
871c502d ^
23236d0c ^


cc952d63 ^
845bd407 ^

a8f6fc96 ^
c3cdeb9c ^

845bd407 ^


2052eb74 ^


cc952d63 ^

23236d0c ^
cc952d63 ^


23236d0c ^
d46a05a8 ^
ea87d005 ^
cc952d63 ^
0128bee7 ^
cc952d63 ^

23236d0c ^
cc952d63 ^
23236d0c ^


cc952d63 ^
d46a05a8 ^
23236d0c ^

cc952d63 ^
d46a05a8 ^
1b0786f2 ^



d46a05a8 ^
1b0786f2 ^





d46a05a8 ^

845bd407 ^




d46a05a8 ^
23236d0c ^


cc952d63 ^
23236d0c ^
d46a05a8 ^
23236d0c ^


cc952d63 ^
23236d0c ^

871c502d ^
cc952d63 ^
23236d0c ^

9f9fcdd2 ^


9f9fcdd2 ^

d46a05a8 ^
23236d0c ^








3bd534c9 ^











23236d0c ^
d46a05a8 ^
23236d0c ^




ea87d005 ^
d46a05a8 ^
ac0daa33 ^
23236d0c ^
ac0daa33 ^
845bd407 ^
d46a05a8 ^
845bd407 ^






ea87d005 ^
c3cdeb9c ^

a811c7ec ^
c3cdeb9c ^
ea87d005 ^
c3cdeb9c ^
18f904b7 ^
c3cdeb9c ^
ea87d005 ^
d46a05a8 ^
845bd407 ^
c3cdeb9c ^
845bd407 ^
d46a05a8 ^
845bd407 ^

ea87d005 ^
d46a05a8 ^
845bd407 ^






ea87d005 ^
d46a05a8 ^
845bd407 ^
8e1de917 ^
ea87d005 ^
d46a05a8 ^
845bd407 ^

ea87d005 ^
d46a05a8 ^
845bd407 ^
8e1de917 ^
845bd407 ^
d46a05a8 ^
845bd407 ^




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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222