Skip to content

Instantly share code, notes, and snippets.

View kingjay66's full-sized avatar

George T Washington kingjay66

  • Google Inc
  • Virginia
View GitHub Profile
@kingjay66
kingjay66 / proxy.go
Created December 18, 2024 22:17 — forked from jan-bar/proxy.go
http代理的内网穿透
package main
import (
"bytes"
"context"
"crypto/tls"
"flag"
"fmt"
"io"
"log"
@kingjay66
kingjay66 / README.markdown
Created August 29, 2024 23:05 — forked from alloy/README.markdown
Fix Apple’s broken 10.9.0-10.9.2 default Ruby gems installation.

On Mac OS X 10.9.0 through 10.9.2, Apple shipped a Ruby and RubyGems installation that was missing specifications for the libraries that are included with Ruby by default, which leads to the user having to install a gem like the JSON gem even though the user already has that library installed.

(This is even more problematic if you want users to be able to install gems without having to have a properly configured compiler toolchain. I.e. where you do not want users to have to install gems with C extensions, such as the JSON gem.)

This was fixed starting from Mac OS X 10.9.3.

What it should look like

The following libraries are installed by default and should have their specifications installed:

@kingjay66
kingjay66 / osquery-compromised-mega-chrome-ext.sql
Created March 30, 2024 12:47 — forked from defensivedepth/osquery-compromised-mega-chrome-ext.sql
osquery query to find systems that have the compromised Mega Chrome Extension installed
-- Joins chrome_extension and users table, looks for Mega chrome identifier and specific version number; should also consider running without the version number, to find all users with Mega extension installed and then get it removed prior to it updating.
SELECT users.username,chrome_extensions.name,chrome_extensions.version,chrome_extensions.path FROM chrome_extensions JOIN users ON users.uid = chrome_extensions.uid where chrome_extensions.identifier = 'bigefpfhnfcobdlfbedofhhaibnlghod' and chrome_extensions.version = '3.39.4';
@kingjay66
kingjay66 / netgear-private-key-disclosure.md
Created December 9, 2023 03:10 — forked from nstarke/netgear-private-key-disclosure.md
Netgear TLS Private Key Disclosure through Device Firmware Images

Netgear Signed TLS Cert Private Key Disclosure

Overview

There are at least two valid, signed TLS certificates that are bundled with publicly available Netgear device firmware.

These certificates are trusted by browsers on all platforms, but will surely be added to revocation lists shortly.

The firmware images that contained these certificates along with their private keys were publicly available for download through Netgear's support website, without authentication; thus anyone in the world could have retrieved these keys.

@kingjay66
kingjay66 / ngrok-selfhosting-setup.md
Created March 30, 2023 00:00 — forked from lyoshenka/ngrok-selfhosting-setup.md
How to setup Ngrok with a self-signed SSL cert

Intro

The plan is to create a pair of executables (ngrok and ngrokd) that are connected with a self-signed SSL cert. Since the client and server executables are paired, you won't be able to use any other ngrok to connect to this ngrokd, and vice versa.

DNS

Add two DNS records: one for the base domain and one for the wildcard domain. For example, if your base domain is domain.com, you'll need a record for that and for *.domain.com.

Different Operating Systems

@kingjay66
kingjay66 / asf-oauth-example.py
Created March 24, 2023 21:00 — forked from Humbedooh/asf-oauth-example.py
ASF Oauth Examples
#!/usr/bin/env python3
""" ASF OAuth example in Python 3"""
import cgi
import os
import requests
import urllib
import uuid
def init_oauth():
@kingjay66
kingjay66 / WhatIsStrictAliasingAndWhyDoWeCare.md
Created March 19, 2023 15:33 — forked from shafik/WhatIsStrictAliasingAndWhyDoWeCare.md
What is Strict Aliasing and Why do we Care?

What is the Strict Aliasing Rule and Why do we care?

(OR Type Punning, Undefined Behavior and Alignment, Oh My!)

What is strict aliasing? First we will describe what is aliasing and then we can learn what being strict about it means.

In C and C++ aliasing has to do with what expression types we are allowed to access stored values through. In both C and C++ the standard specifies which expression types are allowed to alias which types. The compiler and optimizer are allowed to assume we follow the aliasing rules strictly, hence the term strict aliasing rule. If we attempt to access a value using a type not allowed it is classified as undefined behavior(UB). Once we have undefined behavior all bets are off, the results of our program are no longer reliable.

Unfortunately with strict aliasing violations, we will often obtain the results we expect, leaving the possibility the a future version of a compiler with a new optimization will break code we th

@kingjay66
kingjay66 / me.txt
Created March 14, 2023 11:57 — forked from orta/me.txt
whoami
Since 2013 I've worked entirely in the open, lowering the barriers to different
developer ecosystems as one of the most active users on GitHub.
I've helped big OSS projects with design, project management and occasionally code.
@kingjay66
kingjay66 / Advanced-HTTP-en.md
Created March 7, 2023 03:19 — forked from nicolas-grekas/Advanced-HTTP-en.md
Advanced handling of HTTP requests in PHP
@kingjay66
kingjay66 / README.md
Last active March 7, 2023 03:14 — forked from williamdes/README.md
easy update your phpMyAdmin !

phpMyAdmin install/upgrade/reinstall (last released version)

washington Supports :

  • install
  • upgrade

Keeps your config !

TLDR / Short mode

Uses default arguments !