summaryrefslogtreecommitdiff
blob: 7436fdce3ffc40c427df68dae10d17b535fe858f (plain)
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2010-10-22 00:56+0600\n"
"PO-Revision-Date: 2010-10-22 00:56+0600\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(version):10
msgid "1.2"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(date):11
msgid "2008-04-15"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(title):14
msgid "Removing functionality"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):17
msgid ""
"The basic rule when configuring the kernel is to remove everything that you "
"do not need. This will not only create a small kernel but also remove the "
"vulnerabilities that may lie inside drivers and other features."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):23
msgid ""
"Also consider turning off loadable module support. Even though it is "
"possible to add root kits without this features, it does make it harder for "
"normal attackers to install root kits via kernel modules."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(title):32
msgid "The proc filesystem"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):35
msgid ""
"Many kernel parameters can be altered through the <path>/proc</path> file "
"system or by using <c>sysctl</c>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):40
msgid ""
"To dynamically change kernel parameters and variables on the fly, you need "
"<c>CONFIG_SYSCTL</c> defined in your kernel. This is on by default in a "
"standard 2.4 kernel."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):46
msgid "Deactivate IP forwarding"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):46
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"0\" &gt; /proc/sys/net/ipv4/ip_forward</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):50
msgid ""
"Make sure that IP forwarding is turned off. We only want this for a multi-"
"homed host. It's advised to set or unset this flag before all other flags "
"since it enabled/disables other flags as well."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):56
msgid "Drop ping packets"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):56
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"1\" &gt; /proc/sys/net/ipv4/icmp_echo_ignore_all</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):60
msgid ""
"This will cause the kernel to simply ignore all ping messages (also known as "
"ICMP type 0 messages). The reason for this is that an IP packet carrying an "
"ICMP message can contain a payload with information other than you think. "
"Administrators use ping as a diagnostic tool and often complain if it is "
"disabled, but there is no reason for an outsider to be able to ping. "
"However, since it sometimes can be handy for insiders to be able to ping, "
"you can disable ICMP type 0 messages in the firewall (allowing local "
"administrators to continue to use this tool)."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):71
msgid "Ignore broadcast pings"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):71
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"1\" &gt; /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):75
msgid ""
"This disables response to ICMP broadcasts and will prevent Smurf attacks. "
"The Smurf attack works by sending an ICMP type 0 (ping) message to the "
"broadcast address of a network. Typically the attacker will use a spoofed "
"source address. All the computers on the network will respond to the ping "
"message and thereby flood the host at the spoofed source address."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):83
msgid "Disable source routed packets"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):83
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"0\" &gt; /proc/sys/net/ipv4/conf/all/accept_source_route</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):87
msgid ""
"Do not accept source routed packets. Attackers can use source routing to "
"generate traffic pretending to originate from inside your network, but that "
"is actually routed back along the path from which it came, so attackers can "
"compromise your network. Source routing is rarely used for legitimate "
"purposes, so it is safe to disable it."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):95
msgid "Disable redirect acceptance"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):95
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"0\" &gt; /proc/sys/net/ipv4/conf/all/accept_redirects</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):99
msgid ""
"Do not accept ICMP redirect packets. ICMP redirects can be used to alter "
"your routing tables, possibly to a malicious end."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):104
msgid "Protect against bad error messages"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):104
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"1\" &gt; /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):108
msgid "Enable protection against bogus error message responses."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):112
msgid "Enable reverse path filtering"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):112
#, no-wrap
msgid ""
"\n"
"# <i>for i in /proc/sys/net/ipv4/conf/*; do\n"
"        /bin/echo \"1\" &gt; $i/rp_filter\n"
"done</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):118
msgid ""
"Turn on reverse path filtering. This helps make sure that packets use "
"legitimate source addresses by automatically rejecting incoming packets if "
"the routing table entry for their source address does not match the network "
"interface they are arriving on. This has security advantages because it "
"prevents IP spoofing. We need to enable it for each <path>net/ipv4/conf/*</"
"path> otherwise source validation isn't fully functional."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(warn):127
msgid ""
"However turning on reverse path filtering can be a problem if you use "
"asymmetric routing (packets from you to a host take a different path than "
"packets from that host to you) or if you operate a non-routing host which "
"has several IP addresses on different interfaces."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):134
msgid "Log all spoofed, source routed and redirect packets"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):134
#, no-wrap
msgid ""
"\n"
"# <i>/bin/echo \"1\" &gt; /proc/sys/net/ipv4/conf/all/log_martians</i>\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):138
msgid "Log spoofed packets, source routed packets and redirect packets."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):142
msgid ""
"All these settings will be reset when the machine is rebooted. I suggest "
"that you add them to <path>/etc/sysctl.conf</path>, which is automatically "
"sourced by the <path>/etc/init.d/bootmisc</path> init script."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):148
msgid ""
"The syntax for <path>/etc/sysctl.conf</path> is pretty straightforward. "
"Strip off the <path>/proc/sys/</path> from the previously mentioned paths "
"and substitute <path>/</path> with <path>.</path>:"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre:caption):154
msgid "Translating to sysctl.conf"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(pre):154
#, no-wrap
msgid ""
"\n"
"<comment>(Manual using echo):</comment>\n"
"/bin/echo \"0\" &gt; /proc/sys/net/ipv4/ip_forward\n"
"\n"
"<comment>(Automatic in sysctl.conf:)</comment>\n"
"net.ipv4.ip_forward = 0\n"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(title):165
msgid "Grsecurity"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):168
msgid ""
"The patch from <uri link=\"http://grsecurity.net\">Grsecurity</uri> is "
"standard in the <c>sys-kernel/hardened-sources</c> but is disabled by "
"default. Configure your kernel as you normally do and then configure the "
"Grsecurity options. An in-depth explanation on the available Grsecurity "
"options is available on the <uri link=\"/proj/en/hardened\">Gentoo Hardened</"
"uri> project page."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):176
msgid ""
"Recent <c>hardened-sources</c> provide the 2.* version of Grsecurity. For "
"more information on this improved Grsecurity patch set, please consult the "
"documentation available on the <uri link=\"http://www.grsecurity.net/"
"\">Grsecurity home page</uri>."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(title):186
msgid "Kerneli"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):189
msgid ""
"<uri link=\"http://www.Kerneli.org\">Kerneli</uri> is a patch that adds "
"encryption to the existing kernel. By patching your kernel you will get new "
"options such as cryptographic ciphers, digest algorithms and cryptographic "
"loop filters."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(warn):195
msgid ""
"The kerneli patch is currently not in a stable version for the latest "
"kernel, so be careful when using it."
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(title):203
msgid "Other kernel patches"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri:link):207
msgid "http://www.openwall.com"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri):207
msgid "The OpenWall Project"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri:link):208
msgid "http://www.lids.org"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri):208
msgid "Linux Intrusion Detection System"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri:link):209
msgid "http://www.rsbac.org"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri):209
msgid "Rule Set Based Access Control"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri:link):211
msgid "http://www.nsa.gov/selinux"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri):211
msgid "NSA's security enhanced kernel"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri:link):213
msgid "http://sourceforge.net/projects/wolk/"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(uri):213
msgid "Wolk"
msgstr ""

#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(p):216
msgid "And there are probably a lot more."
msgstr ""

#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
#: ../../gentoo/xml/htdocs/doc/en/security//shb-kernel.xml(None):0
msgid "translator-credits"
msgstr ""