Skip to content

Instantly share code, notes, and snippets.

View RaiDeiNz's full-sized avatar
🏴‍☠️
Yo, ho, haul together!

RaiD31n RaiDeiNz

🏴‍☠️
Yo, ho, haul together!
  • Tortuga
  • 50°58'38.7"N 100°30'29.8"E
  • X @raid31nz
View GitHub Profile
@RaiDeiNz
RaiDeiNz / skullkatz.cs
Created September 3, 2021 03:29
SkullKatz - Execute Mimikatz from an image
using System;
using System.IO;
using System.Net;
using System.Text;
using System.IO.Compression;
using System.Collections.Generic;
using System.Configuration.Install;
using System.Runtime.InteropServices;
@RaiDeiNz
RaiDeiNz / GoogleDorking.md
Created June 13, 2021 20:43 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@RaiDeiNz
RaiDeiNz / matrix.c
Last active November 13, 2020 09:29 — forked from mohd-akram/matrix.c
Matrix digital rain in C.
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#define WIDTH 80
#define HEIGHT 40
#define idx(x, y) ((x)+WIDTH*(y))