Advertisement
metalx1000

Create a New Account for Uploading Videos

Apr 9th, 2025 (edited)
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.80 KB | None | 0 0
  1. #!/bin/bash
  2. ######################################################################
  3. #Copyright (C) 2025  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. random="$(head -c 16 /dev/urandom | tr -dc a-zA-Z0-9 | head -c 50)"
  20. user="${random}@yahoo.com"
  21.  
  22. curl 'https://ajax.streamable.com/users' \
  23.   -H 'accept: */*' \
  24.   -H 'accept-language: en-US,en;q=0.7' \
  25.   -H 'cache-control: no-cache' \
  26.   -H 'content-type: application/json' \
  27.   -H 'origin: https://streamable.com' \
  28.   -H 'pragma: no-cache' \
  29.   -H 'priority: u=1, i' \
  30.   -H 'referer: https://streamable.com/' \
  31.   -H 'sec-ch-ua: "Brave";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \
  32.   -H 'sec-ch-ua-mobile: ?0' \
  33.   -H 'sec-ch-ua-platform: "Linux"' \
  34.   -H 'sec-fetch-dest: empty' \
  35.   -H 'sec-fetch-mode: cors' \
  36.   -H 'sec-fetch-site: same-site' \
  37.   -H 'sec-gpc: 1' \
  38.   -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \
  39.   --data-raw "{\"username\":\"$user\",\"password\":\"mypassword\",\"email\":\"$user\",\"verification_redirect\":\"https://streamable.com?alert=verified\"}"
  40.  
  41. echo -e "\nCreated account for '$user' with password 'mypassword'"
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement