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
#!/bin/bash | |
#This will pull the list of ticked from firebog, removes outdates lists, and then updates the sqlite db before updating gravity | |
#Based on this Reddit Comment with a slight fix to the if logic as default behaviour was space breaking: | |
#https://www.reddit.com/r/pihole/comments/mxf6rp/comment/gvq1rn3/ | |
# | |
#This is being run from crontab by root (required for pihole command) | |
#Command: crontab -u root -e | |
#Runs on Satuday morning at 3:34am | |
#34 3 * * 6 /opt/pihole-custom/update-lists.sh > /opt/pihole-custom/updatelist.log 2>&1 |
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
# Author: Will-Beninger | |
# Very minor changes to the script from lunasec to make a safe/reliable scanner | |
# Original Python Code from here: https://github.com/lunasec-io/Spring4Shell-POC | |
# Based off the work of @Rezn0k | |
# Based off the work of p1n93r | |
# Based off the work of colincowie | |
# https://github.com/colincowie/Safer_PoC_CVE-2022-22965 | |
import requests | |
import argparse |
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
// Connectors for Craftsman 5.5HP 12Gal ShopVac | |
// version 2023-02-26 | |
// | |
// Craftsman Hose Measurements are: | |
// 58.5mm->56mm (2.5mm taper) over 53mm | |
// For this project we need to select the middle of these numbers as the taper is divided by 2 and distributed to both sides (see line 998 in modules) | |
// So we choose a diameter of 57.25mm & taper of 2.5mm | |
// For whatever reason, the taper is backwards, so we need to apply a negative taper to both ends | |
// Dependencies: |
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
Filetype: Flipper Music Format | |
Version: 0 | |
BPM: 120 | |
Duration: 4 | |
Octave: 6 | |
Notes: 8G, 8F#, 8E, 8E, F#, 4P, 2P, 4P, 8P, 8A5, 8G, 8F#, 8E, E, 8F#, P, D, 8E, 8A5, 2P, P, 8P, 8A5, E, 8F#, 3G, 8E, C#, 3D, E, 8A5, A5, F#, 8P, 2P, 2P, 8G, 8F#, 8E, 8E, F#, 4P, 2P, 4P, 8P, 8A5, 8G, 8F#, 8E, 8E, 4P, 8F#, 8D, 4P, 8E, 8A5, 1P, E, 8F#, 3G, 8E, 4C#, 8D, 8E, 8P, 8A5, 8D, 8E, 8F, 8E, 8D, 8C, 4P, 8A5, 8A#5, C, F, 8E, 8D, 8D, 8C, 8D, 8C, C, C, 8A5, 8A#5, C, F, 8G, 8F, 8E, 8D, 8D, 8E, F, F, 8G, 8A, 8A#, 8A#, A, G, 8F, 8G, 8A, 8A, G, F, 8D, 8C, 8D, 8F, 8F, E, 8E, 8F#, 3F#, 8F#, 8D, 8B5, 8D, 8F#, 8D, 8A5, 8D, 8F#, 8D, 8B5, 8D, 8F#, 8D, 8A5, 8D, 8F#, 8D, 8B5, 8D, 8F#, 8D, 8A5, 8D, 8F#, 8A5, 8G, 8F#, 8E, 3E, F#, 8P, 2P, 2P, 8G, 8F#, 8E, 3E, 8F#, D, E, 3A5, 4P, 2P, E, 8F#, 3G, E, C#, 8D, 3E, 8A5, 3A5, F#, 8P, 2P, 4P, 8P, 8A5, 8G, 8F#, 8E, 8E, F#, 4P, 4P, 8P, 8P, 4P, 8P, 8A5, 8G, 8F#, 8E, 8E, 4P, 8F#, 8D, 4P, 8E, 8A5, 1P, E, 8F#, 3G, E, C#, 8D, 8E, 8P, 8A5, 8D, 8E, 8F, 8E, 8D, 8C, 4P, 8A5, 8A#5, C, F, 8E, 8D, 8D, 8C, 8D, 8C, C, C, 8A5, |
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/python3 | |
import subprocess | |
import re | |
cmd = ['ping','-c1','-w1'] | |
for i in range (1,255): | |
address="10.11.1."+str(i) | |
runcmd=cmd+[address] | |
result = subprocess.Popen(runcmd,stdout=subprocess.PIPE) | |
output = str(result.stdout.read()) |
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/python2 | |
# Borrowing heavily from https://github.com/internetwache/Python-AXFR-Test | |
import argparse | |
import sys | |
import dns.resolver | |
import dns.query | |
import dns.zone | |
parser = argparse.ArgumentParser(description='Perform Zone Transfer') | |
parser.add_argument('-d', '--domain', type=str, nargs=1, help="Domain to zone transfer") |
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
ip | owner | link | |
---|---|---|---|
192.241.168.14 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
104.131.210.81 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
165.22.212.143 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
85.159.213.139 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
167.71.37.141 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
172.104.8.179 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
172.105.79.174 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
192.241.182.161 | BinaryEdge | https://api.binaryedge.io/v1/minions | |
172.105.93.108 | BinaryEdge | https://api.binaryedge.io/v1/minions |