Skip to content

Instantly share code, notes, and snippets.

View Zero-Sploit's full-sized avatar

ZeroSploit Zero-Sploit

View GitHub Profile
@Zero-Sploit
Zero-Sploit / microsoft-dns-block.txt
Created April 20, 2025 01:43 — forked from VirtuBox/microsoft-dns-block.txt
Blocking Microsoft DNS hosts file
0.0.0.0 feedback.microsoft-hohm.com
0.0.0.0 search.msn.com
0.0.0.0 a.ads1.msn.com
0.0.0.0 a.ads2.msn.com
0.0.0.0 a.rad.msn.com
0.0.0.0 ac3.msn.com
0.0.0.0 ads.msn.com
0.0.0.0 ads1.msn.com
0.0.0.0 b.ads1.msn.com
0.0.0.0 b.rad.msn.com
@Zero-Sploit
Zero-Sploit / create_sub.py
Created May 18, 2024 13:42 — forked from jinschoi/create_sub.py
Python script to generate Flipper RAW .sub files from OOK bitstreams
#!/usr/bin/env python3
from typing import Iterable, Union, Any
# freq: frequency in Hz
# zerolen: length of space bit in μs
# onelen: length of mark bit in μs
# repeats: number of times to repeat sequence
# pause: time to wait in μs between sequences
# bits: string of ones and zeros to represent sequence
@Zero-Sploit
Zero-Sploit / github-troll.md
Created October 27, 2020 17:55 — forked from lrvick/github-troll.md
Trolling Github's DMCA repo with their own security flaws.
@Zero-Sploit
Zero-Sploit / snake_game.py
Created August 19, 2020 15:01 — forked from wynand1004/snake_game.py
A Simple Snake Game made in Python 3
# Simple Snake Game in Python 3 for Beginners
# By @TokyoEdTech
import turtle
import time
import random
delay = 0.1
# Score
@Zero-Sploit
Zero-Sploit / .bashrc
Last active August 15, 2020 00:36
Parrot Os bash theme for ubuntu
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace