- about:blank
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
import socket, sys, struct | |
from OpenSSL import SSL | |
from impacket.structure import Structure | |
# I'm not responsible for what you use this to accomplish and should only be used for education purposes | |
# Could clean these up since I don't even use them | |
class TPKT(Structure): | |
commonHdr = ( | |
('Version','B=3'), |
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/sh | |
# Configuration | |
FU_NODE_NAME=node # Node name? | |
FU_USING_NIC=ens3 # Interface name? | |
FU_RESET_DAY=29 # Quota resets on? | |
FU_PURCHASED=95 # Quota purchased? | |
FU_DIRECTION=tx # Accounting directions [both/tx/rx] ? | |
# ############# |