Skip to content

Instantly share code, notes, and snippets.

View TheBarret's full-sized avatar
💭
I may be slow to respond.

Zephyroku TheBarret

💭
I may be slow to respond.
View GitHub Profile
@TheBarret
TheBarret / abn-amro.pop.killer.js
Created December 17, 2025 12:25
Kills the modal 'NU CONTROLEREN' popup, let's you continue without being harassed.
// ==UserScript==
// @name ABN AMRO – Neutralize KYC Modal (Hard)
// @namespace abnamro.kyc.neutralizer
// @version 2.0.0
// @match https://*.abnamro.nl/*
// @run-at document-start
// @grant none
// ==/UserScript==
(function () {
@TheBarret
TheBarret / youtube_garbage_channels.txt
Last active January 21, 2026 12:24
Youtube's Slob channels [Last update: 21-Jan-26]
#Le Magasin de l’Intelligence
#Mentale Zuflucht
#Mind Warehouse
#Refúgio Mental
(Fe)MaleASMR
*Piet Visser*
0phiuchus
1Cloud9
1ShotTV
1tch
@TheBarret
TheBarret / strong_names.txt
Created August 15, 2023 14:55
Collection of names that sound epic, strong or have been known to be used by known legends
Achilles
Aegis
Aether
Aetherion
Aetherios
Aetherius
Alaric
Amarok
Amentum
Apexis
@TheBarret
TheBarret / Suscall.cs
Created August 3, 2021 23:20 — forked from dr4k0nia/Suscall.cs
An example of using x64 syscall shellcode to call NtProtectVirtualMemory
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace Code_Projects
{
public unsafe class Suscall
{
[DllImport("kernel32", SetLastError = true)]
@TheBarret
TheBarret / ByteArrayExtensions.vb
Created October 28, 2017 14:34
Useful Byte Array Extensions
Imports System.IO
Imports System.IO.Compression
Imports System.Security.Cryptography
Imports System.Runtime.InteropServices
Public Module TypeExt
<System.Runtime.CompilerServices.Extension>
Public Function QuickCast(Of T)(src As Byte()) As Object
Dim dataPtr As IntPtr = IntPtr.Zero
Try
If src.Length <> 0 Then