Skip to content

Instantly share code, notes, and snippets.

View v1ctorio's full-sized avatar
🐮
chat how yall l doin

Vic v1ctorio

🐮
chat how yall l doin
View GitHub Profile
@myfancypants
myfancypants / NextJsReceiever.ts
Created February 25, 2025 18:44
Draft Slack Bolt Next.js Receiever
import querystring from "node:querystring";
import { ConsoleLogger, LogLevel, type Logger } from "@slack/logger";
import type App from "../App";
import { ReceiverMultipleAckError } from "../errors";
import type { Receiver, ReceiverEvent } from "../types/receiver";
import type { StringIndexed } from "../types/utilities";
import { isValidSlackRequest } from "./verify-request";
export interface NextJsReceiverOptions {
/**

g.co, Google's official URL shortcut (update: or Google Workspace's domain verification, see bottom), is compromised. People are actively having their Google accounts stolen.

Someone just tried the most sophisticated phishing attack I've ever seen. I almost fell for it. My mind is a little blown.

  1. Someone named "Chloe" called me from 650-203-0000 with Caller ID saying "Google". She sounded like a real engineer, the connection was super clear, and she had an American accent. Screenshot.

  2. They said that they were from Google Workspace and someone had recently gained access to my account, which they had blocked. They asked me if I had recently logged in from Frankfurt, Germany and I said no.

  3. I asked if they can confirm this is Google calling by emailing me from a Google email and they said sure and sent me this email and told me to look for a case number in it, which I saw in

@stong
stong / cups-browsed.md
Last active April 9, 2026 18:22
CUPS disclosure leaked online. Not my report. The original author is @evilsocket

Original report

  • Affected Vendor: OpenPrinting
  • Affected Product: Several components of the CUPS printing system: cups-browsed, libppd, libcupsfilters and cups-filters.
  • Affected Version: All versions <= 2.0.1 (latest release) and master.
  • Significant ICS/OT impact? no
  • Reporter: Simone Margaritelli [evilsocket@gmail.com]
  • Vendor contacted? yes The vendor has been notified trough Github Advisories and all bugs have been confirmed:
@scyto
scyto / proxmox.md
Last active June 30, 2026 00:12
my proxmox cluster

ProxMox Cluster - Soup-to-Nutz

aka what i did to get from nothing to done.

note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV

Purpose of Proxmox cluster project

Required Outomces of cluster project

@advaith1
advaith1 / nitro.md
Created May 4, 2023 01:06
Discord Nitro Subscription Links
@hackermondev
hackermondev / ClydeAI-Jailbreak.md
Last active June 5, 2026 06:01
Discord ClydeAI jailbreak

Valores del "se"

Pronombre

  • Reflexivo | el sujeto realiza la acción que padece | Luis se afeita todos los días
  • Reciproco
  • "se" por "le"
  • Datos de interés
  • CI

No es un pronombre

  • Marca de impersonalidad | no es pasiva | sin sujeto | verbo en singular plural | Se come~~(n)~~ bien en este restaurante
  • Pasiva refleja | Se hacen [arreglos de ropa] (SN/Suj)
@HoussenMoshine
HoussenMoshine / telegram-instant-view-template-help
Last active September 15, 2024 13:36
Help for Telegram Instant View Template
# To remove only some text on a content
@remove: //p[self::p/strong[contains(text(), "Articles liés")]]
@remove: //iframe[contains(@src,"https://urlsomething")]
# To deal with fucking error of <img> is not supported in blabla
@before_el(./..): //a/img
@before_el(./..): //p/img
@19WAS85
19WAS85 / powershell-web-server.ps1
Last active January 6, 2026 17:35
A simple web server built with powershell.
# This is a super **SIMPLE** example of how to create a very basic powershell webserver
# 2019-05-18 UPDATE — Created by me and and evalued by @jakobii and the comunity.
# Http Server
$http = [System.Net.HttpListener]::new()
# Hostname and port to listen on
$http.Prefixes.Add("http://localhost:8080/")
# Start the Http Server