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 | |
# Automated setup script for XSS Canary Callback server | |
# Define color variables | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
BLUE='\033[0;34m' | |
NC='\033[0m' # No Color |
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 http.server | |
import socketserver | |
import ssl | |
# Run: openssl req -new -x509 -days 365 -nodes -out server.crt -keyout server.key | |
PORT = 8000 | |
class MyRequestHandler(http.server.SimpleHTTPRequestHandler): | |
def do_GET(self): | |
# Set the response code and headers | |
self.send_response(200) |
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 http.server | |
import socketserver | |
PORT = 8000 | |
class MyRequestHandler(http.server.SimpleHTTPRequestHandler): | |
def do_GET(self): | |
# Set the Content Security Policy header | |
self.send_response(200) | |
self.send_header("Content-Type", "text/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
import dns.resolver | |
import sys | |
from tld import get_fld | |
def get_root_domain(domain): | |
return get_fld(domain, fix_protocol=True) | |
def check_dmarc(domain): | |
try: | |
answers = dns.resolver.resolve(f'_dmarc.{domain}', 'TXT') |
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
#!/usr/bin/python3 | |
# The following code was written by Wulf on #crypto (Libera) | |
from math import gcd | |
from cryptography.hazmat.backends import default_backend | |
from cryptography.hazmat.primitives.asymmetric.rsa import ( | |
RSAPublicNumbers, | |
RSAPrivateNumbers, | |
rsa_crt_iqmp, |
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 dkim # pip3 install dkimpy | |
import smtplib | |
import time | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.utils import formatdate | |
# Set params | |
destination = "TODO" # Victim SMTP server | |
smtp = "TODO" # Victim email |
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
#!/usr/bin/expect -f | |
if {[llength $argv] != 5} { | |
puts stderr "Usage: Pass an amount and a priority as arguments!" | |
exit 1 | |
} | |
set walletName [lindex $argv 0]; | |
set network [lindex $argv 1]; | |
set REMOTE_NODE [lindex $argv 2]; | |
set PORT [lindex $argv 3]; | |
set address [lindex $argv 4]; |
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 | |
# System Updates | |
sudo apt-get update -y | |
sudo apt-get full-upgrade --fix-missing -y | |
sudo apt-get autoremove -y | |
sudo apt-get -y dist-upgrade | |
sudo apt-get -y install linux-headers-$(uname -r) | |
#sudo parrot-upgrade | |
# Alias to Fix Virtual Box issues |
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
*.caesarscasino.com | |
*.credit24.com | |
*.credit24.com.au | |
*.creditea.com | |
*.fashionette.de | |
*.hapipozyczki.pl | |
*.ideafinancial.com | |
*.mohegansuncasino.com | |
*.online-metrix.net | |
*.qa.threatmetrix.com |
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
agent_publickey = 3059301306072a8648ce3d020106082a8648ce3d03010703420004f2b81b1902a771c8c24f09c6bd8be647d33bd139269856418a42c5a78343d943a03ac2173529a816f797a803563de6ecdd25572ce09af8c081c02303bac0c4d3 | |
agent_publickey_hash = 525f76180e55012341ffe12bcfb5587adad1b920 | |
agent_publickey_hash_result = not found | |
agent_publickey_hash_type = web:ecdsa | |
agent_type = browser_computer | |
alert_id = 9598 | |
api_call_datetime = 2019-12-16 15:24:42.595 | |
api_key = fioxxxxxxxxxx370 | |
api_site_id = api101.qa2.sac. | |
api_type = session-query |
NewerOlder