Skip to content

Instantly share code, notes, and snippets.

@PintsizedSix40
PintsizedSix40 / LICENSE.txt
Last active December 10, 2019 05:18
Puts a backdoor into a computer with PowerCat and P4wnP1 A. L. O. A. This code falls under the Apache v2 License.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
@PintsizedSix40
PintsizedSix40 / cmd.bat
Last active October 31, 2019 06:55
A one-line command to give command-prompt that can be ran on computers with command-prompt blocked as long as "cmd /c" or "cmd /k" still functions. This command can be placed in shortcut files to be ran.
C:\Windows\System32\cmd.exe /v /k "@echo off&&FOR /L %N IN (1,0,10) DO ((FOR /F "tokens=* USEBACKQ" %F IN (`cd`) DO (set /p b=%F^>&&!b!)))"
@PintsizedSix40
PintsizedSix40 / WifiPassStealer.cs
Created October 11, 2019 19:09
A small C# program to grab wifi passwords (as well as the names) and output it to the console.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WifiPassGrabber
{
class Program
{
@PintsizedSix40
PintsizedSix40 / deauth.sh
Created June 30, 2019 20:41
Script to deauth APs with aircrack-ng (SENDS TO AP, NOT CLIENT!)
function clean {
airmon-ng stop wlan0mon
ifconfig wlan0 down
ifconfig wlan0mon down
ifconfig wlan0 up
}
function getFromInput {
airodump-ng wlan0mon
echo Select the BSSID
@PintsizedSix40
PintsizedSix40 / YT RMV-AP-UN.user.js
Last active May 8, 2021 10:19 — forked from Yonezpt/YT RMV-AP-UN.user.js
Removes the up next feature
// ==UserScript==
// @version 1.0.0
// @name Removes the up next feature
// @match *://www.youtube.com/*
// @run-at document-start
// @grant none
// @noframes
// ==/UserScript==
(function () {
'use strict';