2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-23 19:07:33 +00:00

Merge pull request #81 from xer0k00l/removed_bug_of_smack_my_bitch_up

removed .mess bug of smack_my_bitch_up
This commit is contained in:
Nihad Abbasov 2015-12-02 01:08:58 +04:00
commit 7dfbc71b59

View File

@ -31,7 +31,7 @@ func main(){
response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output() response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output()
if(err != nil){ if(err != nil){
fmt.Printf("Failed to send SMS: ",err.mess) fmt.Printf("Failed to send SMS: ",err)
return return
} }