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
|
#!/usr/bin/python
import struct
import sys
import thread
from twisted.words.protocols import oscar
from twisted.internet import reactor, protocol
import mh_python
import pyPgSQL.PgSQL
uin = '370496181'
print "Enter icq password(megahal...): ",
password = sys.stdin.readline().strip()
def fill_hal():
mh_python.initbrain()
conn = pyPgSQL.PgSQL.connect(database="omegle")
cur = conn.cursor()
cur.execute("""
SELECT message from omegle_messages WHERE LENGTH(message) BETWEEN 3 AND 30
AND NOT ( message ILIKE '%www.%'
OR message ILIKE '%http%'
OR message ILIKE '%@%.%')
""")
messages = cur.fetchall()
c=0
for message in messages:
c+=1
if c%500==0:
print "%s%s/%s" % ("\033[2K\033[E",c,len(messages)),
#XXX pass massage[0] to mh and end with a fucked up python
mh_python.learn("%s " % (message[0]))
print "%s%s/%s" % ("\033[2K\033[E",len(messages),len(messages))
cur.close()
conn.close()
del messages
class icqBot( oscar.BOSConnection ):
capabilities = [oscar.CAP_CHAT]
# oscar.CAP_SEND_FILE,oscar.CAP_GET_FILE]
def initDone( self ):
self.requestSelfInfo()
self.requestSSI().addCallback(self.gotBuddyList)
def updateBuddy(self, user):
print "Update buddy %s" % user
def gotBuddyList( self, buddylist ):
self.activateSSI()
self.setProfile("Forget ICQ, MSN, Yahoo and the other shitty protocols! Use Jabber!")
self.setIdleTime( 0 )
self.clientReady()
for user in buddylist[0][0].users:
self.sendAuthorizationResponse(user.name, True, '')
print buddylist
print 'ICQ-Autoresponder-Bot aktiviert ;-)'
def receiveMessage( self, user, multiparts, flags ):
try:
sss = str(multiparts[0][0])
reply = mh_python.doreply(sss)
self.sendMessage(user.name, reply )
print "from: " + user.name+':', multiparts[0][0]
print " to: " + user.name+':',reply
self.sendAuthorizationResponse(user.name, True, '')
except Exception,e:
print "error: %s %s\n%s" % (user,multiparts,e)
def chatReceiveMessage( self, chat, user, message ):
self.receiveMessage( self, user, message, 0 )
def receiveSendFileRequest(self, *args):
# def receiveSendFileRequest(self, user, file, description, cookie):
print args
def sendAuthorizationResponse(self, uin, success, responsString):
packet = struct.pack("b", len(uin)) + uin
if success:
packet += struct.pack("b", 1)
else:
packet += struct.pack("b", 0)
packet += struct.pack(">H", len(responsString)) + responsString
self.sendSNACnr(0x13, 0x1a, packet)
class OscarCrap( oscar.OscarAuthenticator ):
BOSClass = icqBot
thread.start_new_thread(fill_hal,())
protocol.ClientCreator( reactor, OscarCrap, uin, password, icq=1 ).connectTCP( 'login.icq.com', 5238 )
reactor.run()
|