Skip to content

Commit 7655e52

Browse files
Added Stram Catcher<
1 parent 4a008a1 commit 7655e52

3 files changed

Lines changed: 66 additions & 0 deletions

File tree

StreamCatcher/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+

StreamCatcher/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requests==2.28.2
2+
colorama==0.4.6

StreamCatcher/streamhunter.py

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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 ...")

0 commit comments

Comments
 (0)