-
Notifications
You must be signed in to change notification settings - Fork 2
/
streamhunter.py
53 lines (43 loc) · 1.33 KB
/
streamhunter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/python
# coding=utf-8
# Author github.com/Eltotiz
import os
from colorama import Fore, init, Style
import requests
import time
import random
import string
def clear():
if os.name == "posix":
os.system ("clear")
elif os.name == ("ce", "nt", "dos"):
os.system ("cls")
clear()
print()
print("""
_____ _ _____ _
| __| |_ ___ ___ ___ _____| | |_ _ ___| |_ ___ ___
|__ | _| _| -_| .'| | | | | | _| -_| _|
|_____|_| |_| |___|__,|_|_|_|__|__|___|_|_|_| |___|_|
Created by github.com/Eltotiz
""")
input(" [+] Press enter to start!")
print()
print(" [+] Searching videos...")
print()
print()
value = 1
while value <= 1000000000000000000000000000000000000000:
value += 1
text = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(6))
minus = text.lower()
time.sleep(1)
src = requests.get(f'https://streamable.com/{minus}')
try:
if src.status_code == 404:
Lol = "Hello :)"
else:
print(Fore.GREEN + f' [+] https://streamable.com/{minus} VALID LINK')
except Exception:
print()
print(" [?] There was an error connecting to stremeable.com ...")