Skip to content

Instantly share code, notes, and snippets.

@testerzs
testerzs / WhatsAppSender1337.js
Last active November 17, 2020 12:53
Send "1337" on 13:37 to a selected WhatsApp chat, Run the code in your console
function sendMessage(message) {
window.InputEvent = window.Event || window.InputEvent;
var event = new InputEvent('input', {
bubbles: true
});
var textbox = document.querySelector('div._3FRCZ');
textbox.textContent = message;
//FacebookUserOnlineTime Shows info about when a specific user was online
//Visit https://www.messenger.com/t/USERNAME
//and run the following code in tour console
var prev = null
setInterval(function() {
var userName = document.getElementById('js_5') .getElementsByTagName('span')[0].innerHTML;
var statusText = document.getElementsByClassName("_2v6o");
@testerzs
testerzs / decodeUsbKey.py
Created October 1, 2019 13:27
USB Keystrokes from pcab (Leftover Capture Data) to text
#!/usr/bin/python
# coding: utf-8
from __future__ import print_function
import sys,os
#declare -A lcasekey
lcasekey = {}
#declare -A ucasekey
ucasekey = {}
@testerzs
testerzs / Dutch Government Domains
Last active January 16, 2024 23:14
Dutch Government Domains
http://rijksoverheid.nl
http://rivm.nl
http://nederlandwereldwijd.nl
http://rvo.nl
http://government.nl
http://defensie.nl
http://vananaarbeter.nl
http://werkenvoornederland.nl
http://rijkswaterstaat.nl
http://lci.rivm.nl
@testerzs
testerzs / Vimeo download with yt-dlp
Created May 15, 2023 16:42
Download private Vimeo video's with yt-dlp
Open the webpage where the video is embedded
Right-click anywhere on the page and select "Inspect"
Select the "Network" tab
Press "F5"
Play the video for the links to load
In the "Filter" box type "master"
Click on the link which has the name "master.json"
Copy the url (right click > Copy Value > Copy URL) and paste it into any text editor
Change the end of the url from "master.json?base64_init=1&query_string_ranges=1" to "master.mpd?query_string_ranges=1"
In the following command paste the new url in "YOUR URL" and run the command