Andrew D Kirch Indianapolis, United States Good day, I am Mr. Andrew D Kirch, a native of Indianpolis, United States and I am an Asterisk Hacker with the Summit Open Source Development Group. First and foremost,I apologized using this medium to reach you for a transaction/business of this magnitude, but this is due to Confidentiality and prompt access reposed on this medium. Be informed that a member of the #asterisk channel on Freenode who is well familiar with you gave your enviable credentials/particulars to me. I have decided to seek a confidential co-operation with you in the execution of the deal described Hereunder for the benefit of all parties and hope you will keep it as a top secret because of the nature of this transaction. Within the Summit Opensource Development group I work as the Security Administrator and with the cooperation of other top officials, we have in our possession a Follow Me script which simply does not work More so, we are handicapped in the circumstances, as we havn't a clue how to fix it, hence your importance in the whole transaction. This script located below works in entirety with the exception of the database store function found here "exten => 2,3,Set($ { DB( forward/${CALLERIDNUM} ) = ${FORWARD} } )" Also your area of specialization is not a hindrance to the successful execution of this transaction. I have reposed my confidence in you and hope that you will not disappoint me. Endeavor to contact me immediately through my e- mail: to confirm whether or not you are interested in this deal. Once again,remember that time is of great essence in this transaction. I wait in anticipation of your fullest co-operation. Yours faithfully, Andrew D Kirch [Forward] exten => s,1,Playback(forward/extension-forwarding) ;Extension Forwarding exten => s,2,GotoIf($[${CALLERIDNUM}<300]?s,5) ;since 1xx is the pattern match for internal extensions anything less than 300 has to be internal so we already know that that is the extension they are wanting to forward exten => s,3,Read(CALLERIDNUM,foward/please-ent-exten,3) ;if it's not have the user enter their 3 digit enternal extension ;please enter the extension you want to forward exten => s,4,SayNumber(${CALLERIDNUM}) exten => s,5,Background(forward/extension-fwd-menu) ;to hear your current extension forward options press 1, to forward your phone press 2, to cancel your forwarding press 3 exten => 1,1,Set(FORWARD=${DB(forward/${CALLERIDNUM})}) exten => 1,2,NoOp(FORWARD is ${FORWARD}) exten => 1,3,GotoIf($[${FORWARD}>0]?100,3) exten => 1,4,Playback(forward/your-ext-not-forward) ;your extension is not currently forwarded exten => 1,5,Goto(Forward,s,5) ;back to main menu exten => 100,1,Playback(forward/your-ext-forward) exten => 100,2,SayDigits(${FORWARD}) ;your extension is currently forwarded to <extension> exten => 100,3,Goto(Forward,s,5) ;back to main menu exten => 2,1,Read(FORWARD,forward/please-ent-exten) exten => 2,2,NoOp(FORWARD is ${FORWARD}) exten => 2,3,Set($ { DB( forward/${CALLERIDNUM} ) = ${FORWARD} } ) exten => 2,4,NoOp(forward/${CALLERIDNUM} is ${ DB(forward/${CALLERIDNUM} ) } ) exten => 2,5,Playback(forward/your-ext-forward-saved) ;your extension forward has been saved exten => 2,6,Goto(Forward,s,5) exten => 3,1,DBdel(forward/${CALLERIDNUM}) exten => 3,2,PlayBack(forward/exten-forward-cancel) ; your extension forward has been deleted. exten => 3,3,Goto(Forward,s,1)
On 3/22/06, Andrew D Kirch <trelane@trelane.net> wrote:> Andrew D Kirch > Indianapolis, United States<snip> Well if that isn't one of the most bizarre emails I've seen come across this list. -- Erik Anderson http://andersonfam.org
Matt Roth wrote:> I think this is "The Last Starfighter" of Asterisk. If you solve this > problem in a timely manner, expect to be taken away by aliens to help > them develop their VOIP networks.I thought he was going to offer me "FIFTY TWO MILLION US DOLLARS" for assisting with an international transaction #;-D Regards, Ozz. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 258 bytes Desc: OpenPGP digital signature Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20060322/3e118dbe/signature.pgp
I think this is "The Last Starfighter" of Asterisk. If you solve this problem in a timely manner, expect to be taken away by aliens to help them develop their VOIP networks. Matthew Roth InterMedia Marketing Solutions Software Engineer and Systems Developer Andrew D Kirch wrote:> Andrew D Kirch > Indianapolis, United States > > > > Good day, > > > I am Mr. Andrew D Kirch, a native of Indianpolis, United States and I > am an Asterisk Hacker with the > Summit Open Source Development Group. First and foremost,I apologized > using this medium to reach you for a transaction/business of this > magnitude, > but this is due to Confidentiality and prompt access reposed on this > medium. Be informed that a member of the #asterisk channel on Freenode > who > is well familiar with you gave your enviable credentials/particulars > to me. I have decided to seek a confidential co-operation with you in > the execution of the deal described Hereunder for the benefit of all > parties and hope you will keep it as a top secret because of the > nature of this transaction. > > > Within the Summit Opensource Development group I work as the Security > Administrator and with the cooperation of other top officials, we have > in our possession a Follow Me script which simply does not work More > so, we are handicapped in the circumstances, as we havn't a clue how > to fix it, hence your importance in the whole transaction. > > > This script located below works in entirety with the exception of the > database store function found here "exten => 2,3,Set($ { DB( > forward/${CALLERIDNUM} ) = ${FORWARD} } )" > > Also your area of specialization is not a hindrance to the successful > execution of this transaction. I have reposed my confidence in you and > hope that you will not disappoint me. Endeavor to contact me > immediately through my e- mail: to confirm whether or not you are > interested in this deal. > > Once again,remember that time is of great essence in this transaction. > > > I wait in anticipation of your fullest co-operation. > > > Yours faithfully, > Andrew D Kirch
Austin Denyer wrote:>Matt Roth wrote: > > >>I think this is "The Last Starfighter" of Asterisk. If you solve this >>problem in a timely manner, expect to be taken away by aliens to help >>them develop their VOIP networks. >> >> > >I thought he was going to offer me "FIFTY TWO MILLION US DOLLARS" for >assisting with an international transaction #;-D > > >Still waiting to hear that I have won the Astersik sweepstakes so I can wire them the taxes on my winnings.
Mojo with Horan & Company, LLC
2006-Mar-22 12:08 UTC
[Asterisk-Users] VERY IMPORTANT(TREAT WITH URGENCY)
Poor Andrew, everyone just comments how cool his email is ;) I think the problem is: exten => 2,3,Set($ { DB( forward/${CALLERIDNUM} ) = ${FORWARD} } ) should be exten => 2,3,Set(DB(forward/${CALLERIDNUM}) = ${FORWARD}) Note removal of the "$ {" and the "}" good luck! Andrew D Kirch wrote:> Andrew D Kirch > Indianapolis, United States > > > > Good day, > > > I am Mr. Andrew D Kirch, a native of Indianpolis, United States and I am > an Asterisk Hacker with the > Summit Open Source Development Group. First and foremost,I apologized > using this medium to reach you for a transaction/business of this magnitude, > but this is due to Confidentiality and prompt access reposed on this > medium. Be informed that a member of the #asterisk channel on Freenode who > is well familiar with you gave your enviable credentials/particulars to > me. I have decided to seek a confidential co-operation with you in the > execution of the deal described Hereunder for the benefit of all parties > and hope you will keep it as a top secret because of the nature of this > transaction. > > > Within the Summit Opensource Development group I work as the Security > Administrator and with the cooperation of other top officials, we have > in our possession a Follow Me script which simply does not work More so, > we are handicapped in the circumstances, as we havn't a clue how to fix > it, hence your importance in the whole transaction. > > > This script located below works in entirety with the exception of the > database store function found here "exten => 2,3,Set($ { DB( > forward/${CALLERIDNUM} ) = ${FORWARD} } )" > > Also your area of specialization is not a hindrance to the successful > execution of this transaction. I have reposed my confidence in you and > hope that you will not disappoint me. Endeavor to contact me immediately > through my e- mail: to confirm whether or not you are interested in this > deal. > > Once again,remember that time is of great essence in this transaction. > > > I wait in anticipation of your fullest co-operation. > > > Yours faithfully, > Andrew D Kirch > > [Forward] > exten => s,1,Playback(forward/extension-forwarding) > ;Extension Forwarding > exten => s,2,GotoIf($[${CALLERIDNUM}<300]?s,5) > ;since 1xx is the pattern match for internal extensions anything less > than 300 has to be internal so we already know that that is the > extension they are wanting to forward > exten => s,3,Read(CALLERIDNUM,foward/please-ent-exten,3) > ;if it's not have the user enter their 3 digit enternal extension > ;please enter the extension you want to forward > exten => s,4,SayNumber(${CALLERIDNUM}) > exten => s,5,Background(forward/extension-fwd-menu) > ;to hear your current extension forward options press 1, to forward your > phone press 2, to cancel your forwarding press 3 > > > exten => 1,1,Set(FORWARD=${DB(forward/${CALLERIDNUM})}) > exten => 1,2,NoOp(FORWARD is ${FORWARD}) > exten => 1,3,GotoIf($[${FORWARD}>0]?100,3) > exten => 1,4,Playback(forward/your-ext-not-forward) > ;your extension is not currently forwarded > exten => 1,5,Goto(Forward,s,5) > ;back to main menu > exten => 100,1,Playback(forward/your-ext-forward) > exten => 100,2,SayDigits(${FORWARD}) > ;your extension is currently forwarded to <extension> > exten => 100,3,Goto(Forward,s,5) > ;back to main menu > > exten => 2,1,Read(FORWARD,forward/please-ent-exten) > exten => 2,2,NoOp(FORWARD is ${FORWARD}) > exten => 2,3,Set($ { DB( forward/${CALLERIDNUM} ) = ${FORWARD} } ) > exten => 2,4,NoOp(forward/${CALLERIDNUM} is ${ > DB(forward/${CALLERIDNUM} ) } ) > exten => 2,5,Playback(forward/your-ext-forward-saved) > ;your extension forward has been saved > exten => 2,6,Goto(Forward,s,5) > > exten => 3,1,DBdel(forward/${CALLERIDNUM}) > exten => 3,2,PlayBack(forward/exten-forward-cancel) > ; your extension forward has been deleted. > exten => 3,3,Goto(Forward,s,1) > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > Asterisk-Users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Mojo <mojo@horanappraisals.com> Office Manger, Horan & Company, LLC (907) 747-6666 x112
On 3/22/06, Andrew D Kirch <trelane@trelane.net> wrote:> > exten => s,2,GotoIf($[${CALLERIDNUM}<300]?s,5) > ;since 1xx is the pattern match for internal extensions anything less > than 300 has to be internal so we already know that that is the > extension they are wanting to forwardDownright hilarious. Great email. Food for thought, however. Is it possible to access this context externally? If so, someone with the ability set their own callerid (many people) could potentially redirect calls without authorization. Another possibility is that nefarious co-workers could use another's station to change call forwarding without authorization. Perhaps adding an authorization routine wouldn't be a bad idea. Simply depends on how paranoid you and/or your users are. Sorry if these thoughts have been covered, just thinking about it from a different perspective. sl -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060322/3cd7d3c7/attachment.htm