Using Wireshark to Sniff Out Packets from Among Us

Поділитися
Вставка
  • Опубліковано 18 жов 2024
  • In this video, I use Wireshark to sniff out packets to and from Among Us! Wireshark is a tool for intercepting and reading network packets, so I will use it to read messages from other players. One day I hope to be able to read the other players' position, but that is not possible just yet. In the future, I will release a video explaining Wireshark and how to use it. I hope you found this video interesting in some way!
    Download: www.wireshark....
    Disclaimer so UA-cam can't take the video down: This is not intended to be a tutorial on packet sniffing or "hacking", I just show what I'm doing and explain in basic terms what's happening. I am not modifying or "hacking" anything, there is nothing malicious or illegal, so don't remove this video.

КОМЕНТАРІ • 66

  • @blockify
    @blockify Рік тому +7

    "we just lost that game, *no worries though we're just here for the packets* xd"

  • @dylanmatthews7431
    @dylanmatthews7431 3 роки тому +10

    I have a question for you when it comes to wanting to crack a game. Do you personally know if there is anyone talented enough in the scene to reverse engineer the game Path of Exile? People say it's one of the worst targets they've ever attempted, with a bunch of abstraction layers and you get perma banned if you even look too long. It's a live server client and the game is free, but people want to make their own private server out of it to be able to play the content the way they want, in a non-profit fashion obviously. Any ideas on how you would go about bypassing the drm on this live service client and getting the source code for people to make their own private server out of it?

    • @littlePi
      @littlePi  3 роки тому +2

      Reverse engineering/game modding is not something I know too much about, although I will try to be helpful. Depending on what game engine it was developed on, you may be able to find a .dll injector that can capture the game files as the game is opened and played. I know Unreal Engine has one, although I'm not sure about any others. Hopefully, someone on some hacking/modding subreddit can come up with a better solution, as that's all I really can think of.

  • @RoBeaters
    @RoBeaters 5 місяців тому +2

    A question: what practical can you do by getting these packets? 😅

  • @aslanyureky
    @aslanyureky 3 роки тому +2

    I've found ip numbers of airlines manager using netstat, but there is nothing in wireshark except some nonsense tcp connections. no udp at all. what am I doing wrong?

    • @littlePi
      @littlePi  3 роки тому

      Make sure to filter Wireshark to just the addresses you are tracking, then it should be easier to see traffic. If nothing readable is showing up, it is likely encrypted and there is no easy way around that.

  • @tornadoreaper
    @tornadoreaper 2 роки тому +4

    so technically you can make among us bots?

    • @dadogwitdabignose
      @dadogwitdabignose 3 місяці тому

      Yes but there’s some token validation function in Hazel that makes it difficult.

  • @midhathrvat150
    @midhathrvat150 4 місяці тому

    Hey can you make video about captuing traffic from cloud game and how to show changes in bitrate?

  • @SzymonPmc
    @SzymonPmc 3 роки тому +7

    Somepne made a packet reading tool for among us android that tricks the server into giving it info on who the impostor js

  • @eliasazar
    @eliasazar Рік тому

    I have a question, do you see long sessions using the same src IP and dest IP and src port and dst port on UDP ? or the game keep swapping ports ?

    • @dadogwitdabignose
      @dadogwitdabignose 2 місяці тому

      The server port swaps but will always be 22023-22923 step 100

  • @stef4oben88
    @stef4oben88 2 роки тому +3

    This is sus.

  • @tips-today463
    @tips-today463 3 роки тому +2

    Hi mate , just wondering is that possible to capture an email packet that use a secure protocol

    • @littlePi
      @littlePi  3 роки тому

      Assuming Gmail is being used, no. Gmail carries out all its actions securely, using HTTPS and is done all within a browser. You could theoretically, capture what is being typed with a key-logger, but I don't think this is what you are asking for. It might also be possible to capture if the email is being sent from a desktop app, such as Outlook, but this would all be encrypted as well.

    • @tips-today463
      @tips-today463 3 роки тому

      Yeah , i've try that using email client's

  • @andron1057
    @andron1057 4 роки тому +2

    Hello, I have a question, if a person uses wireshark on a match he can know my ip?

    • @littlePi
      @littlePi  4 роки тому +10

      No, Among Us is not peer to peer. The data is sent to a server before being re-transmitted to the players. So the only IP you get is the game server.

    • @andron1057
      @andron1057 4 роки тому

      @@littlePi So there's absolutely no way somebody can get mi ip, even with programs ?

    • @andron1057
      @andron1057 4 роки тому +1

      @@littlePi I mean, is there a way someone can get my ip while playing among us?

    • @rafaelsquintero7111
      @rafaelsquintero7111 4 роки тому +2

      @@andron1057 no

    • @AndersonSilvapp
      @AndersonSilvapp 3 роки тому +1

      @@Jon-zh4fw me too.. he told the city of the people who were playing

  • @connorbollinger4418
    @connorbollinger4418 4 роки тому +2

    only seeing company Ips'. im using a wifi 2 connection with a udp filter and ipv4 capture filter. im trying to do this on zoom and am getting the same problem on every application.

    • @goshokiriza4247
      @goshokiriza4247 4 роки тому

      same with me whenever i use wireshark

    • @connorbollinger4418
      @connorbollinger4418 4 роки тому +1

      @@goshokiriza4247 i think it redirects to the company ip to add a protective layer so we cant see exactly what connection our computer is talking to

    • @ClaymorePvP
      @ClaymorePvP 3 роки тому

      @@connorbollinger4418 then why does it work for other people

    • @connorbollinger4418
      @connorbollinger4418 3 роки тому

      @@ClaymorePvP no clue

  • @jayare146
    @jayare146 Рік тому

    Possible on puzzles and survival

  • @0xddcce1
    @0xddcce1 2 роки тому

    How to modify the packets? I havent found the option to do so

    • @katersaid11
      @katersaid11 Рік тому +1

      The packets are usually sent so fast that you can only change them if you develop a corresponding software with which you can automatically intercept, change and forward packets. This must also be done quite quickly, otherwise you will get a timeout.
      That means you can now learn a lot about network communication and a low level programming language like C or C++. Well, strictly speaking C++ is high level but compared to Java, Python, C# it is low level.
      Low level means that you have much more freedom than with a high level language. C++ is also used for developing operating systems. With Java or Python it is practically impossible.
      Instead of intercepting packets, you could theoretically just send packets directly to the server. However, you must also consider that you are then more limited. You would then have to start with socket programming. You can also do this with Python or something similar.

  • @devkhaira1306
    @devkhaira1306 Рік тому

    Thank you for this

  • @bwah9481
    @bwah9481 3 роки тому +1

    sus

  • @AndyThyTaylor
    @AndyThyTaylor 3 роки тому +5

    How do you know which packet to grab?!

    • @EasySecurity
      @EasySecurity 2 роки тому +1

      As I understand, he didn't he right clicked then selected follow UDP stream, which showed him the entire stream of packets put together

    • @Filo-gx6qb
      @Filo-gx6qb 2 роки тому

      @@EasySecurity I think the person that commented meant which packets to right click and follow the udp stream. As for the answer I dont know either.

    • @Hawn-_
      @Hawn-_ Рік тому

      @@Filo-gx6qb did you figure it out?

    • @WhosDaiz
      @WhosDaiz Рік тому

      @@Hawn-_ If you right click and follow any udp stream you can then change the stream bottom right until you find the right one

  • @glider6467
    @glider6467 4 роки тому +1

    doing a project, how do I sniff if a discussion has started? any tips on that?

    • @glider6467
      @glider6467 4 роки тому +1

      also your discord would be helpful to get in touch

    • @littlePi
      @littlePi  4 роки тому +1

      Isolate the message packets using a filter, they should show up if you right click -> Follow UDP. I hope this helps.

    • @Kinseliplier
      @Kinseliplier 3 роки тому

      @@littlePi that dose not exist in wireshark.

  • @yuk4z3
    @yuk4z3 2 роки тому +1

    Wtf are you saying?

  • @moonkairiki1177
    @moonkairiki1177 Рік тому

    bro is babbling

  • @CarlosEduardo-ip7yw
    @CarlosEduardo-ip7yw 3 роки тому +1

    Alguém br

  • @andresplazola2549
    @andresplazola2549 4 роки тому +1

    Bro, is there any program that can be used to know the ip of a player in among us ?

  • @DEM1GOD7
    @DEM1GOD7 2 роки тому +4

    haha when a zoomer learns about Wireshark for the 1st time... i use to use this like a decade ago word of advice before you post a youtube video you should learn a bit more no offence but the stuff you wer talking about was useless information

  • @-karsen-9791
    @-karsen-9791 4 роки тому +1

    First

  • @subbiwubbi4512
    @subbiwubbi4512 3 роки тому +1

    u got a discord? i mighht need a lil help