Skip to content

Instantly share code, notes, and snippets.

View squk's full-sized avatar

Christian Nieves squk

  • Austin, TX
  • 10:23 (UTC -05:00)
View GitHub Profile
@squk
squk / godot.lua
Last active February 18, 2024 00:06
GDScript and C# NeoVim LSP Configuration
{
"williamboman/mason-lspconfig.nvim",
dependencies = {
"williamboman/mason.nvim",
"Hoffs/omnisharp-extended-lsp.nvim",
"neovim/nvim-lspconfig",
},
config = function()
require("mason").setup()
require("mason-lspconfig").setup({
[
{
"VersionNumber": "4.4",
"IsBeta": false,
"URL": "https://cdn.discordapp.com/attachments/177005642458857472/262645399930535936/Ishiiruka-FM-v4.4--.7z",
"Checksum": ""
},
{
"VersionNumber": "4.9",
"IsBeta": true,

How to pass the OSCP

  1. Recon
  2. Find vuln
  3. Exploit
  4. Document it

Recon

Unicornscans in cli, nmap in msfconsole to help store loot in database.

@rjz
rjz / handler.go
Last active March 26, 2024 23:40
Handle Github webhooks with golang
// Now available in package form at https://github.com/rjz/githubhook
package handler
// https://developer.github.com/webhooks/
import (
"crypto/hmac"
"crypto/sha1"
"encoding/hex"
"errors"