[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: [tor-bugs] #9476 [Tor]: Completely drop support for Tor 0.2.2.x
#9476: Completely drop support for Tor 0.2.2.x
------------------------+--------------------------------
     Reporter:  nickm   |      Owner:
         Type:  defect  |     Status:  new
     Priority:  major   |  Milestone:  Tor: 0.2.5.x-final
    Component:  Tor     |    Version:
   Resolution:          |   Keywords:  tor-relay tor-auth
Actual Points:          |  Parent ID:
       Points:          |
------------------------+--------------------------------
Comment (by atagar):
 Hi Nick, relay operators notified...
 * 685 relays are running the 0.2.2.x series
 * 274 had contact information
 * 215 people emailed, of the rest 34 had rubbish contact information and
 25 immediately bounced
 Here's the script I threw together to get the relays...
 {{{
 from stem.descriptor.remote import DescriptorDownloader
 from stem.version import Version
 downloader = DescriptorDownloader()
 count, with_contact = 0, 0
 print "Checking for outdated relays..."
 print
 for desc in downloader.get_server_descriptors():
   if desc.tor_version < Version('0.2.3.0'):
     count += 1
     if desc.contact:
       print '  %-15s %s' % (desc.tor_version, desc.contact.decode("utf-8",
 "replace"))
       with_contact += 1
 print
 print "%i outdated relays found, %i had contact information" % (count,
 with_contact)
 }}}
 Unfortunately more time went toward manually un-obfuscating addresses
 (~60-90 minutes).
 Cheers! -Damian
-- 
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/9476#comment:5>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
_______________________________________________
tor-bugs mailing list
tor-bugs@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs