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
| #include "libserial.h" | |
| #include "config.h" | |
| #include <string.h> // strlen | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <asm/ioctl.h> | |
| #include <asm/termbits.h> |
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/env python3 | |
| import array | |
| import socket | |
| import struct | |
| def chksum(packet: bytes) -> int: | |
| if len(packet) % 2 != 0: | |
| packet += b'\0' |
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
| // Manufacture TCP Packets | |
| // Compile with | |
| // gcc -o raw_tcp raw_tcp.c | |
| // run as su | |
| // sudo ./raw_tcp | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <sys/socket.h> |
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
| ADEVICE plughw:1,0 | |
| PTT cm108 -3 /dev/hidraw0 | |
| ACHANNELS 1 | |
| CHANNEL 0 | |
| MYCALL N8VNP-0 | |
| MODEM 1200 | |
| AGWPORT 8000 | |
| KISSPORT 8001 |
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
| <playlist version="4"> | |
| <channel system="TOPAZ Regional Wireless Cooperative (TRWC)" name="Mesa-Gilbert-Apache-Junction" enabled="false" site=" Mesa Simulcast" order="1"> | |
| <alias_list_name></alias_list_name> | |
| <source_configuration type="sourceConfigTunerMultipleFrequency" preferred_tuner="RTL-2832/R820T 00000001" frequency_rotation_delay="400" source_type="TUNER_MULTIPLE_FREQUENCIES"> | |
| <frequency>852750000</frequency> | |
| <frequency>852825000</frequency> | |
| <frequency>853275000</frequency> | |
| <frequency>853350000</frequency> | |
| <frequency>852075000</frequency> | |
| <frequency>852250000</frequency> |
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
| <!-- This file is modified by @sickcodes from https://github.com/kholia/OSX-KVM/tree/master/OpenCore-Catalina --> | |
| <!-- The modifications are placeholders for: {{DEVICE_MODEL}}, {{SERIAL}}, {{BOARD_SERIAL}}, {{UUID}}, {{ROM}}, {{WIDTH}}, {{HEIGHT}} --> | |
| <!-- All credit for this file https://github.com/kholia/OSX-KVM/blob/master/CREDITS.md --> | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ACPI</key> | |
| <dict> | |
| <key>Add</key> |
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
| # customize Colide Fleet by adding FluentBit | |
| #### | |
| # Buildtime container: | |
| #### | |
| FROM debian:buster as builder | |
| LABEL maintainer="security@acme.com" | |
| LABEL purpose="osquery" |
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
| # shamirs_secret_sharing_algorithm.py | |
| from __future__ import division | |
| from __future__ import print_function | |
| import random | |
| import functools | |
| # 12th Mersenne Prime | |
| # (for this application we want a known prime number as close as |
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
| # base layer | |
| FROM debian:stable AS builder | |
| # Get current & install Java, curl | |
| RUN apt-get -y update && apt-get upgrade | |
| RUN apt-get -y install git openjdk-11-jre-headless curl | |
| # Run spigot as spigot user | |
| RUN useradd spigot && mkdir -p /home/spigot | |
| RUN usermod -a -G spigot spigot |
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/python | |
| """ | |
| Implements an RFC 5424 compliant SysLog agent/client on MSFT Windows Server. | |
| We live in a Internet world, Windows needs Syslog for WinEVT... | |
| """ | |
| import socket | |
| import json | |
| import win32con | |
| import win32event |
NewerOlder