-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtwilio1.php
39 lines (29 loc) · 1.16 KB
/
twilio1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// if you call a number that goes to this script, it calls another
// number and records the whole process
// NOTE: PHP is probably not necessary, but its a nice place to put
// comments without screwing up XML, may come in useful later, and
// means I can use a non-XML extension
// initial test: tellme (1-800-555-TELL) + time temp
// I can get twilio numbers easily, first test is to +1 940-468-3927
// verified scammers and the recordings that verify them:
// 12147029034 (verified by code words + gmail)
// Verification procedure:
//
// find email with phone number
// tell sender i am sending code words by phone
// reset number below to scammer phone number
// mirror file to live site
// determine code words (randomly)
// http://1f59d65c666c69bf8bc52bf5e4c82e27.scowl.db.94y.info may help
// note down code words for number to see if i get them back
// prep mac speech code to read form letter
// call with code words [repeat twice if possible]
header("Content-type: application/xml");
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<Response>
<Dial record="true">
<Number>+16462260706</Number>
</Dial>
</Response>