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
| tcpdump version 4.99.4 | |
| libpcap version 1.10.4 (with TPACKET_V3) | |
| OpenSSL 1.1.1t 7 Feb 2023 | |
| # tcpdump -d -y IEEE802_11_RADIO 'subtype probe-req' | |
| # 5d64c17672b015af55ed53fd68ad5d3230f2d59cd1a4262e1cc8f15c01d14c4d | |
| (000) ldb [3] | |
| (001) lsh #8 | |
| (002) tax | |
| (003) ldb [2] | |
| (004) or x |
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
| /* SPDX-License-Identifier: 0BSD OR OR MIT-0 OR Unlicense OR CC0-1.0+ | |
| Copyright ©2023 Ryan Castellucci, no rights reserved. | |
| gcc -O2 probecap.c -lpcap -o probecap #*/ | |
| #include <string.h> | |
| #include <stdint.h> | |
| #include <errno.h> | |
| #include <stdio.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
| # WARNING: These rules may cause your email addresses to be rejected by various | |
| # services and/or flagged as potentially fraudulent. Care has been taken to make | |
| # these rules as precise as possible, but there may be false positives. I take | |
| # no responsibility for what happens if you use these rules. | |
| # defer address validation attempts | |
| defer | |
| message = Please try later | |
| log_message = everify probe (ip) | |
| condition = ${if match_ip{$sender_host_address}{185.31.204.0/22}} |
This file has been truncated, but you can view the full file.
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
| Certificate: | |
| Data: | |
| Version: 3 (0x2) | |
| Serial Number: | |
| 07:d1:d1:bf:95:5f:c9:75:ea:67:3c:b3:16:66:d6:9f | |
| Signature Algorithm: ecdsa-with-SHA256 | |
| Issuer: C = US, O = "Cloudflare, Inc.", CN = Cloudflare Inc ECC CA-3 | |
| Validity | |
| Not Before: Mar 31 00:00:00 2023 GMT | |
| Not After : Mar 30 23:59:59 2024 GMT |
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
| Certificate: | |
| Data: | |
| Version: 3 (0x2) | |
| Serial Number: | |
| 01:6e:17:41:fd:92:7b:b4:78:24:a9:8b:35:ae:58:be | |
| Signature Algorithm: ecdsa-with-SHA256 | |
| Issuer: C = US, O = "Cloudflare, Inc.", CN = Cloudflare Inc ECC CA-3 | |
| Validity | |
| Not Before: Mar 8 00:00:00 2023 GMT | |
| Not After : Mar 6 23:59:59 2024 GMT |
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
| Certificate: | |
| Data: | |
| Version: 3 (0x2) | |
| Serial Number: | |
| 07:d1:d1:bf:95:5f:c9:75:ea:67:3c:b3:16:66:d6:9f | |
| Signature Algorithm: ecdsa-with-SHA256 | |
| Issuer: C = US, O = "Cloudflare, Inc.", CN = Cloudflare Inc ECC CA-3 | |
| Validity | |
| Not Before: Mar 31 00:00:00 2023 GMT | |
| Not After : Mar 30 23:59:59 2024 GMT |
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
| --- a/drivers/net/wireless/ath/regd.c | |
| +++ b/drivers/net/wireless/ath/regd.c | |
| @@ -23,6 +23,10 @@ | |
| #include "regd.h" | |
| #include "regd_common.h" | |
| +static char *default_country_alpha2 = NULL; | |
| +module_param_named(default_country, default_country_alpha2, charp, S_IRUGO); | |
| +MODULE_PARM_DESC(default_country, "Default Country Code (ISO 3166-1 Alpha-2)"); | |
| + |
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 python3 | |
| import sys | |
| in_file = sys.argv[1] | |
| lower = in_file.lower() | |
| if 'eap1300ext' in lower or 'eap1300' not in lower: | |
| raise ValueError('This does not look like an EAP1300 firmware file name.') |
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
| // In your browser, add a new bookmark with the following in the URL | |
| // field and name it "Mx it up" (or whatever you fancy). This is known | |
| // as a "bookmarklet" - if you select it from the bookmarks menu it | |
| // will run on the page you currently have open. | |
| javascript:(D=>{D.querySelectorAll("option[value^=mrs i]").forEach(N=>{for(var r=D.createElement("option"),p=N.parentNode,o=p.children,t=0;t<o.length;++t)if(/^mx/i.test(o[t].value))return o[t].selected=!0;r.value=r.innerText=N.value.replace(/rs/i,s=>"R"==s[0]?"X":"x"),p.appendChild(r),r.selected=!0})})(document) |