Skip to content

Instantly share code, notes, and snippets.

View kaydarla's full-sized avatar

Rakesh Kadarla kaydarla

View GitHub Profile
@kaydarla
kaydarla / voice_broadcasting.sh
Last active December 20, 2015 01:59
Sound Prank
#!/bin/bash
AUTH_ID="Replace with your auth_id"
AUTH_TOKEN="Replace with your auth_token"
SOUND_URL="Enter your sound file URL here"
curl -XPOST \
-u ${AUTH_ID}:${AUTH_TOKEN} \
-H "Content-Type: application/json" \
@kaydarla
kaydarla / bridge_calls.sh
Last active February 10, 2024 18:43
Spoof Call
#!/bin/bash
AUTH_ID="Replace with your auth_id"
AUTH_TOKEN="Replace with your auth_token"
# Use a phone number in E164 format
SPOOF_CALLER_ID="Set a CLID here"
YOUR_PHONE_NUMBER="Set your phone number"
NUMBER_TO_CALL="Set the phone number to call"
@kaydarla
kaydarla / bridge_calls2.sh
Last active December 20, 2015 01:49
Operator Prank
#!/bin/bash
AUTH_ID="Replace with your auth_id"
AUTH_TOKEN="Replace with your auth_token"
SPOOF_CALLER_ID1="Replace with your caller_id"
FIRST_PHONE_NUMBER="Replace with a phone number"
SPOOF_CALLER_ID2="Replace with your caller_id"
SECOND_PHONE_NUMBER="Replace with a phone number"
import os
import os.path
from flask import Flask, request, make_response
import plivo
from plivo import XML
app = Flask(__name__)
def get_request_params(param):