TXT Record XSS
141–150 of 236 posts
Re: TXT Record XSS
#142Earlier quoted context omitted.
For another fantastic abuse of DNS, the Iodine* project uses DNS to tunnel IP which is just obscene. http://code.kryo.se/iodine/ (Why? Lots of captive portal wifi hotspots (think hotel/train etc) seem to allow DNS resolutions before stopping your other traffic.) * DNS uses port 53 which is the same as the atomic number for Iodine ;)
Ah, iodine. I've used it in airports, hotels, cafes - it's great. The only drawback is that it's slower than dialup and latency is off the charts. But when you're stuck on a cruise ship and internet access is $8 a minute, being able to ssh somewhere and browse the web and check your mail very slowly through links is worth it.
Re: TXT Record XSS
#143I added FartScroll.js from the Onion to my text records: http://dig.whois.com.au/dig.php?dom=philipithomas.com&type=A...
Re: TXT Record XSS
#144mike@glue:~$ dig +short chaos txt version.bind @198.211.125.252
""
I put this in my named.conf:
version "";
This site is vulnerable:
http://dnscheck.pingdom.com/?domain=grepular.com
Although takes a minute before it kicks in. I did report it to them at the time, but never got a response.
Re: TXT Record XSS
#145Earlier quoted context omitted.
Ah, iodine. I've used it in airports, hotels, cafes - it's great. The only drawback is that it's slower than dialup and latency is off the charts. But when you're stuck on a cruise ship and internet access is $8 a minute, being able to ssh somewhere and browse the web and check your mail very slowly through links is worth it.
I usually just spoof mac addresses of people who already paid in most of those cases, the caveat usually being somebody had to pay.
Re: TXT Record XSS
#146Earlier quoted context omitted.
I don't know how things work now, but at least a few years ago there were plenty of DNS server that would take basically the full 48hours to update, regardless of TTL.
I think the rise of no-fixed-IP load balancers like Amazon ELB has dramatically reduced that.
Re: TXT Record XSS
#147Earlier quoted context omitted.
dam, that got downvoted into oblivion haha. honest question... although i dont believe it should be, a third party injecting javascript to demonstrate an exploit might be...
He hasn't injected anything. It's just his public DNS record that this page has chosen to display without sanitizing.
Similarly I imagine something like the CFAA (18 USC 1030) probably has broad enough clauses to make this sort of action technically illegal, at least in some cases? But I'm out of my depth on that one.
Re: TXT Record XSS
#148Re: TXT Record XSS
#149Earlier quoted context omitted.
Ah, iodine. I've used it in airports, hotels, cafes - it's great. The only drawback is that it's slower than dialup and latency is off the charts. But when you're stuck on a cruise ship and internet access is $8 a minute, being able to ssh somewhere and browse the web and check your mail very slowly through links is worth it.
I usually just spoof mac addresses of people who already paid in most of those cases, the caveat usually being somebody had to pay.
Re: TXT Record XSS
#150I am half serious, but how about making HTML served in TXT records a standard trick for serving small web pages very quickly? There are way fewer network round trips: 1. DNS query for TXT record for example.com 2. DNS reply with HTML content Compared with the traditional 7 steps: 1. DNS query for A record for example.com 2. DNS reply with x.x.x.x 3. TCP SYN to port 80 4. TCP SYN/ACK 5. TCP ACK 6. HTTP GET 7. HTTP rep…