Newer
Older
GoSMS / SMSResponse.php
root on 18 May 2019 1 KB Initial commit
  1. <?php
  2. include('/opt/GoSMS/config.php');
  3.  
  4. if($_REQUEST['SmsStatus'] == "delivered" && isset($_REQUEST['To'])){
  5. $phoneNo = $_REQUEST['To'];
  6. echo "[?] Searching for running campaigns\n";
  7. $curl = new curl();
  8. $curl->url = "$GophishAPIURL/api/campaigns/?api_key=$key";
  9. $list = $curl->curlQuery();
  10. if(isset($list->message) && $list->message == "Invalid API Key"){
  11. echo "[!] Invalid API key\n";
  12. exit(0);
  13. }else{
  14. foreach($list as $id){
  15. if($id['status'] == "In progress"){
  16. echo "[+] Found: ID: ".$id['id']." Name: ".$id['name']."\n";
  17. foreach($id['results'] as $victim){
  18. echo "[?] Searching for victim with $phoneNo\n";
  19. if($victim['email'] == "$phoneNo@gophish.sms"){
  20. echo "[+] Found RID: ".$victim['id']."\n";
  21. echo "[!] Grabbing tracking image\n";
  22. $curl->url = "$PhishURL/track?rid=".$victim['id'];
  23. $list = $curl->curlQuery();
  24. }
  25. }
  26. }
  27. }
  28. }
  29. exit(0);
  30. }
  31.  
  32. class curl {
  33. public function curlQuery() {
  34. $ch = curl_init();
  35.  
  36. curl_setopt($ch, CURLOPT_URL, $this->url);
  37. curl_setopt($ch, CURLOPT_HEADER, 0);
  38. curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
  39. curl_setopt($ch, CURLOPT_RETURNTRANSFER, True);
  40. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  41. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  42. //curl_setopt($ch, CURLOPT_VERBOSE, true); // verbose mode for debugging
  43.  
  44. $json = curl_exec($ch);
  45.  
  46. curl_close($ch);
  47.  
  48. $array = json_decode($json, true);
  49. return $array;
  50. }
  51. }
  52.  
  53. ?>