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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BthA2dp\Parameters] | |
"BluetoothAacEnable"=dword:00000000 |
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
[ 0.000000] Linux version 5.11.21-300.fc34.x86_64 ([email protected]) (gcc (GCC) 11.1.1 20210428 (Red Hat 11.1.1-1), GNU ld version 2.35.1-41.fc34) #1 SMP Fri May 14 17:43:38 UTC 2021 | |
[ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.11.21-300.fc34.x86_64 root=/dev/mapper/fedora_micro-root ro rd.lvm.lv=fedora_micro/swap rd.md=0 rd.dm=0 vconsole.keymap=jp106 rd.lvm.lv=fedora_micro/root rd.luks=0 vconsole.font=latarcyrheb-sun16 rhgb quiet crashkernel=auto | |
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000000e2000-0x00000000000fffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d7f8ffff] usable | |
[ 0.000000] BIOS-e820: [mem 0x00000000d7f9e000-0x00000000d7f9ffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x000000 |
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
# /etc/systemd/system/smb.service.d/requiremount.conf | |
[Unit] | |
RequiresMountsFor=/mountpoint | |
RequiresMountsFor=/anothermountpoint |
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/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright 2014 ko-zu <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.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
# http://notmysock.org/blog/hacks/a-twisted-dns-story.html | |
# https://gist.github.com/johnboxall/1147973 | |
# twistd -y dnsfuzz.py | |
import sys | |
import socket | |
from twisted.python import log | |
from twisted.internet.protocol import Factory, Protocol | |
from twisted.internet import reactor |
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
# http://notmysock.org/blog/hacks/a-twisted-dns-story.html | |
# http://blog.inneoin.org/2009/11/i-used-twisted-to-create-dns-server.html | |
# twistd -y dns.py | |
import socket | |
from twisted.internet.protocol import Factory, Protocol | |
from twisted.internet import reactor | |
from twisted.names import dns | |
from twisted.names import client, server |