Earlier quoted context omitted.
lol, I used to do this all the time at non-free wifi hotspot locations, only I'd start off with a ping sweep of the entire subnet (nmap -sP) in order to get my ARP cache filled with a bunch of potential usable IP/mac addresses on the network. From there, I'd iterate through each one and set the IP & mac address until I found one that would let me through the firewall. Granted, being a NOC engineer at Wayport (now AT&…
Normally ping is disabled on those networks?
WiFi without internet on a Southwest flight
581–590 of 675 posts
Re: WiFi without internet on a Southwest flight
#582Earlier quoted context omitted.
I’m imaging it’s because states and even cities can have differing sales tax rates. Hard to advertise to a wide audience when the final price after tax is one of 12 different prices depending on where they live.
That's a weak justification to apply to prices listed right where the product is sold. Like, if one uses a sticker gun to put a price tag on a product itself. I don't know of any US businesses other than waffle house that always include all taxes in the listed price, however.
Regardless, I'm not sure why people consider it such a big deal. It's consistent across the board and it's relatively basic math to estimate what the total would be.
I've lived in places that do it both ways and it's a non-issue.
Re: WiFi without internet on a Southwest flight
#583Earlier quoted context omitted.
lol, I used to do this all the time at non-free wifi hotspot locations, only I'd start off with a ping sweep of the entire subnet (nmap -sP) in order to get my ARP cache filled with a bunch of potential usable IP/mac addresses on the network. From there, I'd iterate through each one and set the IP & mac address until I found one that would let me through the firewall. Granted, being a NOC engineer at Wayport (now AT&…
If any lawyers or FAA employees are reading this I’m genuinely interested in what, if any, legal implications there would be for running nmap mid flight on an airline. Surely once you have spoofed the MAC address and IP of another passenger to gain unauthorized access to the planes LAN you have committed a crime but what about passively scanning?
Because if that's a crime we're screwed because then it's illegal to read, or listen.
Re: WiFi without internet on a Southwest flight
#584What did you use to create your graphics?
I used chart.js [0], but I don't necessarily endorse it - it's just what I knew how to use quickly. I usually try to keep my posts free from javascript, and could have used a different tool that gives me SVG data or images. You can see the code that's generating these charts here: https://github.com/jamesbvaughan/jamesbvaughan.com/blob/main... [0] https://www.chartjs.org/
Re: WiFi without internet on a Southwest flight
#585Earlier quoted context omitted.
If any lawyers or FAA employees are reading this I’m genuinely interested in what, if any, legal implications there would be for running nmap mid flight on an airline. Surely once you have spoofed the MAC address and IP of another passenger to gain unauthorized access to the planes LAN you have committed a crime but what about passively scanning?
are you asking if its a crime to read information they've publicly broadcast? Because if that's a crime we're screwed because then it's illegal to read, or listen.
https://www.theverge.com/2021/12/31/22861188/missouri-govern...
Re: WiFi without internet on a Southwest flight
#586Earlier quoted context omitted.
The first problem that comes to my mind--clients will remember both wifi networks and may continue to choose the open network when e.g. waking from sleep. The user can go in and forget the open network of course, but most won't know to do that.
It would theoretically be possible to bounce clients which you know are already authorised on the paid network.
Re: WiFi without internet on a Southwest flight
#587Re: WiFi without internet on a Southwest flight
#588Earlier quoted context omitted.
Aren't you then fighting the switch's port learning? Or RSTing each other's TCP connections?
Its wifi. You both just pick up the same frame when it is broadcast, then it sees two stations (a level below IP) with the same MAC. Most routers just don't care about that. (it's technically a valid edge case that two stations have the same mac address. It should be vanishingly rare in the wild ... but this is a practical example of why it isn't).
I once bought a cheap Bluetooth dongle from China. Its MAC address was 11:11:11:11:11:11 Obviously there are now a lot of bluetooth dongles in the wild with the same MAC address.
Re: WiFi without internet on a Southwest flight
#589Earlier quoted context omitted.
Aren't you then fighting the switch's port learning? Or RSTing each other's TCP connections?
Its wifi. You both just pick up the same frame when it is broadcast, then it sees two stations (a level below IP) with the same MAC. Most routers just don't care about that. (it's technically a valid edge case that two stations have the same mac address. It should be vanishingly rare in the wild ... but this is a practical example of why it isn't).
Re: WiFi without internet on a Southwest flight
#590Earlier quoted context omitted.
> WA chat is not HTTPS (or even TLS) If you don’t mind, could you expend on this? Are there specific reasons to not be using TLS?
We didn't use TLS at Netflix either, and instead used our own encryption protocol that ran on top of HTTP. We could do this because we controlled the clients too. The why was because of trust store issues. Every device has its own built in trust store, and especially on devices like TVs and DVD players, they couldn't be updated. After looking at all the devices we supported, there was no common certificate signer amo…