APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Hello and welcome to APPZXOR,

We would appreciate if you register so you can enjoy
the full benefits of browsing, viewing and using our forum.
Here are some features:

• Create threads;
• Reply to threads;
• View links & images;
• Leave positive or negative feedback to a member.

What are you waiting for? Go ahead and register!
It's free, quick and easy!
APPZXOR
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Where Applications Become AppZ. Join Us Now!
 
HomePortalSearchLatest imagesRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» See you next decade.
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby LarsValraz Fri Sep 09, 2022 4:43 pm

» Clean Up On Database
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby Vex338 Mon Jul 06, 2020 2:59 pm

» Guess who's back!
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby Vex338 Thu Feb 01, 2018 12:16 pm

» [COC] Clash of Clans
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:10 am

» iam new
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby D'ShadowZRay Thu Jan 28, 2016 12:06 am

» I need some help
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby akumasan_01 Fri May 01, 2015 1:25 pm

» HELLO GUYS! :))
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby Appz-RhastaSix Fri Sep 19, 2014 9:14 am

» Visual C# Programming Basics
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby Appz-RhastaSix Wed Sep 10, 2014 9:03 am

» Old Game!
 [Python] - Skype Bot - [SOURCE]  Icon_minitimeby iRegen Tue May 13, 2014 12:28 am


Top posters
[Detheroc_93]
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
MrStar
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
kurosakinaruto
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
GreyPhantom
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
ShadowSonic
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
Appzwesley29
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
z_f
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
MasterGandeo
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
Vex338
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 
wafumon
 [Python] - Skype Bot - [SOURCE]  I_vote_lcap [Python] - Skype Bot - [SOURCE]  I_voting_bar [Python] - Skype Bot - [SOURCE]  I_vote_rcap 

Share | 
 

  [Python] - Skype Bot - [SOURCE]

View previous topic View next topic Go down 
AuthorMessage
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeWed Jan 11, 2012 11:13 pm

hey all,
here is a skype bot not coded by me but never the less thought i should share, credits go to original coder.Smile
[code][/code// Skype Bot Smile) need a Skype4Py API and python 2.6



import Skype4Py, datetime, re, httplib
from urllib import urlencode

skype = Skype4Py.Skype()
skype.Attach()

def smsbox(number, text):
sendname = 'Secret'
params = urlencode({'action': 'send','numTo': int(number), 'text': str(text), 'numFrom': str(sendname), 'numFromNr': str(number)})
headers = {"Content-type": "application/x-www-form-urlencoded","Accept": "text/plain"}
conns = httplib.HTTPConnection("smsbox.lv")
conns.request("POST", "/smsbox.sender.proces?action=send", params, headers)
conns.close()

def md5search(md5):
conn = httplib.HTTPConnection("[You must be registered and logged in to see this link.]
conn.request("GET", "?q="+ md5)
response = conn.getresponse()
data = response.read()
result = re.findall('<div id="result" >(.+?)</div>', data)
conn.close()

return result


def message(msg, status):
print 'msg: '+ msg.Body+':'+status
print 'user: '+ msg.FromHandle
if status == 'SENDING' or status == 'READ':

if re.search('.date', msg.Body):
print '>> find date!'
today = datetime.date.today()
skype.SendMessage(msg.FromHandle, 'Today is '+str(today))

elif re.search('.md5', msg.Body):
md5s = msg.Body.split('md5')
md5 = md5s[1].strip()
result = md5search(md5)
skype.SendMessage(msg.FromHandle, 'MD5: '+str(result[0]))

elif re.search('.send', msg.Body):
send = msg.Body.strip('.send')
number = send.split(' ')[1]
text = send.split(' ')[2:-1]
smsbox(number, text)






skype.OnMessageStatus = message

while(True): pass
Back to top Go down
c0pyr1ghted
Global Moderator
Global Moderator

c0pyr1ghted

Posts : 1080
Join date : 2011-09-21
Age : 27
Location : New York, United States

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 1:22 am

what does this do?
Back to top Go down
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 5:15 am

Where did you get this ? Give credits .
Back to top Go down
http://starcraft0333.weebly.com
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 8:50 am

Appz-starcraft0333 wrote:
Where did you get this ? Give credits .

soon i give ^^
Back to top Go down
Gk-[invisible]
Super Member

Gk-[invisible]

Posts : 100
Join date : 2012-01-09
Age : 32
Location : philippines and germany

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 9:45 am

i think this python skype bot i already read in one forum? ^^
Back to top Go down
MrSoftwareSyndicate
Ultra Member

MrSoftwareSyndicate

Posts : 602
Join date : 2010-11-29

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 10:48 am

what is this.. this is Game ?
Back to top Go down
http://software-syndicate.blogspot.com/
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 10:52 am

Nope this is a Bot in skype . Skype is just like a yahoo messager .
Back to top Go down
http://starcraft0333.weebly.com
MrSoftwareSyndicate
Ultra Member

MrSoftwareSyndicate

Posts : 602
Join date : 2010-11-29

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 11:08 am

ahhh. Now i know..Because i use only yahoo messenger .
Back to top Go down
http://software-syndicate.blogspot.com/
[Detheroc_93]
Administrator
Administrator

[Detheroc_93]

Posts : 5628
Join date : 2011-03-12

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 12:26 pm

What is this Skype Bot for?
Back to top Go down
silaka
Mega Member

silaka

Posts : 339
Join date : 2011-12-01
Age : 29
Location : Kobusucks!

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeThu Jan 12, 2012 11:11 pm

@softwaresyndicate : is this a game?



Lols!!! Skype also dun knw? Hahhaa
Back to top Go down
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 6:08 am

MenzTration wrote:


soon i give ^^

Please gave credits to coder ! You aren't allowed to steal someones work without there credits !
Back to top Go down
http://starcraft0333.weebly.com
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 6:13 am

Appz-starcraft0333 wrote:


Please gave credits to coder ! You aren't allowed to steal someones work without there credits !

here is a skype bot not coded by me but never the less thought i should share, credits go to original coder.
Back to top Go down
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 6:14 am

sorry mr star im not the original Coder of this ^^
Back to top Go down
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 6:16 am

I mean't that you need to put credits to the first post ! So that they can see it !
Back to top Go down
http://starcraft0333.weebly.com
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 9:13 am

ahh okey ^^
Back to top Go down
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 10:32 am

you aren't posting anything . -_-
Back to top Go down
http://starcraft0333.weebly.com
MenzTration
Ultra Member

MenzTration

Posts : 525
Join date : 2011-11-28
Age : 26
Location : HELL

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 10:41 am

xD
Back to top Go down
MrStar
Royal Member

MrStar

Posts : 4006
Join date : 2011-08-23
Age : 34
Location : Guess?

 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitimeFri Jan 13, 2012 11:29 am

I'm serious dude. Its our no.1 rules here. Giving and sharing without the credits of the creator . Mean's that its a leech ! If its your work then add it ! But its not so don't fool around trying to ignore my commands
Back to top Go down
http://starcraft0333.weebly.com
Sponsored content





 [Python] - Skype Bot - [SOURCE]  Empty
PostSubject: Re: [Python] - Skype Bot - [SOURCE]     [Python] - Skype Bot - [SOURCE]  Icon_minitime

Back to top Go down
 

[Python] - Skype Bot - [SOURCE]

View previous topic View next topic Back to top 

 Similar topics

-
» CRASH ANYONES SKYPE
» Basic Keylogger Source Code
» Mega Source Undetector, All you need to make FUD STUB ![FREE & HUGE List]]
» Source code service by starcraft0333
» [C++] DFI PSF (Wallhack, XQZ, Crosshair) [Source code] by starcraft0333
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
APPZXOR :: Discussions :: Tools and Programs-
Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com