Skip to content

Instantly share code, notes, and snippets.

View fforres's full-sized avatar
🔥

Felipe Torres (fforres) fforres

🔥
View GitHub Profile
@fforres
fforres / redact.js
Created February 8, 2023 17:19
Redact all text in a website
// This script will inject a specific font from google fonts (this one https://fonts.google.com/specimen/Redacted) and will force all text in a page to use it.
// It's a bit easier than changing all the text-nodes from the page into unicode "blocks", and a lot less resource intensive.
// In case you want to have a bookmark, you can do
// javascript:const injectCSS=()=>{let n=document.createElement("style");return n.type="text/css",n.innerText="\n/* latin-ext */\n@font-face {\n font-family: 'Redacted';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aLTX6OymlLGDzCs.woff2) format('woff2');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'Redacted';\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(https://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aLTZ6OymlLGD.woff2) format(
@fforres
fforres / Sponsor proposal.md
Last active July 13, 2023 15:30
JSCONF 2023

ABOUT US

JSConf Chile is a community-driven conference, made for developers by developers, with a very clear objective. Fostering the JavaScript engineering community in Chile, beyond its geographical limits.

We accomplish that by running a yearly JavaScript conference, and focusing on 2 key elements.

Highlighting the local talent. We want to showcase Latin American engineering culture — and Chile specifically — as incredible opportunities for companies to both source talent and to invest in the developer ecosystem.

Provide a top-tier platform for knowledge sharing.

@fforres
fforres / new-mac-setup.md
Last active March 23, 2025 18:47
Fforres - new mac installation scripts

brew (Might install xcode)

  • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

OhmyZSH

  • sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

1Password

  • brew install --cask 1password

ghostty

@fforres
fforres / Architectura.md
Last active March 18, 2026 08:23
Pentest Documentation

Documentación de arquitectura para pentesting

Contexto

Skyward es una plataforma de Governance, Risk and Compliance (GRC) construida como un monorepo desplegado en Cloudflare Workers. La arquitectura sigue un modelo local-first con sincronización en tiempo real mediante WebSockets.

Objetivo

Este documento resume la arquitectura técnica relevante para un ejercicio de pentesting sobre la plataforma. El foco está puesto en los límites de confianza, los componentes expuestos, los canales de comunicación en tiempo real y los activos que participan en autenticación, autorización y persistencia.