File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <h1 >Stream Catcher</h1 >
2+ <h3 align =" center " >StreamHunter is a program that searches streamable videos automatically using brute force.</h3 >
3+ </div >
4+
5+ #
6+ <br >
7+
8+ # Requirements
9+ - Python 3.X
10+ - Colorama and Requests
11+
Original file line number Diff line number Diff line change 1+ requests == 2.28.2
2+ colorama == 0.4.6
Original file line number Diff line number Diff line change 1+ #!/usr/bin/python
2+ # coding=utf-8
3+ # Author github.com/Eltotiz
4+
5+ import os
6+ from colorama import Fore , init , Style
7+ import requests
8+ import time
9+ import random
10+ import string
11+
12+
13+ def clear ():
14+ if os .name == "posix" :
15+ os .system ("clear" )
16+ elif os .name == ("ce" , "nt" , "dos" ):
17+ os .system ("cls" )
18+
19+ clear ()
20+
21+
22+ print ()
23+ print ("""
24+ _____ _ _____ _
25+ | __| |_ ___ ___ ___ _____| | |_ _ ___| |_ ___ ___
26+ |__ | _| _| -_| .'| | | | | | _| -_| _|
27+ |_____|_| |_| |___|__,|_|_|_|__|__|___|_|_|_| |___|_|
28+
29+ Created by github.com/Eltotiz
30+ """ )
31+ input (" [+] Press enter to start!" )
32+ print ()
33+ print (" [+] Searching videos..." )
34+ print ()
35+ print ()
36+
37+ value = 1
38+
39+ while value <= 1000000000000000000000000000000000000000 :
40+ value += 1
41+ text = '' .join (random .choice (string .ascii_letters + string .digits ) for _ in range (6 ))
42+ minus = text .lower ()
43+ time .sleep (1 )
44+ src = requests .get (f'https://streamable.com/{ minus } ' )
45+ try :
46+ if src .status_code == 404 :
47+ Lol = "Hello :)"
48+ else :
49+ print (Fore .GREEN + f' [+] https://streamable.com/{ minus } VALID LINK' )
50+
51+ except Exception :
52+ print ()
53+ print (" [?] There was an error connecting to stremeable.com ..." )
You can’t perform that action at this time.
0 commit comments