Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
import requests
import time

# អាសយដ្ឋានវេបសាយដែល Bot ត្រូវទៅទាញយក Views
url = "https://zefoy.com/"

# ព័ត៌មាន Headers ដើម្បីបន្លំថាជា Browser មនុស្សប្រើ
headers = {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"origin": "https://zefoy.com",
"referer": "https://zefoy.com/"
}

def send_views(video_url):
# ក្នុងដំណាក់កាលនេះ កូដត្រូវដោះស្រាយ Captcha ជាមុនសិន
# បន្ទាប់មកទើបផ្ញើ Link វីដេអូទៅកាន់ Server
payload = {
"url": video_url,
"service": "views" # ឬ "likes", "shares"
}


try:
response = requests.post(url, data=payload, headers=headers)
if response.status_code == 200:
print("Successfully sent request!")
else:
print("Failed to send request.")
except Exception as e:
print(f"Error: {e}")

# ដាក់ Link វីដេអូ TikTok របស់អ្នកនៅទីនេះ
my_video = "https://www.tiktok.com/@user/video/123456789"
send_views(my_video)
Instead of unpatching every 2 days, I made a course to teach you guys exactly how i made zefoy bot and much much more and also 5+ years of reverse engineering knowledge:

https://whop.com/reverser-academy
Expand Down