Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ######################################################################
- #Copyright (C) 2025 Kris Occhipinti
- #https://filmsbykris.com
- #This program is free software: you can redistribute it and/or modify
- #it under the terms of the GNU General Public License as published by
- #the Free Software Foundation version 3 of the License.
- #This program is distributed in the hope that it will be useful,
- #but WITHOUT ANY WARRANTY; without even the implied warranty of
- #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- #GNU General Public License for more details.
- #You should have received a copy of the GNU General Public License
- #along with this program. If not, see <http://www.gnu.org/licenses/>.
- ######################################################################
- random="$(head -c 16 /dev/urandom | tr -dc a-zA-Z0-9 | head -c 50)"
- user="${random}@yahoo.com"
- curl 'https://ajax.streamable.com/users' \
- -H 'accept: */*' \
- -H 'accept-language: en-US,en;q=0.7' \
- -H 'cache-control: no-cache' \
- -H 'content-type: application/json' \
- -H 'origin: https://streamable.com' \
- -H 'pragma: no-cache' \
- -H 'priority: u=1, i' \
- -H 'referer: https://streamable.com/' \
- -H 'sec-ch-ua: "Brave";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \
- -H 'sec-ch-ua-mobile: ?0' \
- -H 'sec-ch-ua-platform: "Linux"' \
- -H 'sec-fetch-dest: empty' \
- -H 'sec-fetch-mode: cors' \
- -H 'sec-fetch-site: same-site' \
- -H 'sec-gpc: 1' \
- -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \
- --data-raw "{\"username\":\"$user\",\"password\":\"mypassword\",\"email\":\"$user\",\"verification_redirect\":\"https://streamable.com?alert=verified\"}"
- echo -e "\nCreated account for '$user' with password 'mypassword'"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement