diff options
author | Colin Watson <cjwatson@debian.org> | 2008-06-09 11:08:17 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2008-06-09 11:08:17 +0000 |
commit | 0b848463a5673dabee2561bd381c679d673d2215 (patch) | |
tree | 67cc122f32acb970fd66d73c9b107872fddfbac2 /debian/README.compromised-keys | |
parent | 1e9c9549f143e974d6cce857b3e1af1639265758 (diff) |
Add documentation on removing openssh-blacklist locally (see #484269).
Diffstat (limited to 'debian/README.compromised-keys')
-rw-r--r-- | debian/README.compromised-keys | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/README.compromised-keys b/debian/README.compromised-keys index bfffc154a..7a9cb7657 100644 --- a/debian/README.compromised-keys +++ b/debian/README.compromised-keys | |||
@@ -138,3 +138,30 @@ OpenSSL: | |||
138 | 138 | ||
139 | 3. If certificates have been generated for use on other systems, they must be | 139 | 3. If certificates have been generated for use on other systems, they must be |
140 | found and replaced as well. | 140 | found and replaced as well. |
141 | |||
142 | == Removing openssh-blacklist == | ||
143 | |||
144 | For the moment, the openssh-server package depends on openssh-blacklist, in | ||
145 | order that the blacklist is deployed to the maximum possible number of | ||
146 | systems to reduce the potential spread of worms exploiting this | ||
147 | vulnerability. We acknowledge that this may be inconvenient for some small | ||
148 | systems, but nevertheless feel that this was the best course of action. | ||
149 | |||
150 | If you absolutely need to remove the blacklist from your system, then you | ||
151 | can run the following commands to substitute a fake package for | ||
152 | openssh-blacklist: | ||
153 | |||
154 | sudo apt-get install equivs | ||
155 | equivs-control openssh-blacklist.ctl | ||
156 | sed -i 's/^Package:.*/Package: openssh-blacklist/' openssh-blacklist.ctl | ||
157 | sed -i 's/^# Version:.*/Version: 9:1.0/' openssh-blacklist.ctl | ||
158 | equivs-build openssh-blacklist.ctl | ||
159 | sudo dpkg -i openssh-blacklist_1.0_all.deb | ||
160 | |||
161 | Be warned: this circumvents a security measure for the sake of disk space. | ||
162 | You should only do this if you have no other option, and if you are certain | ||
163 | that no compromised keys will ever be generated on or copied onto this | ||
164 | system. | ||
165 | |||
166 | Once a sufficient amount of time and number of releases have passed, the | ||
167 | openssh-blacklist package will be phased out. | ||