Skip to content

Instantly share code, notes, and snippets.

@tahlly88
tahlly88 / move.ps1
Created September 9, 2024 15:28 — forked from yamgarcia/move.ps1
Auto Mouse Mover - AntiscreenSaver
Add-Type @"
using System;
using System.Runtime.InteropServices;
public class Mouse {
[DllImport("user32.dll")]
public static extern bool SetCursorPos(int x, int y);
}
"@
function Start-AntiscreenSaver {
@tahlly88
tahlly88 / dictionary.json
Created March 8, 2022 17:42 — forked from BideoWego/dictionary.json
English dictionary in JSON and words in raw text
This file has been truncated, but you can view the full file.
{
"a": "The first letter of the English and of many other alphabets.The capital A of the alphabets of Middle and Western Europe, as alsothe small letter (a), besides the forms in Italic, black letter,etc., are all descended from the old Latin A, which was borrowed fromthe Greek Alpha, of the same form; and this was made from the firstletter (Aleph, and itself from the Egyptian origin. The Aleph was aconsonant letter, with a guttural breath sound that was not anelement of Greek articulation; and the Greeks took it to representtheir vowel Alpha with the ä sound, the Phoenician alphabet having novowel symbols. This letter, in English, is used for several differentvowel sounds. See Guide to pronunciation, §§ 43-74. The regular longa, as in fate, etc., is a comparatively modern sound, and has takenthe place of what, till about the early part of the 17th century, wasa sound of the quality of ä (as in far).",
"ab": "The fifth month of the Jewish year according to theecclesiastical reckoning, the eleventh by the
@tahlly88
tahlly88 / scamming_the_scammer_snippet_1.py
Created February 24, 2022 01:56 — forked from amitrani6/scamming_the_scammer_snippet_1.py
The code used by 'Engineer Man' to flood the phishing site with false information
#The following code is from 'Engineer Man's' YouTube video titled 'Showing a Craigslist scammer who's boss using Python'
import requests
import os
import random
import string
import json
#Character list for password creation and a random seed to initialize the number generation
chars = string.ascii_letters + string.digits + '!@#%^&()'
random.seed = (os.urandom(1024))
@tahlly88
tahlly88 / scamming_the_scammer_snippet_2.py
Created February 24, 2022 01:50 — forked from amitrani6/scamming_the_scammer_snippet_2.py
My additions to the script to modify the e-mail generation
#This function returns a random amount of random numbers as a string
def get_random_numbers():
n = random.randint(1,6) #The number of random numbers we want
rand_nums = ''
for i in range(0,n):
rand_nums += str(random.randint(0,11))
return rand_nums