ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 This is incredible, its really fun to use, and when you call someone, they have no clue who its from.I just hate how its a demo, *wisper* anyone no how to crack it */wisper*Nice work zerocool,how do you find these websites?I wish I knew, The Great 'Awesoma-Powa!' found it.if anyone does have a crakc please email me or PM me, DO NOT POST IT.Thanks Check out ConsultingJoe.com
PezoFaSho Posted June 1, 2006 Posted June 1, 2006 hey thats awesome i was freaking out this chick out with that one. Really great man, I also wish that it wasnt a demo. But thx anyways 50% of the time, it works all the time
seandisanti Posted June 1, 2006 Posted June 1, 2006 didn't you say you could use it more often by changing your ip address? seems like it would be pretty easy to get a list of free anonymous proxy servers (that phrase alone will bring you to plenty if you google it) and make a script that reads in and configures your computer to use different proxies...so you can have your ip change every time...
Outshynd Posted June 1, 2006 Posted June 1, 2006 I use this to notify me if a person messages me on MSN or AIM or whatever. #include <INet.au3> AutoItSetOption("WinTitleMatchMode", 2) While Not WinExists("SOME_PART_OF_THE_NAME_OF_YOUR_FRIEND") Sleep(500) WEnd $response = phonecall("000-000-0000", "000-000-0000", "Yourself", "NAME_HERE messaged you.") MsgBox(32, "Response", "Response from CDYNE: " & $response) Func phonecall( $phone_to, $phone_from, $phone_from_name, $say, $voice = 1, $key = 0 ) $call = _Inetgetsource( "ws.cdyne.com/NotifyWS/phonenotify.asmx/NotifyPhoneBasic?PhoneNumberToDial=" & $phone_to & "&TextToSay=" & $say & "&CallerID=" & $phone_from & "&CallerIDname=" & $phone_from_name & "&VoiceID=" & $voice & "&LicenseKey=" & $key ) $_begin = StringSplit($call, "<ResponseText>", 1) $_end = StringSplit($_begin[2], "</ResponseText>", 1) If Not @error Then Return ($_end[1]) EndIf EndFunc Note: be sure your friend's IM window is closed before running this, of course.
ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 I use this to notify me if a person messages me on MSN or AIM or whatever. #include <INet.au3> AutoItSetOption("WinTitleMatchMode", 2) While Not WinExists("SOME_PART_OF_THE_NAME_OF_YOUR_FRIEND") Sleep(500) WEnd $response = phonecall("000-000-0000", "000-000-0000", "Yourself", "NAME_HERE messaged you.") MsgBox(32, "Response", "Response from CDYNE: " & $response) Func phonecall( $phone_to, $phone_from, $phone_from_name, $say, $voice = 1, $key = 0 ) $call = _Inetgetsource( "ws.cdyne.com/NotifyWS/phonenotify.asmx/NotifyPhoneBasic?PhoneNumberToDial=" & $phone_to & "&TextToSay=" & $say & "&CallerID=" & $phone_from & "&CallerIDname=" & $phone_from_name & "&VoiceID=" & $voice & "&LicenseKey=" & $key ) $_begin = StringSplit($call, "<ResponseText>", 1) $_end = StringSplit($_begin[2], "</ResponseText>", 1) If Not @error Then Return ($_end[1]) EndIf EndFunc Note: be sure your friend's IM window is closed before running this, of course. nice Check out ConsultingJoe.com
jacksont123 Posted June 2, 2006 Posted June 2, 2006 I wish I knew, The Great 'Awesoma-Powa!' found it.if anyone does have a crakc please email me or PM me, DO NOT POST IT.Thankshttp://ws.cdyne.com/NotifyWS/phonenotify.a...otifyPhoneBasicif you notice theres a licence key option, at default it's set to 0, which displays the ip addressmaybe if you use a different licence key (one that's actually registered to the website) you can disable the whole ip address thing
Moderators SmOke_N Posted June 2, 2006 Moderators Posted June 2, 2006 http://ws.cdyne.com/NotifyWS/phonenotify.a...otifyPhoneBasicif you notice theres a licence key option, at default it's set to 0, which displays the ip addressmaybe if you use a different licence key (one that's actually registered to the website) you can disable the whole ip address thingI was reading that things license options... It's like a cell phone with pay per call, don't know how easy it would be or beneficial to the end-users license number you stole to their pocket book. A 1000 calls a month was like $150.00 every month or something. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Emerica Posted June 4, 2006 Posted June 4, 2006 (edited) For you to ponder over. Instead of grabbing the response, grab the id, the poll the status page for more details on whats going on. expandcollapse popup#NoTrayIcon #include <GUIConstants.au3> #include <INet.au3> $FONE = GUICreate("FONE", 320, 430, 198, 118) $Tab1 = GUICtrlCreateTab(8, 8, 305, 417) $TabSheet1 = GUICtrlCreateTabItem("Cdyne") $AboutCdyne = GUICtrlCreateGroup("About Cdyne", 16, 40, 281, 65) GUICtrlCreateLabel("This Method will call any phone number in the US/Canada and read the TextToSay to that phone number.", 24, 56, 264, 41) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group1 = GUICtrlCreateGroup("Make a call", 16, 112, 281, 233) $numberto = GUICtrlCreateInput("", 136, 128, 153, 21, -1, $WS_EX_CLIENTEDGE) $numberfrom = GUICtrlCreateInput("", 136, 152, 153, 21, -1, $WS_EX_CLIENTEDGE) $fromname= GUICtrlCreateInput("FONE", 136, 176, 153, 21, -1, $WS_EX_CLIENTEDGE) $voicecom = GUICtrlCreateCombo("William", 136, 200, 153, 21) GUICtrlSetData($voicecom, "David|William|Emily|Frank|Lawrence|Millie|Isabelle|Katrin|Marta|Vittoria") $lkey = GUICtrlCreateInput("0", 136, 224, 153, 21, -1, $WS_EX_CLIENTEDGE) $say = GUICtrlCreateEdit("", 24, 256, 265, 57, -1, $WS_EX_CLIENTEDGE) GUICtrlSetData($say, "Type your message here.") GUICtrlCreateLabel("Dial Number", 24, 132, 62, 17) GUICtrlCreateLabel("Caller Id Number", 24, 156, 82, 17) GUICtrlCreateLabel("Caller Id Name", 24, 180, 73, 17) GUICtrlCreateLabel("Speaking Voice", 24, 202, 79, 17) GUICtrlCreateLabel("Cdyne License Key", 24, 228, 95, 17) $Send = GUICtrlCreateButton("Send", 240, 320, 50, 20) $Group2 = GUICtrlCreateGroup("Call Status", 16, 352, 281, 65) GUICtrlCreateLabel("Last Call Status", 24, 392, 77, 17) GUICtrlCreateLabel("Last Call Id", 24, 372, 56, 17) $queueid = GUICtrlCreateLabel("0", 104, 372, 125, 17, $SS_SUNKEN) $status = GUICtrlCreateLabel("No Call Sent", 104, 392, 125, 17, $SS_SUNKEN) $refresh = GUICtrlCreateButton("Refresh", 240, 392, 50, 20) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Send GUICtrlSetData($status, "Attempting Call") $voicearray = StringSplit("David|William|Emily|Frank|Lawrence|Millie|Isabelle|Katrin|Marta|Vittoria", "|") $voice = GUICtrlRead ( $voicecom ) For $i = 1 To $voicearray[0] ProgressSet( $i*10 ) If $voice = $voicearray[$i] Then $voice = $i Next GUICtrlSetData($status, "Sending Request" ) $call = _Inetgetsource( "ws.cdyne.com/NotifyWS/phonenotify.asmx/NotifyPhoneBasic?PhoneNumberToDial=" & GUICtrlRead( $numberto ) & "&TextToSay=" & GUICtrlRead( $say ) & "&CallerID=" & GUICtrlRead( $numberfrom ) & "&CallerIDname=" & GUICtrlRead( $fromname ) & "&VoiceID=" & $voice & "&LicenseKey=" & GUICtrlRead( $lkey ) ) Sleep(2000) GUICtrlSetData($status, "Send Complete" ) GUICtrlSetData($queueid, _StringBetween($call, "<QueueID>", "</QueueID>")) _CallStatus(GUICtrlRead ( $queueid)) Case $msg = $refresh _CallStatus(GUICtrlRead ( $queueid)) Case Else ;;;;;;; EndSelect WEnd Exit Func _StringBetween($string, $begin, $end) Local $_begin, $_end $_begin = StringSplit($string, $begin, 1) $_end = StringSplit($_begin[2], $end, 1) If Not @error Then Return ($_end[1]) EndIf EndFunc Func _CallStatus($id) $st = _Inetgetsource( "http://ws.cdyne.com/NotifyWS/phonenotify.asmx/GetQueueIDStatus?QueueID=" & $id) GUICtrlSetData($status, _StringBetween($st, "<ResponseText>", "</ResponseText>")) EndFunc Edited June 4, 2006 by Emerica Project X Network StreamDrive
seandisanti Posted June 6, 2006 Posted June 6, 2006 I was reading that things license options... It's like a cell phone with pay per call, don't know how easy it would be or beneficial to the end-users license number you stole to their pocket book. A 1000 calls a month was like $150.00 every month or something.yeah, rather than look for a crack i just whipped up a little script to parse a few anonymous proxy lists.... this afternoon if i get a chance i'm going to actually make the script that changes the proxy after each use. any volunteer recipients to see how many calls i can make in an hour?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now