Skip to content

Instantly share code, notes, and snippets.

@AndreiCherniaev
AndreiCherniaev / safe_dd.sh
Last active October 6, 2023 11:16
safe dd check does usb drive size == 32GB and after dd .img
# never use this if you have 32 GB hard drive
# never use this if you mount 2 or more 32GB usb flash card in one time
varvar=`blockdev --getsize64 /dev/sda`
# 32GB == 30765219840
if [ $varvar -eq 30765219840 ]; then
dd if=disk.img of=/dev/sda bs=4M conv=fsync status=progress
fi
@rasika
rasika / squid.conf
Last active March 3, 2025 13:42
Minimal squid.conf for ssl bump and https caching
acl intermediate_fetching transaction_initiator certificate-fetching
http_access allow intermediate_fetching
#
# Recommended minimum configuration:
#
# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 0.0.0.1-0.255.255.255 # RFC 1122 "this" network (LAN)
@rajibdpi
rajibdpi / Sublime Text 3 (Build 3211) license key.md
Last active February 28, 2025 01:04
Download Sublime Text 3 (Build 3211) 100% working License Key.
@aqualad
aqualad / BlockPS4Updates
Created May 20, 2021 19:08
pi hole adlist to block ps4 updates
# Exploited PS4 Blocklist (https://gbatemp.net/threads/aio-ps4-exploit-guide.497858/)
#[community.playstation.net]
asm.np.community.playstation.net
ps4.updptl.np.community.playstation.net
ps4.updptl.sp-int.community.playstation.net
ps4updptl.eu.np.community.playstation.net
ps4updptl.jp.np.community.playstation.net
ps4updptl.jp.sp-int.community.playstation.net
ps4updptl.uk.np.community.playstation.net
@avoidik
avoidik / README.md
Last active June 30, 2024 17:29
Build Squid on Raspberry Pi with enabled SSL, SARG, SquidClamAV

Build Squid on Raspberry Pi with enabled SSL, optionally realtime SARG statistics and SquidClamAV

This is the short guide about how to recompile/enable --enable-ssl option in a Squid caching proxy server. The --enable-ssl option turned off by default, to be able to use SslBump feature we have to turn it on. To my own surprise Squid was compiled not only without --enable-ssl flag, but also with GnuTLS due to GPL legal reasons.

Optionally enable:

Squid

@d1vyank
d1vyank / resolvers.txt
Created October 6, 2020 06:52
Public encrypted DNS (DoT and DoH) resolvers
dot://dns.adguard.com
dot://dns-family.adguard.com
dot://dns-unfiltered.adguard.com
dot://family-filter-dns.cleanbrowsing.org
dot://adult-filter-dns.cleanbrowsing.org
dot://security-filter-dns.cleanbrowsing.org
dot://one.one.one.one
dot://1dot1dot1dot1.cloudflare-dns.com
dot://dns64.cloudflare-dns.com
dot://dns.google
forward-zone:
name: "."
# forward-addr: 1.1.1.1@853#cloudflare-dns.com
# forward-addr: 1.0.0.1@853#cloudflare-dns.com
# forward-addr: 2606:4700:4700::1111@853#cloudflare-dns.com
# forward-addr: 2606:4700:4700::1001@853#cloudflare-dns.com
forward-addr: 2001:41d0:302:2200::180@853#dot.bortzmeyer.fr
forward-addr: 193.70.85.11@853#dot.bortzmeyer.fr
forward-addr: 91.239.100.100@853#anycast.censurfridns.dk
@0x48piraj
0x48piraj / stream.py
Created April 6, 2020 00:42
Video Streaming Raspberry Pi Camera Via Python Sockets & VLC Media Player
import socket
import subprocess
# Start a socket listening for connections on 0.0.0.0:8000 (0.0.0.0 means all interfaces)
server_socket = socket.socket()
server_socket.bind(('0.0.0.0', 8000))
server_socket.listen(0)
# Accept a single connection and make a file-like object out of it
connection = server_socket.accept()[0].makefile('rb')
@lackdaz
lackdaz / install-node-yarn-arm.sh
Last active January 9, 2022 13:44
Installs node and yarn on an arm64 (armv8) OS (Jetson Nano)
#!/bin/bash
set -e
## Check for versions compiled with ARM at http://nodejs.org/dist/
## Inspired by http://oskarhane.com/raspberry-pi-install-node-js-and-npm/
## Fill in the Node Version here:
##########################################################################
NODE_VERSION="v12.16.1"
##########################################################################
@diyfr
diyfr / docker-compose.yml
Last active December 12, 2024 08:29
Basic secured configuration for Traefik V2.X
version: '3.5'
services:
proxy:
image: traefik:v2.1
# The official v2.0 Traefik docker image
container_name: proxy
networks:
- traefik
ports: