Skip to content

Instantly share code, notes, and snippets.

View notmike101's full-sized avatar
🧟
Surviving the zombie apocalypse

Mike notmike101

🧟
Surviving the zombie apocalypse
View GitHub Profile
@notmike101
notmike101 / example.js
Last active May 2, 2023 02:35
JavaScript - General Monkeypatch
import { patch } from './monkeyPatch';
(() => {
patch(EventTarget, 'dispatchEvent', function() {
const args = Array.from(arguments);
const customEvent = new CustomEvent('GLOBAL_LOGGER', {
details: args[0],
});
#include <Windows.h>
bool runInSafeScreen(const char *, const char *);
BOOL IsUserAdmin(VOID);
int main() {
// We need to check if the user has administrator privileges.
if (!IsUserAdmin()) {
// If they don't, tell them they need administrator privileges.
printf("Please run this program as an administrator\n");
/*
Print the numbers 1 to 100.
For multiples of 4, print "Fizz".
For multiples of 5 print "Buzz".
For multiples of 8, print "Foo".
For multiples of 10, print "Bar"
For multiples of 4 and 5, print "FizzBuzz".
For multiples of 4 and 8, print "FizzFoo"
For multiples of 4 and 10, print "FizzBar"
For multiples of 5 and 8, print "BuzzFoo"
BEGIN MESSAGE.
U56xb50RwNhOyjB XwqULL8KYDiK4jt 6Nj2TSh79466m0T 39lRyfxKMEBk9fv
gjYagDJMnlahfJy KVu5luEcCKETCKq 6Xr2MZHgg7CkxZb Xo8d5RrBJbk7pgE
Y9w5WD71dSV1NFd 9KQiDytPeUhBBsO RinzJ9rtz45UyYD uZ166sASJJdnClU
faOx17ETf1wdtMR usuZRuTT7EUORNz 06uwO7tiSkCT.
END MESSAGE.
--[[ VoltageHack v2 Garry's Mod multi-hack ]]--
--[[ Coded by Tyler with help from others ]]--
--[[ Do NOT leak this hack code to anyone! ]]--
--[[ Please ignore the awful messy code ]]--
--[[ Some of this code is borrowed for now ]]--
/* Start of Hack */
--Requires--
@notmike101
notmike101 / CSSUploadDownloadDelete.cpp
Last active May 21, 2021 15:46
This doesn't work anymore, just for archiving
#define CLIENT_DLL
#include <stdio.h>
#include <iostream>
#include <tlhelp32.h>
#include <fstream>
#include <winsock.h>
#pragma comment( lib, "winmm.lib" )
#pragma comment( lib, "wininet.lib" )
@notmike101
notmike101 / MARcon.lua
Created November 2, 2020 19:31
Mani Admin Rcon "Hacker"
-- This is old, probably doesn't work anymore
if args=="es" then
for x=1,50 do
cmd('"changelevel ""ma_say;rcon_password lolololz"')
wait(10)
cmd('"changelevel 1""ma_say;rcon_password lolololz"')
wait(10)
cmd('"changelevel ""ma_psay;rcon_password lolololz"')
wait(10)
@notmike101
notmike101 / DCMenu.lua
Created November 2, 2020 19:14
LSS Disconnect Exploit Menu
-- #############
-- #############
-- Note from 2020: This probably doesn't work anymore. Just doing this to archive
-- #############
-- #############
-- Sense so many people are starting to leach it, enjoy no more sells!
-- You must have LSS for this to work: http://www.3rdera.com/ To make this
-- script work, after installing LSS, type ***OPENSCRIPTCMD*** DCMenu.lua open
-- It MUST be named DCMenu.lua or else it wont work.
@notmike101
notmike101 / keybase.md
Created May 11, 2020 04:39
keybase.md

Keybase proof

I hereby claim:

  • I am notmike101 on github.
  • I am notmike (https://keybase.io/notmike) on keybase.
  • I have a public key ASCxFjutBiU8y_2fNS6bvnzCaLDln756PlHnwGXRtp6dRgo

To claim this, I am signing this object:

methods: {
/*
* Inject a script tag into the page
* Parameters:
* path: Path of JS file
* target (default = head): Element that script should be injected into
* Pass a querySelector or a node here
* isAsync (default= true): Apply the 'async' property to the output tag
* isDefer (default = true): Apply the 'defer' property to the output tag.
*/