Skip to content

Instantly share code, notes, and snippets.

View origamiofficial's full-sized avatar
🎯
Focusing

Origami Official origamiofficial

🎯
Focusing
  • R Lab inc.
  • Bangladesh
  • 08:34 (UTC +06:00)
View GitHub Profile
@origamiofficial
origamiofficial / UnboundRootHintsUpdate.sh
Last active August 5, 2022 11:01
Unbound root hints automatically updater script. After updating the root.hints file, this script will restart Unbound & Pi-hole for smoother operations. Add this cron entry to run the script at 3 AM on the 1st day of every month: "0 3 1 */1 * root /bin/bash /This/Scripts/Location/UnboundRootHintsUpdate.sh"
#!/bin/sh
RootHintsLocation="/var/lib/unbound/root.hints"
# Unbound Root.hints Update
/usr/bin/wget -O "$RootHintsLocation" https://www.internic.net/domain/named.root >/dev/null 2>&1
service unbound restart && pihole restartdns >/dev/null 2>&1
exit
@origamiofficial
origamiofficial / Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser).user.js
Last active May 1, 2024 06:20
Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser) by Md ubeadulla | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey
// ==UserScript==
// @name Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser)
// @namespace Hcaptcha Solver
// @version 10.0
// @description Hcaptcha Solver in Browser | Automatically solves Hcaptcha in browser
// @author Md ubeadulla
// @match https://*.hcaptcha.com/*hcaptcha-challenge*
// @match https://*.hcaptcha.com/*checkbox*
// @grant GM_xmlhttpRequest
// @grant GM_setValue
@origamiofficial
origamiofficial / Recaptcha Solver (Automatically solves Recaptcha in browser).user.js
Created March 25, 2022 04:42
Recaptcha Solver in Browser | Automatically solves Recaptcha in browser by engageub | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey
// ==UserScript==
// @name Recaptcha Solver (Automatically solves Recaptcha in browser)
// @namespace Recaptcha Solver
// @version 2.1
// @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser
// @author engageub
// @match *://*/recaptcha/*
// @connect engageub.pythonanywhere.com
// @connect engageub1.pythonanywhere.com
// @grant GM_xmlhttpRequest
@origamiofficial
origamiofficial / ngrok-plex.py
Last active April 7, 2022 00:15 — forked from Rihcus/ngrok-plex.py
Run Plex Through Ngrok With SSL via DuckDNS to Bypass CGNAT or Double-NAT Scenario
#!/usr/bin/python3
from plexapi.server import PlexServer
import sys
import json
import requests
import time
import socket
# please make sure to install PlexAPI via pip, "pip install PlexAPI"