Advertisement
metalx1000

Temporary sms phone number messages burner Text Messages

Aug 2nd, 2023
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. #!/bin/bash
  2. ######################################################################
  3. #Copyright (C) 2023 Kris Occhipinti
  4. #https://filmsbykris.com
  5.  
  6. #This program is free software: you can redistribute it and/or modify
  7. #it under the terms of the GNU General Public License as published by
  8. #the Free Software Foundation version 3 of the License.
  9.  
  10. #This program is distributed in the hope that it will be useful,
  11. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. #GNU General Public License for more details.
  14.  
  15. #You should have received a copy of the GNU General Public License
  16. #along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. ######################################################################
  18.  
  19. domain="https://receive-smss.com"
  20.  
  21. function get_number(){
  22. wget -qO- "${domain}"|\
  23. grep number-boxes-itemm-number|\
  24. grep '+'|\
  25. cut -d\+ -f2|cut -d\< -f1|\
  26. fzf --prompt="Select a Number: "
  27. }
  28.  
  29. function get_messages(){
  30. wget -qO- "${domain}/sms/${number}/"|\
  31. grep -A1 wr3pc32233el1878|\
  32. sed -e 's/<[^>]*>//g'|\
  33. tr -d "\n"|sed 's/--/\n/g'|\
  34. grep ago -B1
  35. }
  36.  
  37. number="$(get_number)"
  38. [[ $number ]] || exit
  39.  
  40. echo "$number"|xclip
  41. echo "Number Selected $number and added to clipboard."
  42. read -p "Press Enter to Continue..."
  43.  
  44. get_messages|less
  45.  
Tags: sms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement