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
// true = wait for debugger to open | false = open on load | |
const waitForDebuggerOpen = false; | |
var aceScript = document.createElement('script'); | |
aceScript.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"; | |
document.head.appendChild(aceScript); | |
var jqueryScript = document.createElement('script'); |
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
#!/usr/bin/env python3 | |
# PARSES ANY GIVEN PATH AND RETURNS AN OBJECT WITH CROSS-PLATFORM PATH REPRESENTATIONS | |
def safePathParser(string): | |
base = None | |
dir_ = None | |
if "\\" in string and "/" not in string: |
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
#!/usr/bin/env python3 | |
# This error is caused by using `paramiko.RSA()` to manually load an ecdsa key from your know_hosts file or for manually loading as bytes. | |
# Using: `key = paramiko.AgentKey()` instead seemingly detects the key type automatically and accepts the ecdsa-sha2-nistp256 key just fine. | |
# EXAMPLE: | |
import pysftp | |
from base64 import decodebytes | |
import paramiko |
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
#!/usr/bin/env python3 | |
from seleniumwire import webdriver | |
import requests | |
from os import path, getcwd, startfile, name | |
from time import sleep | |
# from sys import argv | |
# CHAD GROOM - 2020 | |
# **INTENDED FOR LEGAL PURPOSES** |