Hacking Out of a Network - Computerphile

Sdílet
Vložit
  • čas přidán 26. 08. 2021
  • Multiple ways to break through restrictions in a network* demonstrated by Dr Richard G Clegg of Queen Mary University London.
    *Please only try these methods on machines where you have permission.
    Richard has kindly prepared some notes: bit.ly/C_RichCleg_HackOut
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

Komentáře • 425

  • @Bibelogram
    @Bibelogram Před 2 lety +540

    “Only do this at home” 1min later… “imagine you are in a train”…

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +161

      Imagine you are on a train -- but actually you are at home not violating the terms of service of a train company -- that's my official position. :-)

    • @PatentedSugar9
      @PatentedSugar9 Před 2 lety +52

      You don't have trains in your house?

    • @warrenarnold
      @warrenarnold Před 2 lety +6

      I just use node vpn😅

    • @DeJayHank
      @DeJayHank Před 2 lety +13

      Yes.. "imagine" is the keyword here

    • @Stl71
      @Stl71 Před 2 lety +6

      I think he means "Practice that at home"...:-)

  • @_..---
    @_..--- Před 2 lety +504

    "do not try this at home" "no, only try this at home", lmao, I am somewhat conflicted on this

    • @georgejones5019
      @georgejones5019 Před 2 lety +11

      Try at home in you home lab. Lol

    • @kosmonautofficial296
      @kosmonautofficial296 Před 2 lety +20

      Here I will simplify it.
      Rule 1: Don’t try this at home
      Rule 2: Try this at home

    • @TheStevenWhiting
      @TheStevenWhiting Před 2 lety +3

      But its back to "Do not try this at home if your parents have put locks in place for a reason" :)

    • @debjyotidutta1271
      @debjyotidutta1271 Před 2 lety

      Arent we working from home?

    • @user-zn4pw5nk2v
      @user-zn4pw5nk2v Před 2 lety +1

      Only try This at home =/= Try this Only at home
      Didn't he say the second(as in, not on the net)?

  • @lawrenceplays
    @lawrenceplays Před 2 lety +49

    Students are the best people to ask about how to bypass networks.

  • @jonathanmartins7744
    @jonathanmartins7744 Před 2 lety +113

    We need more technical content like this! Great job!

  • @IrrevocablyZoey
    @IrrevocablyZoey Před 2 lety +71

    I feel like this is how many kids get interested in computers.

    • @lerssilarsson6414
      @lerssilarsson6414 Před 2 lety +10

      Just for educational purposes only... ;-)

    • @aliveandwellinisrael2507
      @aliveandwellinisrael2507 Před rokem +3

      During high school, it was incredible to see how even the least tech-interested kids figured out network shares and a bunch of other things when it let them play games in class etc lol

  • @bsvenss2
    @bsvenss2 Před 2 lety +75

    04:35 UFW is actually _Uncomplicated Firewall_ . It's "only" a Python "wrapper" for iptables.

    • @kevinjones5001
      @kevinjones5001 Před 2 lety +1

      Tnx, I was scrolling to see if anyone else had noted this.

    • @benlaney3083
      @benlaney3083 Před 2 lety

      @@kevinjones5001 Same! Glad someone(s) was on it haha

    • @daffy1981
      @daffy1981 Před 2 lety

      @@kevinjones5001 there are 17 people who noted this in the comments :)

  • @___________2204
    @___________2204 Před 2 lety +6

    This format of screen-sharing is soooo much better than other videos. Please maintain this format of showing everything on the screen. So helpful and so much easier to understand

  • @pv2b
    @pv2b Před 2 lety +255

    10:54 Unfortunately, this whole section here about TCP over TCP is incorrect in this case. Yes, if you're tunneling raw IP packets over TCP (and there are ways to do this with SSH, for instance using the -w option, running PPP over SSH, or with OpenVPN over TCP, as well as a million other ways), you do end up with the TCP-over-TCP meltdown you are explaining quite correctly. But, if you're using SSH's "dynamic port forwarding" mode which emulates a SOCKS proxy, there is no TCP over TCP at all going on.
    There's TCP running between your client software and the SSH client's SOCKS proxy emulator, TCP running between your SSH client and the remote SSH server, and also TCP running from the remote SSH server to the tunnel destination. These are all seperate TCP connections, and none of them of them running "over" each other. They're conseptually connected end to end, not over each other.
    There's no raw IP packets going over the SSH tnnel, and thus no TCP. Only the data beloning inside the stream as multiplexed as multiple channels in SSH. TCP retransmissions will happen on every TCP stream, but there's no redunant layer of TCP happening end-to-end over the actual tunnel, and no duplication of retransmission for that reason.
    That said, because everything you're doing ends up passing through a single TCP connection, that can definitely be a bottleneck, but for other reasons.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +47

      Hmm... The version I show via the proxy is using netcat to transfer data - that certainly is TCP over TCP no? But in the simpler version where do you think the code opening the TCP connection to the final destination runs? At the same side of the firewall as the web browser or at the same side of the firewall as the web server? I can't easily find an answer to that. If that TCP connection originates outside the firewall you are right but I did not think that was how it is working.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +96

      I think you may be right here. It shows even when you use tools for many years you can still learn things. When I was reading for this article I came across many pages confidently claiming that ssh -D was TCP over TCP but I think you are correct.

    • @pv2b
      @pv2b Před 2 lety +49

      @@richardclegg8027 Hi! Proxy using netcat is also not TCP over TCP. Same as with ssh -D, it's not a TCP session inside a TCP session, it's data exiting from one TCP session and then entering another TCP session. I.e. you're only tunneling the actual data inside the session, you're not tunneling the TCP headers or the retransmssions. The only way you'd get TCP over TCP is if you're running IP over TCP, for example if you're using some kind of VPN software that uses TCP as a transport for IP packets.
      To be clear, none of the scenarios you've shown in this video will do IP over TCP and thus not TCP over TCP.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +69

      You are right. In days past a similar thing was done with ppp or slirp over ssh which did work like that. I guess this is why the TCP over TCP idea propagated for ssh -D (not helped by the sshtunnel docs which while correct don't clarify). When I read about it lots of places made the claim your explanation is correct.

    • @Lodinn
      @Lodinn Před 2 lety +5

      Ah yes, spent a while troubleshooting that ovpn over tcp a few weeks ago...
      Thanks for the knowledge!

  • @cwtrain
    @cwtrain Před 2 lety +100

    "Let's get the OHP up."
    Smacked me right back to elementary school.

    • @rkkm67
      @rkkm67 Před 2 lety +4

      I didn't understand could you explain?

    • @Pat315
      @Pat315 Před 2 lety

      @@violet_flower And private schools

    • @karstenengel9014
      @karstenengel9014 Před 2 lety +1

      OHP isn't hacked since 1920

  • @JakeFlakes
    @JakeFlakes Před 2 lety +31

    My professor 2 years ago tried to explain ssh tunneling for the same length of time as this video and failed miserably. Dr. Clegg explained in half the time and even talked about other ways of doing this while being easy to comprehend. Great video

    • @FutureBoyWonder
      @FutureBoyWonder Před 2 lety +5

      Or maybe between the two your brain put it together?

    • @sophiamarchildon3998
      @sophiamarchildon3998 Před 9 dny

      The difference was that you wanted this, while you were subjected against your will and professor. Also, you had previous ground-work enabling easier learning. Perhaps?

  • @TheInternetHelpdeskPlays
    @TheInternetHelpdeskPlays Před 2 lety +100

    I remember using proxy tunnels way back in the early 2000s. I found a bank in France that had full internet access and proxied in to that over port 8080.

  • @derickasamani5730
    @derickasamani5730 Před 2 lety +129

    that's how network engineers are born.... trying to bypass censorship

    • @jursamaj
      @jursamaj Před 2 lety +1

      "The Net interprets censorship as damage and routes around it" - John Gilmore

    • @thewhitefalcon8539
      @thewhitefalcon8539 Před rokem

      @@jursamaj when do we bypass musk's twitter?

    • @jursamaj
      @jursamaj Před rokem +3

      @@thewhitefalcon8539 Whenever you decide to quit using Twitter.

  • @eriksundell1400
    @eriksundell1400 Před 2 lety +61

    "try this at home but not anywhere else at all" ---> "so now let's imagine you're on a train or in an airport where the administrator is not giving you full access..."
    That escalated quickly.

  • @danijeltasov1432
    @danijeltasov1432 Před 2 lety +45

    Yes, TCP over TCP is bad. But there is no TCP over TCP in this case. There are just 2 TCP connections in serial. If you use ssh -w, that would create a tunnel where you are doing tcp over tcp.

    • @pv2b
      @pv2b Před 2 lety +3

      Right on, this part is just completely wrong.

  • @scott5146
    @scott5146 Před 2 lety +146

    I just run a VPN server at home, and anywhere I've been (including China) I can just VPN back home and get full normal access to everything.

    • @GapWim
      @GapWim Před 2 lety +7

      Haven’t been to China … but yes, I do the same and it works quite nicely :)

    • @locust76
      @locust76 Před 2 lety +14

      Same. I actually had to do this to get around some UDP throttling that a hotel in London was doing to prevent people from using their WiFi for VoIP and video chat.

    • @LanceMcCarthy
      @LanceMcCarthy Před 2 lety +16

      Wireguard FTW

    • @Centigradius
      @Centigradius Před 2 lety +2

      It even works on airline wifi.

    • @LanceMcCarthy
      @LanceMcCarthy Před 2 lety +5

      @@Centigradius I also use a site-to-site IPSec VPN between two UDM Pros. No matter where I am, I'm always connected to my home network, which is also connected to the other house network. It's nice to avoid all the guest network monitoring and tracking.

  • @TimDunstan
    @TimDunstan Před 2 lety +195

    I did this years ago to get around my University's firewalls to play games online... :D

    • @georgebizos944
      @georgebizos944 Před 2 lety +17

      Ah back in the days of Flash games...

    • @kelvinluk9121
      @kelvinluk9121 Před 2 lety +27

      I used to do the opposite
      hosting a game server on school machine
      and tunnel it out with ssh tunneling
      and my fds and I can all enjoy free game server hosting

    • @MuhammadHanif-bx4pb
      @MuhammadHanif-bx4pb Před 2 lety

      hehehe

    • @Ceelvain
      @Ceelvain Před 2 lety +3

      So did I, back in 2005.

    • @theblackwidower
      @theblackwidower Před 2 lety +1

      Why were they blocking online games?

  • @mini_bomba
    @mini_bomba Před 2 lety +50

    4:32 Nope, it's "Uncomplicated FireWall"

    • @DaPanda19
      @DaPanda19 Před 2 lety +10

      Ultimate firewall seems pretty cool though

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +27

      My apologies for this! You are of course correct.

  • @patrickjones9474
    @patrickjones9474 Před 2 lety +3

    One of the very few videos I have watched more than once. Please do more high quality content.

  • @MontyGeorgiev
    @MontyGeorgiev Před 2 lety +4

    Really nice video. This is what inspires people.
    And then you introduce a NGFW with SSL and SSH decryption and loose all the magic.

  • @tracyrreed
    @tracyrreed Před 2 lety +5

    I've used iodine DNS tunnel for years. It's not fast or efficient but it works. Nobody has ever noticed and none of the many environments I am familiar with monitor DNS traffic for stuff like this.

  • @hjk3927
    @hjk3927 Před 2 lety +9

    DNS tunneling was used in the SUNBURST (Solarwinds) attack last year, so not sure a normal admin would have detected that method.

    • @techscw
      @techscw Před 2 lety +5

      If you have your alerts popping on known TTPs, even on simple things like duration, or constant dns traffic from a single endpoint that deviates from the baseline configuration, you can at least look at it and see if that is explained behavior or not and adjust your alerts accordingly. But to your point, it often takes a mature SOC dedicated to notice these things,

  • @cakeman1715
    @cakeman1715 Před 2 lety +1

    transmitting data as a subdomain to bypass a firewall is the most hacky janky thing I've ever heard of and I love it.

  • @TheStevenWhiting
    @TheStevenWhiting Před rokem +2

    We used to do this SSH tunnel way back in 2007 to break out of the NHS network to connect to home. Was a 2nd line engineer and sick of 3rd line monitoring anything you did. Got more work done with that tunnel than without it.

  • @casPifiction
    @casPifiction Před 2 lety +2

    I really enjoy the networking Videos! Hoping for more :)

  • @Spasmomen
    @Spasmomen Před 2 lety +7

    I traveled around Turkey this month. I had a local sim card for data (Vodafone). There was one region (Antalya) where it wouldn't allow me to connect to my home wireguard peer. Also VPN provider websites had been blocked e.g. Mullvad. This wasn't the case in Istanbul, Mersin or Fethiye regions, very strange.
    I'm using a non-default port for wireguard, maybe I should try port 443.

  • @wertperch
    @wertperch Před 2 lety +1

    I'm impressed by the fact that his computer is named for a character from Mervyn Peake's Gormenghast novel. Not that your presentation wasn't interesting, Dr Clegg, but my excitement that I'd found another Peake fan eclipsed all else!

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +5

      I generally call the largest machine I own gormenghast, the cutest fuschia and the smallest barquentine. :-)

  • @koryusai
    @koryusai Před 2 lety +9

    So as a network engineer having to defend these issues when setting up networks like such as a "guest" network. For this, I don't use a layer 4 firewall(such as an ASA without firepower) which is what seems to be on the topic for this video. More used in this situ' is a layer 7 Firewall(such as a Palo Alto) where you can allow based on application rather than "Service Port" for "guest" network on a Palo only allow the following applications: dns, web-browsing & ssl. Another option could be adding in decryption for other networks, it doesn't really work for a guest network. Also, I would like to see what you suggest for application(L7) firewalls and to bypass these...

  • @cj5925
    @cj5925 Před 2 lety +2

    Great Resource 🙌🏻🙌🏻

  • @thegingebot
    @thegingebot Před 2 lety

    Wow, this video really highlights the high quality of comp. sci. coming out of Nottingham University compared to others!

    • @johnvonhorn2942
      @johnvonhorn2942 Před 2 lety

      Dr Clegg is from Queen Mary University, London

    • @thegingebot
      @thegingebot Před 2 lety

      @@johnvonhorn2942 my point exactly 😉

  • @randy7894
    @randy7894 Před 2 lety +4

    The word "Disclamer" made me enthusiastic.

  • @gopro2804
    @gopro2804 Před 2 lety

    This was fascinating.

  • @MoZz..
    @MoZz.. Před 2 lety

    really liked this video, also i like richards way of explaining this stuff. :)

  • @sp10sn
    @sp10sn Před 2 lety +12

    Him: Hey, Internet, don't use this exciting information in any way.
    Internet: 👍🤔😏

    • @swagmankayearIQ
      @swagmankayearIQ Před 2 lety +3

      hes talking about very basic things you learn on day 1 networking.

  • @segunzeesojoski
    @segunzeesojoski Před 2 lety +7

    First!
    No CZcams? I'm definitely doing this... just to watch Computerphile. Just that. Honestly.

  • @northcode_
    @northcode_ Před 2 lety +14

    Vpn over port 53. Can even bypass a lot of wifi paywalls iirc because they still allow DNS requests

    • @Phroggster
      @Phroggster Před 2 lety +2

      Many internet service providers here in the United States will reroute any UDP/53 traffic to their preferred nameserver to facilitate user tracking. Other "better" internet service providers will merely monitor UDP/53, but then frequently deny packets that aren't legitimate DNS requests.
      As nice and decentralized as our modern internet is, there's some of the worst, most power-hungry people in the world acting as gatekeepers to it.

    • @president8
      @president8 Před 2 lety +3

      @@Phroggster So if you want to use Google DNS for example, they will send requests to their private DNS Server? is that even legal?

    • @adrianpopagh
      @adrianpopagh Před 2 lety +2

      @@Phroggster VPN over DNS uses valid DNS packets (query/answer), so it looks correct on inspection. Except the fields contain some gibberish data (data encoded with uuencode or some similar encoding). The way a next gen firewall can stop it is with "Domain reputation" - your domain may not be known enough, or not part of the allowed categories. Also intermediary servers may cache replies longer than the TTL value, which can cause mayhem.

  • @DreckbobBratpfanne
    @DreckbobBratpfanne Před 2 lety

    Besides the interesting topic, i like the sound effect used for the firewall at 1:53 xD

  • @nova8585
    @nova8585 Před rokem +1

    19:10 So for the web proxy protection explanation, the workaround where the exit address gets remapped to :22 only works if you have admin control over the web proxy itself right?

  • @HerozTech
    @HerozTech Před 2 lety +1

    Just a quick note.
    We are going to try everything you are saying here

  • @AdamReece87
    @AdamReece87 Před 2 lety +7

    Anyone else notice port 456 blocked "related to mail" (at 4:48)? Me neither. :)
    Almost certaionly meant to be port 465, for SMTP over implicit SSL/TLS.

    • @teh_jibbler
      @teh_jibbler Před 2 lety

      Is smtp not related to mail?

    • @AdamReece87
      @AdamReece87 Před 2 lety +2

      @@teh_jibbler Very, but port 456 is (commonly) not. Looks like Richard needs to change that to 465 to refer to the common SMTPS port.

  • @agemoz
    @agemoz Před 2 lety +28

    “lets get the ohp up”
    something i haven’t heard in a loooong time

    • @agemoz
      @agemoz Před 2 lety +7

      for those who don’t know, ohp: over head projector (made with lights, magnifying lenses and mirrors)

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +3

      Yes -- showing my age a bit.

  • @just_noXi
    @just_noXi Před 2 lety +12

    Someone I know did that a century ago. (A bit more sophisticated, it was encapsulating everything in multiple TLS streams.) IT security can break normal work so easily. A few years after he established this, someone contacted me. Asking why there was so much traffic to that address from that machine. I said it was a leftover test that seemed to be still running and I cut it down. Since then our security got much better, much more defined and more relaxed. No need to tunnel, no need to dig holes, everyone is happy and safe. Too much security is as dangerous as too less security.

  • @coltonthomas3658
    @coltonthomas3658 Před rokem

    Dr Richard Clegg looks like a magician

  • @hloboy8811
    @hloboy8811 Před 2 lety +1

    Thank you 🙏

  • @baddealrage
    @baddealrage Před 2 lety +4

    Yeaa.. it remember me the day our IT teacher had to explain how to bypass the school proxy server to setup our own proxy lab. Using proxy for home purposes is irrelevant these days in my option. VPN over 443 and remote sessions (can also be 443) are way more secure and reliable.

  • @tyjohnston5889
    @tyjohnston5889 Před 9 měsíci +1

    Ok. I ssh'ed into Dr. Clegg's home server. Who are all the babes you have 1TB of pictures of?
    BTW: Thank you very much for your time you spent with explaining this Dr.

  • @NG8MuthaFukka
    @NG8MuthaFukka Před 2 lety +2

    With great power, comes great responsibility 👍

  • @7n7o
    @7n7o Před 2 lety +1

    Good video

  • @simonlyons5681
    @simonlyons5681 Před 7 měsíci

    Love it !

  • @DM-yj9qf
    @DM-yj9qf Před rokem

    this is better than most network course labs

  • @HellCatLeMaudit
    @HellCatLeMaudit Před 2 lety +1

    I love this video. Though he left out the part about the best tool for tunneling out of a network: GCC and a copy of Stevens.

  • @DiogoNeves
    @DiogoNeves Před rokem +1

    I’m sure students do this a lot. What are the consequences? At uni for example, would they be in trouble? I noticed libraries lock well

  • @cheaterman49
    @cheaterman49 Před 2 lety

    I like that last point!

  • @strayling1
    @strayling1 Před 2 lety

    This gave me flashbacks to using 'cu' to hop around different machines on our LAN. ~.

  • @Seegalgalguntijak
    @Seegalgalguntijak Před 2 lety +1

    I would really like to know whether I can reach my server via ssh from inside a network which only lets ports 80 and 443 pass - but without having to change the port my ssh server is listening to. What would be needed for that?

    • @luxraider5384
      @luxraider5384 Před 2 lety

      in the video he only router a port to point to the port 22, he didn t change the port of his ssh

    • @Seegalgalguntijak
      @Seegalgalguntijak Před 2 lety

      @@luxraider5384 Yes, that was my question: What if port 22 is blocked in a network, and I need to ssh into my server? I did actually configure my NAT in such a way that incoming traffic goes through another port than 22 (because of the massive load of annoying attempts to log in with a password and some random username, which was never active in the first place). So my question is: Is there a way to have a packet go out on port 80 on my machine and arrive on port, let's say 18650 (for example) on my home server? If so, I'd love the syntax for that ssh commnand - I only know the option -P for the general port (outgoing and incoming). But I'm not sure whether TCP is even capable of having a packet go out on port x and arrive on port y?

  • @johnxu6751
    @johnxu6751 Před 2 lety +1

    Correct me if I am wrong, but I don't think ssh tunnel is TCP over TCP. ssh tunnel acts like a normal TCP proxy, only that the connection in between the ssh client and ssh server is encrypted, it does not preserve the original TCP header.

    • @pv2b
      @pv2b Před 2 lety

      You are not wrong. You are in fact absolutely correct.

  • @OnE61811301
    @OnE61811301 Před 2 lety +4

    A few comments on the last part - not entirely true - in modern web traffic, it's extremely difficult to differentiate between a "normal" ssl websocket traffic and a long-living tunnel. It can be done by pattern analysis, but I doubt train ISP providers monitor for that.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety

      I think you're thinking of websites like gmail that keep alive a long-lived connection. The normal case for SSL is that you make a connection download the website and close the connection. Gmail (and a few other sites) keep the connection alive for extended periods in order to avoid the connection overhead of SSL set up -- but they are the exception more than the rule and their traffic pattern is quite distinctive.

    • @OnE61811301
      @OnE61811301 Před 2 lety +3

      @@richardclegg8027 many websites keep long-running connections - for example notifications, event tracking, data streaming, etc. Also, you have to consider the new technologies coming like spdy and http/2 which (very simplistically said) relies on long-lived connections to minimize roundtrips to the server.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +1

      These days though I think most traffic to Google (certainly from Chrome) is actually over QUIC and they deprecate SPDY.

    • @OnE61811301
      @OnE61811301 Před 2 lety +1

      @@richardclegg8027 you're right. I've not followed things recently. I see QUIC runs on UDP, which again can be a carrier for a vpn tunnel. In this case too, you need a pretty sophisticated analytics to pick a tunnel from regular traffic. Maybe it'd be even more difficult as everything is split and mangled in a ton of UDP datagrams. The most important thing is practicality :) If a very simple proxy would keep 99.99% of teenagers from watching 4k youtube on the free wifi, I don't think someone would invest in traffic pattern recognition for those cases :) The cost of running this would certainly outweigh simply providing fast free wifi...

  • @ScarletDeath
    @ScarletDeath Před 2 lety +2

    when i was in college in the mid 2000s they tried banning bit torrent in the dorms, but they weren't very secure back then so I just tunneled out using UDP and was able to access non-throttled internet speeds too (15kbps wired in the dorms for all data, 20mbps after tunneling out) stuff is more complicated now though i think, but i thought i was a badass back then haha XD

  • @rooteduser623
    @rooteduser623 Před 2 lety

    Cheers... off to try this on my mates computer now

  • @MalongaModeste
    @MalongaModeste Před rokem

    Is the computer connected to internet and firewall not allowing you to go anywhere ? Can you advise please

  • @TonyRule
    @TonyRule Před 2 lety +1

    How will any of this work if you don't have local device admin rights and network authentication prohibits LAN devices that don't match a specific criteria i.e. MAC address?

    • @scoreunder
      @scoreunder Před rokem

      mac spoofing is trivial, and you could either get that from the original machine or sniff it. you'd probably have to power it off if you wanted a reliable connection though

  • @To-mos
    @To-mos Před 2 lety

    Ok mad points for the old school dot matrix printer paper.

  • @code-dredd
    @code-dredd Před 2 lety +2

    The U in UFW stands for Uncomplicated, not Ultimate.

    • @richardclegg8027
      @richardclegg8027 Před 2 lety +1

      Yes apologies for the mistake. I am blushing. Should have checked even though it is a tool I use all the time

  • @MEhsan-bi2tf
    @MEhsan-bi2tf Před 2 lety +2

    Great explanations. Also a light noise reduction would be amazing.

  • @TymexComputing
    @TymexComputing Před 2 lety

    Reliable protocol doesnt need the loss :) - it only can accomodate to the loss - its not needed - if you have a local 10mbps link in your computer - you can set it up to send with that rate, choose any buffer (at home....ofc :) ) and tcp will be working very much without a loss on a connected switch 1gbps inter-network - local IP stack implementation will not allow that TCP connection to start getting congested at 10mbps (of course if your 1gbps inter-network wont start getting congested, or switch power ASIC capacitors wont stop being congested :)

  • @thewhitefalcon8539
    @thewhitefalcon8539 Před rokem +1

    I don't think that SSH+SOCKS run TCP inside TCP. The TCP is unpacked on your own computer and the actual data is sent directly over SSH.

  • @julienyt1600
    @julienyt1600 Před 2 lety

    There are also solutions like guacamole that you can run on the target machine and just serve it under a simple web service. (VNC/RDP or an ssh console)

    • @richardclegg8027
      @richardclegg8027 Před 2 lety

      I hadn't come across guacamole -- thanks for the recommend.

  • @restorer19
    @restorer19 Před rokem

    I've never had to go much further than SOCKS over an SSH tunnel on a nonstandard port to bypass poorly-monitored outgoing firewalls. Mostly useful for large businesses with many locations, who provide internet access as a perk to their customers, where individual locations rarely have a dedicated IT staff (restaurants, bars, coffee shops, department stores, salons, spas, outpatient clinics, etc.). Use with caution, and only on the isolated guest wifi, if you're stuck in a hospital and have to get actual work done.

  • @jabeavers
    @jabeavers Před 2 lety

    Is it possible to block the application/ssh communication based on what ssh is sending rather than simply blocking a port?

    • @aliveandwellinisrael2507
      @aliveandwellinisrael2507 Před rokem

      There are firewalls that examine the packets and block based on the type of communication it matches.

  • @tekvax01
    @tekvax01 Před 2 lety

    What about arp cache poisoning? Does that still work as a man-in-the-middle route traffic bypass?

    • @aliveandwellinisrael2507
      @aliveandwellinisrael2507 Před rokem

      That takes me back.. used to have quite a bit of fun with that in the XP days. Haven't tried it in a while for anything, but I would imagine it would attract a lot of attention.

  • @guilherme5094
    @guilherme5094 Před 2 lety

    Nice!

  • @stardustsong1680
    @stardustsong1680 Před 2 lety +14

    In China, we call it 翻牆 and almost every coder must learn to use it before start coding.

  • @AlexGeek
    @AlexGeek Před 2 lety

    I guess blocking port 456 is a typo. SMTPs is on port 465 instead

  • @jeffreyblack666
    @jeffreyblack666 Před 2 lety +2

    If they are using a firewall with a whitelist, doesn't that mean that you need to have your proxy whitelisted?

    • @russell2952
      @russell2952 Před 2 lety

      You must have missed him waving his hands.

  • @paaao
    @paaao Před 2 lety

    I just set my home firewall to listen on 443, and forward via NAT to my ssh server. So in a nutshell, just set your ssh server to listen on port 443 instead of 22. It's not that complicated.
    Very secure networks will close your connection after about 30 seconds, and you'll have to create a script to re-init the ssh tunnel, and close it, over and over.
    Also, most networks other than maybe a work network, which still could probably be argued in court, have you agree to not access certain things via their network. If your house isn't one of those things, then technically ssh to your own home server is fair game. Where you go from home isn't technically in their jurisdiction. If their machine is only connecting to yours, then you have ground to stand on. What your machine connects to, is none of their business. But make damn sure your DNS requests are also going to and through your home machine.
    Most companies now have a catch all policy that includes not using their provided computers to access XYZ sites. So at that point, you may be hosed. In the end, any admin with enough time on their hands to see that you are using port 443 for different amounts of time, or triggering a disconnect time out rule, is going to have such a hard time proving the rest, plus all the extra hassle of doing so. They're probably going to just pull you aside and say, please don't keep doing this, because eventually I'm going to have to explain it to someone and force it to stop.

    • @robstamm60
      @robstamm60 Před 10 měsíci

      I would do this almost everywhere but certainly not in a work environment - an encrypted connection to an unknown destination out of a company network is a big no (could be company secrets) - if I REALLY need access to X I will let IT know and escalate it if necessary 😊

  • @asishreddy7729
    @asishreddy7729 Před 2 lety +2

    Man, this seems so clever and scary to me at the same time.

    • @tanmaypanadi1414
      @tanmaypanadi1414 Před 2 lety

      its very nicely presented here.frankly this is something my school mates and I have used to check social media,in school computer lab , since it was heavyly firewalled network.

  • @tenminutetokyo2643
    @tenminutetokyo2643 Před 2 lety

    That's nuts!

  • @thomasblackwell9507
    @thomasblackwell9507 Před 2 lety

    A Stalag 17 special!

  • @jimbolino
    @jimbolino Před 2 lety +3

    4:34 UFW = Uncomplicated Firewall :)

  • @Kris_T_
    @Kris_T_ Před 2 lety

    Yes, but have you got fork handles?

  • @djtjpain
    @djtjpain Před 2 lety +1

    4:40 UFW is Uncomplicated Fire Wall or at least that’s how I’ve seen it

  • @HassanOmariprofile
    @HassanOmariprofile Před rokem

    Nc command, I will add this to my arsenal 😁

  • @stevenmcdonald1901
    @stevenmcdonald1901 Před 2 lety

    Wish I could draw that fast in Visio.... Also sudo assumes the right access, ssh assumes the right RBAC in that environment

  • @wolfy9005
    @wolfy9005 Před 2 lety

    One time at work we wanted to access some site to view various things. Turns out their firewall was only plain text, using the IP address directly worked a charm

  • @ArthurKhazbs
    @ArthurKhazbs Před 2 lety +2

    Actually, "Uncomplicated FireWall" - not as exciting

  • @bjarkih1977
    @bjarkih1977 Před 2 lety +9

    Closing port 22 is one of the first things I do when setting up a new install :)

    • @president8
      @president8 Před 2 lety +2

      It doesn't make your Security better at all... Eventually you face Problems one by one

    • @bjarkih1977
      @bjarkih1977 Před 2 lety

      @@president8 Certainly, but it will remain on my checklist of things to do.

    • @theantipope4354
      @theantipope4354 Před 2 lety +2

      The best set up is blocking every port by default, & only opening the exact ones you need, & only then when you've done your best to protect those particular ports. Eg; only opening SSH after you've created a white-list of permitted SSH source / destination sites.

    • @president8
      @president8 Před 2 lety

      @@bjarkih1977 but why at all?

    • @bjarkih1977
      @bjarkih1977 Před 2 lety

      @@president8 It's the most obvious place to attack for unsophisticated attacks. Also, why not?

  • @kappa2454
    @kappa2454 Před 2 lety

    my man

  • @IronCandyNotes
    @IronCandyNotes Před 2 lety +2

    The SSHawshank Redemption

  • @tomsgrinbergs8020
    @tomsgrinbergs8020 Před 2 lety

    Isn't ufw "uncomplicated firewall"?

  • @liam3284
    @liam3284 Před rokem

    There are other ways for TCP to know it is congested, change in delay or ECN (Explicit Congestion Notification).

  • @Dj_JohnMac
    @Dj_JohnMac Před rokem

    dns tunnel pretty simple to setup , I find the ssh tunnelling frys my brain half the time

  • @proehm
    @proehm Před 2 lety +1

    It has become necessary (in this day and age) to change your exposed ssh port anyway in order to avoid a few thousand attempted malicious logins everyday anyway. Making ssh available on something like port 62244 keeps your auth.log from growing too large.

  • @locust76
    @locust76 Před 2 lety +3

    6:58 should have edited out that “uuum” … that would have been funny 😂

  • @EricYoungVFX
    @EricYoungVFX Před 2 lety +1

    "Don't try this at home"
    *teenagers with school computers* okay lol

  • @RussTaylorLegend
    @RussTaylorLegend Před 2 lety

    As a sys admin at a school I'm incredibly entertained by this.

  • @kvatikoss1730
    @kvatikoss1730 Před 2 lety +10

    I am gonna make my school my home so I can try this.

    • @autolykos9822
      @autolykos9822 Před 2 lety

      Ah, one of the rare times someone actually learns something in school ^^

  • @treyquattro
    @treyquattro Před 2 lety +8

    the only issue here is that you have to have set up your proxies in all configurations ahead of time because you're not going to be able to get out via SSH to configure your hack. Still, interesting. I didn't know about nc!

    • @richardclegg8027
      @richardclegg8027 Před 2 lety

      Depends on what you are dealing with. If you have a server with ssh anyway then the first part of this using tunnels or sshuttle will "just work". Going via a web proxy won't though.

  • @jeffery_tang
    @jeffery_tang Před rokem

    Did anyone get the part where he talked about how to tunnel your way out of a network that only allows you to go through a proxy?

  • @berry1002
    @berry1002 Před 2 lety

    Back at school we used to rdp to a home computer to get where we wanted

  • @russell2952
    @russell2952 Před 2 lety

    The web proxy thing wasn't explained well. If everything is blocked how do you reach the web proxy? What exactly is it? No explanation was given at all.

  • @Pehr81
    @Pehr81 Před 2 lety +13

    I'm glad he says "program" and not App...

    • @mgeorgescu
      @mgeorgescu Před 2 lety

      Why? Why does it matter?

    • @phizc
      @phizc Před 2 lety +1

      I'd say it's an app if it has GUI and interactions, but a command line "do a thing and return" like curl is a program. Ssh, ftp and similar programs are still programs even if they have interactions, though. I think.

    • @lodevijk
      @lodevijk Před 2 lety

      @@mgeorgescu Maybe because nowadays everything needs to be called an App.