TCPDump: Set Up and Getting Started - HakTip 142

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 มี.ค. 2016
  • Hak5 -- Cyber Security Education, Inspiration, News & Community since 2005:
    ____________________________________________
    Today on HakTip we're setting up TCPDump in Linux!
    -------------------------------
    Shop: www.hakshop.com
    Support: / threatwire
    Subscribe: / hak5
    Our Site: www.hak5.org
    Contact Us: / hak5
    ------------------------------
    www.tcpdump.org/
    ~-~~-~~~-~~-~
    Please watch: "Bash Bunny Primer - Hak5 2225"
    • Bash Bunny Primer - Ha...
    ~-~~-~~~-~~-~
    ____________________________________________
    Founded in 2005, Hak5's mission is to advance the InfoSec industry. We do this through our award winning educational podcasts, leading pentest gear, and inclusive community - where all hackers belong.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 38

  • @shall3701
    @shall3701 8 ปีที่แล้ว +1

    Thanks! Cool "Intro" segment. I only wish they were longer. Sponsor recruiter for hire 😏

  • @wilsonr1022
    @wilsonr1022 5 ปีที่แล้ว

    i have a question i need to set up a tcpdump on the virtualbox network interface used for the host-only network how do i know the interface name of the host only network( i have it set as adapter 2 in kali linux vm).

  • @thabanihadebe335
    @thabanihadebe335 5 ปีที่แล้ว

    Awesome!

  • @Crestoify
    @Crestoify 8 ปีที่แล้ว +2

    Nice jacket snubs :)

  • @xenio550
    @xenio550 8 ปีที่แล้ว

    Awesome Video, as always!
    Only a small question:
    What's the name of the small Netbook/Laptop next to the main one? Am looking for one of these but i only find tablets these days...

    • @smpxix
      @smpxix 8 ปีที่แล้ว

      +Xenio Xenon I'm also wondering this...

    • @mclang5932
      @mclang5932 3 ปีที่แล้ว

      This is late answer, but looks like Logitech diNovo Mini bluetooth keyboard

  • @Soulfyres
    @Soulfyres 8 ปีที่แล้ว +2

    What laptop is that? :)

  • @jennoscura2381
    @jennoscura2381 8 ปีที่แล้ว +1

    A few minutes ago I started playing with TCP dump for the first time. I was having fun doing some wifi sniffing with my Hak 5 Alfa and airmon-ng. Once you set the Alfa to monitor mode with airmon it's easy to sniff the wifi. You just treat mon the same as any other interface. "sudo airmon-ng start wlan0" "sudo tcpdump -i mon0"
    That's a recipe for some fun at the coffee shop. Even more fun knowing that it's legal in the US to sniff public wifi. :) Thanks Snubs for introducing me to TCP dump. It's always nice to see another hacker chick.

  • @will16320
    @will16320 8 ปีที่แล้ว

    Good sponsor, we use them

  • @sititacharuraks8708
    @sititacharuraks8708 8 ปีที่แล้ว +1

    I never heard about the windump , i heard about just winpcap

    • @nikhilt3755
      @nikhilt3755 5 ปีที่แล้ว

      and the latest one is npcap

  • @evghentester6799
    @evghentester6799 6 ปีที่แล้ว

    The vlog is excellent. However, it's funny to see how you progressed. Now you have an awesome sponsor in this video, and a really embarrassing sponsor in a video from 2014.

  • @over00lordunknown12
    @over00lordunknown12 8 ปีที่แล้ว

    The controller that Shannon has: Why is she using/what is she doing/what does it cause?

  • @muchospantaloons
    @muchospantaloons 8 ปีที่แล้ว

    u r such a ハッカー !!

  • @ViolentOrchid
    @ViolentOrchid 8 ปีที่แล้ว +1

    is 'man splain' a real command?

    • @cyrusLtd
      @cyrusLtd 8 ปีที่แล้ว

      +ViolentOrchid man is the command splain is the first parameter given to that command. It then prints the manual (which man stands for) page of the splain command.

    • @jennoscura2381
      @jennoscura2381 8 ปีที่แล้ว

      +ViolentOrchid Yes it is. On my system there is a program called splain. So 'man splain' brings up the manual page for splain.

    • @ViolentOrchid
      @ViolentOrchid 8 ปีที่แล้ว

      +David Bischoff icwutudidthar

  • @dayworkhard
    @dayworkhard 8 ปีที่แล้ว

    not for ad. Atlassian provides great products, most of them are free.

  • @0101Matrix0101
    @0101Matrix0101 8 ปีที่แล้ว

    Speaking of dump. I just took a dump.

    • @hellokitty7654321
      @hellokitty7654321 8 ปีที่แล้ว

      too much information...

    • @hansxu5410
      @hansxu5410 8 ปีที่แล้ว

      I'm literally taking a dump while watching this

    • @jennoscura2381
      @jennoscura2381 8 ปีที่แล้ว

      computer@DutchEastIndianApplePie ~$ sudo tcpdump -i eth0 > toilet

    • @deathstroke2341
      @deathstroke2341 3 ปีที่แล้ว

      Please remove that fly

  • @aarcaneorg
    @aarcaneorg 8 ปีที่แล้ว +1

    don't use sudo su. use sudo -i instead.

    • @stylemistake
      @stylemistake 8 ปีที่แล้ว

      can you explain why?

    • @MikeTrieu
      @MikeTrieu 8 ปีที่แล้ว +1

      That seems kinda overkill to just run an arbitrary command. That flag runs all init scripts, initializes env vars, and changes the path to the home directory. What if you don't want to change from the current directory?

    • @aarcaneorg
      @aarcaneorg 8 ปีที่แล้ว +2

      for a single command, sudo is generally better. however, when running repeated commands and therefore seeking a root shell as Shannon mentions in the video, 'sudo su' uses multiple setuid root applications, and mangles the user environment, and may result in remnants in the user's home dir owned by root, which may result in problems later. 'sudo -i' by contrast properly initializes the root shell environment, sets variables like home and mail, and prevents such file artifacts from occurring accidentally. short version: understand your utilities, and don't give bad advice on the internet, like 'sudo su'

  • @DanielPianoful
    @DanielPianoful 8 ปีที่แล้ว +17

    1/2 of the video for the sponsor, 1/4 of the video for verbose introduction and 1/4 for vague content.
    2 mins of reading tcpdump man page is worth 10 times more than this ~8 min video.
    I used to love hack5 , but it has become an empty nice looking show with no more than tiny little pieces of dummies targeted information used to drop ads on us and no more.

    • @gonespral
      @gonespral 8 ปีที่แล้ว +3

      I agree

    • @AlbyTheMovieCreator
      @AlbyTheMovieCreator 8 ปีที่แล้ว +1

      They make free educational content for us. If you don't like their way to make videos, go in linux forums and look there for news and info!

    • @DanielPianoful
      @DanielPianoful 8 ปีที่แล้ว

      +AlbyTheMovieCreator actually, as I said, man pages are much better

    • @AlbyTheMovieCreator
      @AlbyTheMovieCreator 8 ปีที่แล้ว +1

      +Daniel Campoverde (Alx) just read them! So simple. I don't care they try to earn some money with the videos they make by adding ads. They make things simplier and faster, for free

    • @arwenaurelia2673
      @arwenaurelia2673 6 ปีที่แล้ว +2

      Actually, in this case, they wasted 8 min of my time and I learned nothing of use. If I'm going to be advertised to, they should at least make the effort to ensure the tcpdump tutorial is comprehensive and provides value to the viewer. Will def be avoiding snubs tutorials from now on...

  • @karelorigin4649
    @karelorigin4649 8 ปีที่แล้ว

    first lol.

    • @fooey88
      @fooey88 8 ปีที่แล้ว

      +karel origin why did you laugh out loud?

    • @karelorigin4649
      @karelorigin4649 8 ปีที่แล้ว

      +fooey88 I see what you did there;-)