2003-03-12 07:26:59 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * 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.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT OWNER 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.
|
|
|
|
###
|
|
|
|
|
2003-03-25 07:53:51 +01:00
|
|
|
"""
|
|
|
|
Provides commands available only on Unix.
|
|
|
|
"""
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
from baseplugin import *
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import pwd
|
|
|
|
import crypt
|
|
|
|
import errno
|
|
|
|
import random
|
|
|
|
import struct
|
2003-08-17 20:10:48 +02:00
|
|
|
import popen2
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
import privmsgs
|
|
|
|
import callbacks
|
2003-08-17 22:09:09 +02:00
|
|
|
import utils
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-04-08 09:18:53 +02:00
|
|
|
def configure(onStart, afterConnect, advanced):
|
|
|
|
from questions import expect, anything, something, yn
|
2003-08-19 16:47:59 +02:00
|
|
|
onStart.append('load Unix')
|
2003-08-17 22:09:09 +02:00
|
|
|
cmdLine = utils.findBinaryInPath('aspell')
|
|
|
|
if not cmdLine:
|
|
|
|
cmdLine = utils.findBinaryInPath('ispell')
|
2003-08-17 20:10:48 +02:00
|
|
|
if not cmdLine:
|
|
|
|
print 'NOTE: I couldn\'t find aspell or ispell in your path,'
|
|
|
|
print 'so that function of this module will not work. You may'
|
|
|
|
print 'choose to install it later, and then the module will'
|
|
|
|
print 'automatically work, as long as it is in the path of the'
|
|
|
|
print 'user that supybot runs under.'
|
2003-08-20 18:26:23 +02:00
|
|
|
print
|
2003-08-17 20:10:48 +02:00
|
|
|
|
2003-04-08 09:18:53 +02:00
|
|
|
print 'The "progstats" command can reveal potentially sensitive'
|
|
|
|
print 'information about your machine. Here\'s an example of its output:'
|
|
|
|
print
|
|
|
|
print progstats()
|
|
|
|
print
|
|
|
|
if yn('Would you like to disable this command?') == 'y':
|
|
|
|
onStart.append('disable progstats')
|
2003-08-17 20:10:48 +02:00
|
|
|
|
2003-04-08 09:18:53 +02:00
|
|
|
def progstats():
|
|
|
|
pw = pwd.getpwuid(os.getuid())
|
|
|
|
response = 'Process ID %i running as user "%s" and as group "%s" '\
|
|
|
|
'from directory "%s" with the command line "%s". '\
|
|
|
|
'Running on Python %s.' %\
|
|
|
|
(os.getpid(), pw[0], pw[3],
|
|
|
|
os.getcwd(), " ".join(sys.argv),
|
|
|
|
sys.version.translate(string.ascii, '\r\n'))
|
|
|
|
return response
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-04-08 09:18:53 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
class Unix(callbacks.Privmsg):
|
2003-08-17 20:10:48 +02:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
|
|
|
# Initialize a file descriptor for the spell module.
|
2003-08-17 22:09:09 +02:00
|
|
|
cmdLine = utils.findBinaryInPath('aspell')
|
|
|
|
if not cmdLine:
|
|
|
|
cmdLine = utils.findBinaryInPath('ispell')
|
2003-08-17 21:15:37 +02:00
|
|
|
(self._spellRead, self._spellWrite) = popen2.popen4(cmdLine + ' -a', 0)
|
2003-08-17 20:10:48 +02:00
|
|
|
# Ignore the banner
|
|
|
|
self._spellRead.readline()
|
|
|
|
|
2003-08-17 21:15:37 +02:00
|
|
|
def die(self):
|
|
|
|
# close the filehandles
|
|
|
|
for h in (self._spellRead, self._spellWrite):
|
2003-08-17 20:10:48 +02:00
|
|
|
h.close()
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def errno(self, irc, msg, args):
|
2003-08-17 21:15:37 +02:00
|
|
|
"""<error number or code>
|
|
|
|
|
|
|
|
Returns the number of an errno code, or the errno code of a number.
|
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
s = privmsgs.getArgs(args)
|
|
|
|
try:
|
|
|
|
i = int(s)
|
|
|
|
name = errno.errorcode[i]
|
|
|
|
except ValueError:
|
|
|
|
name = s.upper()
|
|
|
|
try:
|
|
|
|
i = getattr(errno, name)
|
|
|
|
except AttributeError:
|
|
|
|
irc.reply(msg, 'I can\'t find the errno number for that code.')
|
|
|
|
return
|
|
|
|
except KeyError:
|
|
|
|
name = '(unknown)'
|
|
|
|
irc.reply(msg, '%s (#%s): %s' % (name, i, os.strerror(i)))
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def progstats(self, irc, msg, args):
|
2003-08-17 21:15:37 +02:00
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns various unix-y information on the running supybot process.
|
|
|
|
"""
|
2003-04-08 09:18:53 +02:00
|
|
|
irc.reply(msg, progstats())
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
_cryptre = re.compile(r'[./0-9A-Za-z]')
|
|
|
|
def crypt(self, irc, msg, args):
|
2003-08-17 21:15:37 +02:00
|
|
|
"""<password> [<salt>]
|
|
|
|
|
|
|
|
Returns the resulting of doing a crypt() on <password> If <salt> is
|
2003-08-20 09:32:49 +02:00
|
|
|
not given, uses a random salt. If running on a glibc2 system,
|
|
|
|
prepending '$1$' to your salt will cause crypt to return an MD5sum
|
|
|
|
based crypt rather than the standard DES based crypt.
|
2003-08-17 21:15:37 +02:00
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
def makeSalt():
|
|
|
|
s = '\x00'
|
|
|
|
while self._cryptre.sub('', s) != '':
|
|
|
|
s = struct.pack('<h', random.randrange(2**16))
|
|
|
|
return s
|
|
|
|
(password, salt) = privmsgs.getArgs(args, optional=1)
|
|
|
|
if salt == '':
|
|
|
|
salt = makeSalt()
|
|
|
|
irc.reply(msg, crypt.crypt(password, salt))
|
|
|
|
|
2003-08-20 18:26:23 +02:00
|
|
|
def spell(self, irc, msg, args):
|
2003-08-17 21:15:37 +02:00
|
|
|
"""<word>
|
|
|
|
|
2003-08-17 21:51:05 +02:00
|
|
|
Returns the result of passing <word> to aspell/ispell. The results
|
|
|
|
shown are sorted from best to worst in terms of being a likely match
|
|
|
|
for the spelling of <word>.
|
2003-08-17 21:15:37 +02:00
|
|
|
"""
|
2003-08-17 20:10:48 +02:00
|
|
|
# We are only checking the first word
|
2003-08-17 21:15:37 +02:00
|
|
|
word = privmsgs.getArgs(args)
|
|
|
|
if ' ' in word:
|
|
|
|
irc.error(msg, 'Aspell/ispell can\'t handle spaces in words.')
|
|
|
|
return
|
|
|
|
self._spellWrite.write(word)
|
2003-08-17 22:09:09 +02:00
|
|
|
self._spellWrite.write('\n')
|
2003-08-20 18:26:23 +02:00
|
|
|
line = self._spellRead.readline()
|
2003-08-17 20:10:48 +02:00
|
|
|
# aspell puts extra whitespace, ignore it
|
|
|
|
while line == '\n':
|
|
|
|
line = self._spellRead.readline()
|
|
|
|
# parse the output
|
|
|
|
if line[0] in '*+':
|
2003-08-17 21:15:37 +02:00
|
|
|
resp = '"%s" may be spelled correctly.' % word
|
2003-08-17 20:10:48 +02:00
|
|
|
elif line[0] == '#':
|
2003-08-17 21:15:37 +02:00
|
|
|
resp = 'Could not find an alternate spelling for "%s"' % word
|
2003-08-17 20:10:48 +02:00
|
|
|
elif line[0] == '&':
|
|
|
|
matches = line.split(':')[1].strip()
|
2003-08-17 21:15:37 +02:00
|
|
|
match_list = matches.split(', ')
|
2003-08-17 21:51:05 +02:00
|
|
|
total = len(match_list)
|
|
|
|
ircutils.shrinkList(match_list, ', ', 350)
|
|
|
|
shown = len(match_list)
|
|
|
|
resp = 'Possible spellings for "%s" (%d found, %d shown): %s.' % \
|
|
|
|
(word, total, shown, ', '.join(match_list))
|
2003-08-17 20:10:48 +02:00
|
|
|
else:
|
2003-08-17 21:15:37 +02:00
|
|
|
resp = 'Something unexpected was seen in the [ai]spell output.'
|
2003-08-17 20:10:48 +02:00
|
|
|
irc.reply(msg, resp)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
Class = Unix
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
2003-08-17 20:10:48 +02:00
|
|
|
|