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 / youtube_garbage_channels.txt
Last active December 8, 2025 22:21
Youtube's Slob channels [Last update: 7-dec-25]
#Le Magasin de l’Intelligence
#Mentale Zuflucht
#Mind Warehouse
#Refúgio Mental
2 and 20
2 Danny 2 Furious
3I Atlas Verse
8-BitRyan
12th Hour
24/7 HD NEWS
@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