Skip to content

Instantly share code, notes, and snippets.

View leober-ramos33's full-sized avatar
🕐
Hacking the university

Leober Ramos leober-ramos33

🕐
Hacking the university
View GitHub Profile
ZTE codes:
*#06# - IMEI information
*983*7# - Factory code information
*983*07# - Test menu
*983*21# - ?
*983*21# - Barcode information
*983*25# - Battery information
*983*31# - OLED test
*983*32# - Firmware version
@leober-ramos33
leober-ramos33 / hosts.txt
Last active August 30, 2020 06:43
My personal hosts.txt for Block Ads, Malware, Malversiting, Spam, etc.
jsecoin.com
addthis.com
s1.addthis.com
s2.addthis.com
s3.addthis.com
s4.addthis.com
s5.addthis.com
s6.addthis.com
s7.addthis.com
addthiscdn.com
@leober-ramos33
leober-ramos33 / adblock.sh
Last active July 30, 2023 15:33
An OpenWRT DNS Blocker
#!/bin/sh
ONLY_WIRELESS="N"
IPV6="N"
SSL="N"
TRANS="N"
EXEMPT="N"
START_RANGE="192.168.1.0"
END_RANGE="192.168.1.255"
ENDPOINT_IP4="0.0.0.0"
ENDPOINT_IP6="::"
@leober-ramos33
leober-ramos33 / manga.sh
Last active July 31, 2019 02:41
A script for download manga from submanga.online
# manga.sh
# A script for download manga from submanga.online
# By: @yonaikerlol
if [ -z "$1" ]; then
echo "[Error] Required a manga"
exit 1
fi
if ! command -v curl &> /dev/null; then
@leober-ramos33
leober-ramos33 / youtube-block-ads.txt
Last active May 9, 2024 02:46
Block Ads in YouTube (uBlock Origin)
youtube.com##.ad-container
youtube.com###player-ads
youtube.com##.ytp-ad-overlay-container
youtube.com#@#.overlay-ads
youtube.com#@#.ddb
youtube.com###feed-pyv-container
youtube.com###feedmodule-PRO
youtube.com###homepage-chrome-side-promo
youtube.com###merch-shelf
youtube.com###pla-shelf
@leober-ramos33
leober-ramos33 / hexfile.js
Last active March 11, 2019 18:58
Hexadecimal File API (JavaScript)
/**
* hexfile.js by Marc - https://github.com/marcrobledo
*
* https://github.com/marcrobledo/acnl-editor
*/
import { saveAs } from 'file-saver'
class HexFile {
/**