View ShamirStego.py
This file contains 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 os, sys | |
from secretsharing import SecretSharer | |
import PySimpleGUI as sg | |
import json | |
from cryptosteganography import CryptoSteganography | |
import hashlib | |
from binascii import hexlify, unhexlify | |
def get_files(title): |
View cathook.py
This file contains 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 pynput | |
from pynput.keyboard import Key, Listener | |
import time | |
import os | |
#CatHook 0.1 - Unit 221B - stop cats from messing up your computer - Lance James | |
print("CatHook 0.1 - Unit 221B, LLC") | |
suspend = 'pmset displaysleepnow' | |
freq = [] | |
key_col = [] | |
def on_press(key): |