Advertisement
Guest User

Mr. Robot easter-egg S02E04

a guest
Jul 29th, 2016
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. # @dustyfresh Mr. Robot easter egg S02E04. Elliot is handed a folder with instructions for migrating a Tor hidden service. When you look at the IP on the paper you will see it's a load balancer:
  2.  
  3. [dustyfresh@trap ~]$ nmap -sV 192.251.68.251
  4.  
  5. Starting Nmap 7.12 ( https://nmap.org ) at 2016-07-29 00:35 CDT
  6. Nmap scan report for 192.251.68.251
  7. Host is up (0.27s latency).
  8. Not shown: 999 filtered ports
  9. PORT STATE SERVICE VERSION
  10. 80/tcp open http-proxy F5 BIG-IP load balancer http proxy
  11. Service Info: Device: load balancer
  12.  
  13. Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
  14. Nmap done: 1 IP address (1 host up) scanned in 41.48 seconds
  15.  
  16. [dustyfresh@trap ~]$ curl -IvL 192.251.68.251
  17. * Rebuilt URL to: 192.251.68.251/
  18. * Trying 192.251.68.251...
  19. * Connected to 192.251.68.251 (192.251.68.251) port 80 (#0)
  20. > HEAD / HTTP/1.1
  21. > Host: 192.251.68.251
  22. > User-Agent: curl/potato
  23. > Accept: */*
  24. >
  25. * HTTP 1.0, assume close after body
  26. < HTTP/1.0 302 Found
  27. HTTP/1.0 302 Found
  28. < Location: http://i251.bxjyb2jvda.net/
  29. Location: http://i251.bxjyb2jvda.net/
  30. < Server: BigIP
  31. Server: BigIP
  32. * HTTP/1.0 connection set to keep alive!
  33. < Connection: Keep-Alive
  34. Connection: Keep-Alive
  35. < Content-Length: 0
  36. Content-Length: 0
  37.  
  38. <
  39. * Connection #0 to host 192.251.68.251 left intact
  40. * Issue another request to this URL: 'http://i251.bxjyb2jvda.net/'
  41. * Trying 23.11.51.61...
  42. * Connected to i251.bxjyb2jvda.net (23.11.51.61) port 80 (#1)
  43. > HEAD / HTTP/1.0
  44. > Host: i251.bxjyb2jvda.net
  45. > User-Agent: curl/potato
  46. > Accept: */*
  47. >
  48. * HTTP 1.0, assume close after body
  49. < HTTP/1.0 200 OK
  50. HTTP/1.0 200 OK
  51. < Server: Apache
  52. Server: Apache
  53. < Last-Modified: Thu, 28 Jul 2016 03:11:09 GMT
  54. Last-Modified: Thu, 28 Jul 2016 03:11:09 GMT
  55. < ETag: "c242f-284e-538a97c43cd40"
  56. ETag: "c242f-284e-538a97c43cd40"
  57. < Accept-Ranges: bytes
  58. Accept-Ranges: bytes
  59. < Content-Length: 10318
  60. Content-Length: 10318
  61. < Content-Type: text/html
  62. Content-Type: text/html
  63. < Cache-Control: max-age=15457581
  64. Cache-Control: max-age=15457581
  65. < Expires: Tue, 24 Jan 2017 03:27:48 GMT
  66. Expires: Tue, 24 Jan 2017 03:27:48 GMT
  67. < Date: Fri, 29 Jul 2016 05:41:27 GMT
  68. Date: Fri, 29 Jul 2016 05:41:27 GMT
  69. < Connection: close
  70. Connection: close
  71.  
  72. <
  73. * Closing connection 1
  74.  
  75. When visiting it in your browser you get some nice ascii-art of the Tor onion logo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement