ConsultingJoe Posted May 31, 2006 Posted May 31, 2006 (edited) What you do:Fill out the form or UDFRun or Send CallIt will tell you if it worked or not or it will return the valueThe number is called and waits for someone to answer and speakIt speaks the message in the voice you setTHAT'S ITLet me know how you like it, If you have problems let me know.Special thanks to The Great 'Awesoma-Powa!' for his html versionphone.exe Phone Phreaker expandcollapse popup#include <GUIConstants.au3> #include <INet.au3> $Form1 = GUICreate("Phone Phreaker", 305, 341, 192, 125) GUICtrlCreateLabel("By: zerocool60544", 187, 69, 113, 20) $numberto = GUICtrlCreateInput("345-345-3456", 158, 108, 139, 24, -1, $WS_EX_CLIENTEDGE) GUICtrlSetFont(-1, 12, 400, 0, "Comic Sans MS") GUICtrlSetTip(-1, "Enter number to call" & @CRLF & "eg. 234 234 2345") $numberfrom = GUICtrlCreateInput("345-345-3456", 158, 133, 139, 24, -1, $WS_EX_CLIENTEDGE) GUICtrlSetFont(-1, 12, 400, 0, "Comic Sans MS") GUICtrlSetTip(-1, "Enter number to show up on the caller ID" & @CRLF & "eg. 234 234 2345") GUICtrlCreateLabel("Number to call:", 12, 108, 131, 24) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") GUICtrlCreateLabel("CID Number:", 12, 135, 112, 24) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") GUICtrlCreateLabel("CID Name:", 12, 160, 112, 24) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") $fromname = GUICtrlCreateInput("John Johnson", 158, 158, 139, 24, -1, $WS_EX_CLIENTEDGE) GUICtrlSetFont(-1, 12, 400, 0, "Comic Sans MS") GUICtrlCreateLabel("Voice:", 12, 182, 57, 24) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") $voice = GUICtrlCreateCombo("David", 98, 183, 199, 24) GUICtrlSetData( $voice, "William|Emily|Frank|Lawrence|Millie|Isabelle (French)|Katrin (German)|Marta (Spanish)|Vittoria (Italian)") GUICtrlSetTip(-1, "Select the voice to speak") GUICtrlCreateLabel("Say:", 12, 230, 41, 24) GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") $say= GUICtrlCreateEdit("Hello There", 78, 206, 220, 80, -1, $WS_EX_CLIENTEDGE) GUICtrlSetFont(-1, 10, 400, 0, "Comic Sans MS") GUICtrlSetTip(-1, "Enter message to say") $Button1 = GUICtrlCreateButton("Send Call", 89, 295, 129, 41) GUICtrlSetFont(-1, 12, 400, 0, "Comic Sans MS") GUICtrlSetTip(-1, "Click to send the call") GUICtrlCreateLabel("Phone Pheaker", 16, 8, 267, 59, $SS_CENTER) GUICtrlSetFont(-1, 28, 400, 0, "Arial Narrow") GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE MsgBox(0,"Phone Phreak", "Thank you. For bugs and comments email me at: jsammarco@gmail.com") ExitLoop Case $msg = $Button1 ProgressOn ( "Phone Phreaker", "Please Hold. . ." ) $voicearray = StringSplit("David|William|Emily|Frank|Lawrence|Millie|Isabelle (French)|Katrin (German)|Marta (Spanish)|Vittoria (Italian)", "|") $voice = GUICtrlRead ( $voice ) For $i = 1 To $voicearray[0] ProgressSet( $i*10 ) If $voice = $voicearray[$i] Then $voice = $i Next ProgressSet( 90, "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=0" ) ProgressSet( 100, "Complete" ) Sleep(300) ProgressOff() MsgBox(0, "Phone Phreaker Response", _StringBetween($call, "<ResponseText>", "</ResponseText>") ) 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 ;==>_StringBetween Edited June 1, 2006 by zerocool60544 Check out ConsultingJoe.com
Inigma Posted May 31, 2006 Posted May 31, 2006 Looks really great, can't wait to test it at home but I was wondering: How does it actually call someone? Can't really make that up out of the script ^^
Coffee Posted May 31, 2006 Posted May 31, 2006 This Method will call any phone number in the US/Canada and read the TextToSay to that phone
ConsultingJoe Posted May 31, 2006 Author Posted May 31, 2006 This Method will call any phone number in the US/Canada and read the TextToSay to that phoneYes that is the real way to do it, but the site tells you the api for the php so it let you just type everything in the urlI can see someone tested this with the number already on there, lol that is my cuzens cell. I hate that bitch Check out ConsultingJoe.com
Moderators SmOke_N Posted May 31, 2006 Moderators Posted May 31, 2006 (edited) Yes that is the real way to do it, but the site tells you the api for the php so it let you just type everything in the urlI can see someone tested this with the number already on there, lol that is my cuzens cell. I hate that bitch Edit:Had to try it, my wife is still cursing (haven't told her it was me yet ) Edited May 31, 2006 by SmOke_N 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.
seandisanti Posted May 31, 2006 Posted May 31, 2006 Edit:Had to try it, my wife is still cursing (haven't told her it was me yet )nice.
Shade Posted May 31, 2006 Posted May 31, 2006 This is one awesome script you have here! I'm gonna use it to prank my friends. Great work! [u]Window Hider[/u]
ConsultingJoe Posted May 31, 2006 Author Posted May 31, 2006 This is one awesome script you have here! I'm gonna use it to prank my friends. Great work!LOL, I had a blast with it too. Thanks guys.dont tell too many people because the abuse may get back to the site and they may shut it down.Remeber this can be used to notify your self of PC activity like for example your computer finishes downloading something you can have the UDF call you to let you know.The only way to get around the demo usage is to either buy a key or wait an hour or get a new IP Check out ConsultingJoe.com
ConsultingJoe Posted May 31, 2006 Author Posted May 31, 2006 now I have a compiled version on the first post for easy access from school, a friends house, or anywhere. Check out ConsultingJoe.com
bucky002 Posted May 31, 2006 Posted May 31, 2006 Haha, very nice zerocool60544. Will have lots of fun.
ConsultingJoe Posted May 31, 2006 Author Posted May 31, 2006 Haha, very nice zerocool60544. Will have lots of fun. I just had a blast. Some of my programs make me anzy in my pantzy, lol Check out ConsultingJoe.com
jacksont123 Posted June 1, 2006 Posted June 1, 2006 (edited) nice script! i guess that phone spoof script i gave you was really useful Edited June 1, 2006 by The Great 'Awesoma-Powa!'
ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 nice script!i guess that phone spoof script i gave you was really useful yeah, thanks check the first post for your thanks Check out ConsultingJoe.com
Skrip Posted June 1, 2006 Posted June 1, 2006 Can you re-post the script. It's coming out as a single line when i paste it. [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]
ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 Can you re-post the script. It's coming out as a single line when i paste it. ??? I dono why but if you want you can download the source from: http://zerocool60544.t35.com/phone.au3 BTW: I fixed the disordered tabbing Check out ConsultingJoe.com
Skrip Posted June 1, 2006 Posted June 1, 2006 I couldn't paste it, it didn't work. I pasted it into scite, and it came out as 1 line. [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]
ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 I couldn't paste it, it didn't work.I pasted it into scite, and it came out as 1 line.Well I dono why, it worked for everyone else, check you taskmanager to see if you have something running that would mess with your clipboardor just use the link I gave you Check out ConsultingJoe.com
Skrip Posted June 1, 2006 Posted June 1, 2006 ya it's working now. Awesome. I made it call my friend and he thought it was funny. [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]
ConsultingJoe Posted June 1, 2006 Author Posted June 1, 2006 ya it's working now. Awesome. I made it call my friend and he thought it was funny.it works great with devorsed parents, you have it call your mom and bitch her out but make it look like its coming from your dad. LOLyou better get some popcorn and have a seat.J/K but it would be funny Check out ConsultingJoe.com
Paulie Posted June 1, 2006 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?
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