Python Socket Programming Tutorial

  Рет қаралды 1,043,127

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 1 000
@SThomas1972
@SThomas1972 4 жыл бұрын
Hi nice bit of coding but there is a number of errors in your networking description. Firstly the modem is not where your public address will sit it will be on the wan interface of the router and the router is in fact firewall as it will hide the private addresses behind the public address. You are dealing with tcp ports the is 65535 ports full list en.m.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers And the number you are seeing with the received message on the server is in fact the source port. Also you would not run your server on the modem it would be run inside your net work and using Nat you would forward connections to the server via the router but this would be bad idea on a home internet connection as the router will not be secure enough as you normally what to this via a DMZ.
@TechWithTim
@TechWithTim 4 жыл бұрын
Thank you! Ya I’m no networking pro clearly. Hopefully that explanation at least have a general concept of a private network. Thanks for the comment :)
@SThomas1972
@SThomas1972 4 жыл бұрын
Tech With Tim I am a network security engineer so that is my bread and butter. I work with Nat and firewalls everyday. But happy to help you.
@younlok1081
@younlok1081 4 жыл бұрын
@@SThomas1972 i was planning to put a small server just to chat with my friends in my home internet so this is not safe ?? should i cancel the idea ?? i was going just sto specify a port in the router to get to my port is that not safe ??
@younlok1081
@younlok1081 4 жыл бұрын
@@SThomas1972 also even if it just http requests ??
@000sakis
@000sakis 4 жыл бұрын
I'm a bit confused .. when I use my public IP it says there's no such IP... I tried port forwarding my pcs IP, will that work?
@TechWithTim
@TechWithTim 4 жыл бұрын
What you guys think of that intro ;) And code is available here: techwithtim.net/tutorials/socket-programming/ . Also kindly note that there are some errors in this video, I've pinned a comment that points out some of the major ones. Sorry guys, I'm learning too and will try my best to avoid such issues in future videos!
@Joshua-dl3ns
@Joshua-dl3ns 4 жыл бұрын
awesome! :)
@rafasantos23
@rafasantos23 4 жыл бұрын
Great
@michaeldamolsen
@michaeldamolsen 4 жыл бұрын
You didn't do a terrible job at the networking primer. I would have done some of it differently, but I am an expert in the field :p The python part was excellent, clearly you are an expert in that field :) :) One thing to note on the ipconfig output: While your IPv4 address is private LAN local (RFC1918 addresses are not routed on the internet), your IPv6 prefix is publicly routed. 2607:fea8:: is allocated to Rogers Communications, and they sub-allocate to their customers, apparently as the "standard" /64 which is so handy for SLAAC. Thanks for all these excellent python videos, yours are several notches above most of what is available on youtube!
@TechWithTim
@TechWithTim 4 жыл бұрын
@@michaeldamolsen Appreciate that Micheal!
@markogartnar5658
@markogartnar5658 4 жыл бұрын
Amazing!
@Koubles
@Koubles Жыл бұрын
Despite the errors, this video is incredibly useful for getting a head-start on getting a python server running. My degree courses never really taught me python let alone sockets, so this has been a MASSIVE help getting me going with a python server I need to have interacting with a MySQL database for my senior project.
@ericbeard7007
@ericbeard7007 4 жыл бұрын
Been eating up the python content lately, finally a guy with a decent Mike and understandable explanations
@ecniv5991
@ecniv5991 4 жыл бұрын
Mike
@push2talk95
@push2talk95 4 жыл бұрын
Mike
@ericbeard7007
@ericbeard7007 4 жыл бұрын
Yeah Mikerafone. You know that thing that you speak into and it amplifies sound waves. Or the mic that autotext changes to Mike. Either or . .
@chersymale
@chersymale 4 жыл бұрын
@@ericbeard7007 Mike
@ericbeard7007
@ericbeard7007 4 жыл бұрын
I was not eing serious for people who replied
@kellyw7545
@kellyw7545 2 жыл бұрын
Spent the last two weeks trying to understand why my simple server - client simulation was not working ; I cannot count how many tutorials and searches I have waded through - wish I found you sooner - I am definately sharing your channel. Not only did you fill in some seemingly simple blanks your explanations of everything were thorough and clear and showing your process all the way through. There are so many ways to trip up if you are new to working with sockets and your video prevents just about all of them. Thank You!!
@0x544D
@0x544D 4 жыл бұрын
Thank you Tim , i will just add some infos about making a public socket over the internet : - on the server side , you will have to add a new rule of type port being used to control connections for TCP / UDP .. mostly u will be using "tcp" in both the outbound and inbound rules. - probably run the scrip as admin just to avoid possible "Permission problems" - on the Client side u just gotta whitelist the client side program/app/script to allow all sending data over a tcp port .. else just go and add a rule as an inbound rule . - be carefull , hackers might actually exploit that to access your private stuff / mess the server , so unless you know what your doing .. practice just with trusted friends or alone . - do not forget setting up port-forwarding on the router , so instead having clients reaching that port exmpl "1337" on the modem public address , they will be redirected to local_ip:1337 instead of public_ip:1337, hopefully u get that. - I would suggest using NO-IP (ddns aka "Dynamic domain name server") instead of hardcoding you public ip directly . finally , feel free to subscribe I'm making such vids maybe not as good as Tim's but we're getting there.
@aakashkukal
@aakashkukal 4 жыл бұрын
Great, now tell me how can i do this stuff
@MohammadYs77
@MohammadYs77 8 ай бұрын
The best and most comprehensive socket programming (for beginners of course) tutorial I've ever seen. Thanks to you, I understood socket programming after 6 years🧡🧡🧡🧡
@rtkevans
@rtkevans 2 жыл бұрын
Awesome video. A little late to the party here. At 28:00, HEADER = 64 bytes means the header can take up to 64 digits as chars in a string (1 byte / char). That means your header + payload string altogether can have a maximum character length of 9999999999999999999999999999999999999999999999999999999999999999.
@drluswala
@drluswala 4 жыл бұрын
I am still a beginner in Python but this was really easy to understand. Thank you Tim!
@dnetne5508
@dnetne5508 4 жыл бұрын
same - I also got to know threading on the way :'D
@CSSuccessGamer
@CSSuccessGamer 4 жыл бұрын
im also a beginner and have no clue whats going on
@aliffnabil5542
@aliffnabil5542 4 жыл бұрын
@@CSSuccessGamer same here bro i just copied the code he did without knowing what's really going on
@universenerdd
@universenerdd 4 жыл бұрын
python is a great first language, and once you learn python it is quite easy to understand others, which have an even greater flexibility than python
@universenerdd
@universenerdd 4 жыл бұрын
@@aliffnabil5542 don't be a script kiddie!
@mk677hd
@mk677hd 4 жыл бұрын
SOCK_STREAM is for TCP - which is the transport protocol widely used, not some vague thing meaning "streaming data" Other options include ones for UDP
@Clarin3t1
@Clarin3t1 Жыл бұрын
Okay I'm a CS major taking Net computing and you are a better teacher than my teacher. Thank you for saving my life!
@duckslayr
@duckslayr 4 жыл бұрын
Since you didn't know: 8 bytes can be a number up to 18 quintillion, or 18 with 18 zeros, which, when used as a header could represent a 18,000 Petabyte message. So a 64 Byte header is a bit overkill since it's 18 quintillion to the eighth power (6 x 10^57).
@TechWithTim
@TechWithTim 4 жыл бұрын
LOL ya I should have known that 😅 maybe a header of 16 bytes would have been a better choice
@dnetne5508
@dnetne5508 4 жыл бұрын
@@TechWithTim hahahahahahaha :'D
@RecursiveTriforce
@RecursiveTriforce 4 жыл бұрын
Good argument. Bad numbers. 1 Byte has 256 combinations. 64 Bytes would be 256^(64) = 1.3E+154 combinations. So lengths from 0 to 2^512-1 are possible. Fun fact: 10^80 is a common estimate for the number of atoms in the observable universe. Our number (~10^154) is almost that number squared. So you could note a bit for every atom, take those bits and write those bits into every atom. Now use the string of bits you get from reading all the bits you wrote in this process and you are still nowhere near the maximum length.
@duckslayr
@duckslayr 4 жыл бұрын
@@RecursiveTriforce Yeah, it was really rough math while I was tired and not thinking too straight. I was thinking it was near the atoms in the universe size though.
4 жыл бұрын
@@duckslayr And now let's fix the math once again. He is talking about bytes, that he reserves 64 bytes as header, but he isn't using the whole length. He takes the length of the message as a number, converts it to string and then encodes it to the header. That means the maximum number for length is 10^64 - 1. It's actually one of the most inefficient methods I've ever seen. The crash that occurred when he was testing the client the first time wasn't that there is "some empty message" that is sent after connection but the client ended the connection immediately after establishing connection. I would suggest a little bit more research on the topic and it would be good to go.
@jeffdanks6920
@jeffdanks6920 4 жыл бұрын
You are a life saver. I have been trying to study it for the past 3days and boom here you are
@JLSXMK8
@JLSXMK8 3 жыл бұрын
31:06 [WARNING]: For those of you on Windows, if you get an error saying "An operation was attempted on something that is not a socket", then make sure your "conn.close()" operation is not occurring within the "while(connected):" loop.
@mefredjikram9567
@mefredjikram9567 2 жыл бұрын
yes i have a problem with conn.close() and am not good on python would you please tell me what shall i do?
@jeffreydoty8710
@jeffreydoty8710 2 жыл бұрын
Lol I was trying to find it, thank you for the 'WARNING' was trying to find it but couldn't figure it out. Just curious, how did you know?
@parthkabra4968
@parthkabra4968 3 жыл бұрын
I got inspiration from your chatting website. I even made frontend of it, and i am learning backend from you.. Thanks for everything
@francisparent-valiquette4113
@francisparent-valiquette4113 2 жыл бұрын
Hey Tim! Just found your channel today, I was looking to implement websocket to run distant function and I have to admit I'm impress by how you manage to give enough informations so we can get started quickly without falling in the "too much informations trap". You're an inspiration for me! Thanks this tutorial is what I was looking for!
@shreyash462
@shreyash462 3 жыл бұрын
The flow of your program and explanation was SPOT ON ! Just Awesome !
@link9645
@link9645 4 жыл бұрын
Great tutorial. Recently learned how to deal with multi threading and created a chat app, and I can say socket programming is really cool.
@Christian-su1nx
@Christian-su1nx 2 жыл бұрын
Wow I was looking for this and I did not even know it lol. Transitioning to SWEnginering and was wondering how this works and here it is. Thanks!
@everton.colombo
@everton.colombo 4 жыл бұрын
Hey, great tutorial! But... while making a project of my own using sockets, I found something interesting I think you should've included: it isn't a good idea to call sockets' send() method more times than needed, because it really affects how much data you can send per second. So, instead of sending the header and the message separately, it's better to do "socket.send(send_length + message)" (once they're both encoded, ofc). Found that out after making a simple game using sockets with pygame, where each client's position would have to be sent to the server as fast as possible, and then sent to each client once more. Initially, the clients' positions updated quite slowly; after that change, they updated in almost realtime. Love your channel!
@ethanl9024
@ethanl9024 4 жыл бұрын
Cool.
@automationtesting3149
@automationtesting3149 4 жыл бұрын
This is the first time I am learning Python and it is really helpful
@pi_r_mlm
@pi_r_mlm 4 жыл бұрын
Wow ! I love this video ! A new way to speak quietly in class
@garcand
@garcand 3 жыл бұрын
Literally started my python experience with this video
@jyvben1520
@jyvben1520 4 жыл бұрын
10;45 start of programming explanation, first part was networking lan/wan info, no need to change the firewall on the client computers ! you might need to open a port range on your router and redirect that to your server and then change the firewall rules on your server to accept requests coming from your router.
@julzbuzz7243
@julzbuzz7243 3 жыл бұрын
Who the hell disliked this video? Tim God bless you brother. Please more detailed videos like this
@matiasalloatti3509
@matiasalloatti3509 4 жыл бұрын
Thank you for this incredible content! I started working on an online ccg game with what you showed in the online python multiplayer game. This tutorial make it much clear how the connection worked. Thank you again for the tutorials and keep it up with the good work!!! Best to you from Argentina!
@athatien8303
@athatien8303 2 жыл бұрын
I really like the way you taught. You always start with the big picture so everybody can get a basic understanding about the topic then go to the minor details. Not to mention that your explanation is so intuitive and simple that I think even an 8 year-old kid could understand. Keep up with the good work
@thingsiplay
@thingsiplay 4 жыл бұрын
My entire life changed when I meet you in KZbin. Again and again.
@kebman
@kebman 4 жыл бұрын
What happened? Did you get hired by KZbin?
@thingsiplay
@thingsiplay 4 жыл бұрын
@@kebman this guy helped me understanding so many concepts in Python. I am programming all the time since then.
@kebman
@kebman 4 жыл бұрын
@@thingsiplay
@johngarcia625
@johngarcia625 4 жыл бұрын
Tim, thank for the video and great explanations. I recently was on my second interview with a FAANG company, and even though I am not a programmer and stated such as I was considered for communications position. I was knocked out of the running from the position as I did not know how to open a socket (on a satellite, lol! Will not be done unless they are the owner or operator.) using python. So I search the Internet for the solution. I found that your video and explanations were what I needed. Thanks for your tutorial, I can now answer a questions about opening up a socket using python!
@injector6926
@injector6926 3 жыл бұрын
The best programming channel I seen ever is here😀
@abulaman8713
@abulaman8713 3 жыл бұрын
Love you man, I just wish ,there were "this-type" of videos for popular libraries like pygame or pyqt.... Instead of just project building ones..... again love you brother
@Shadow-oy3ut
@Shadow-oy3ut 4 жыл бұрын
Thank you Tim!!! I have been watching all your videos since 4 months ago, i love them all because you explain everything so good. I was so close ending my coding career, but you helped me up from being stuck on worthless beginner videos. And because of this video, i subscribe, like and share this video. I almost never do this on youtube, again, a HUGE THANKS!!!❤❤
@anubis_adventure
@anubis_adventure 2 жыл бұрын
Thank you! with this video I now have a good understanding about sockets programming, before I was so confused about it, I like your detailed explanation. well Done!!!
@bauerfischer3030
@bauerfischer3030 3 жыл бұрын
The SOCK_STREAM means connection oriented TCP protocol, for all that wondered :D ( 17:53 )
@achraf_1cy679
@achraf_1cy679 3 жыл бұрын
you can open multiple terminals in vs code at the same time, nice tutorial btw
@abimbolaobadare6691
@abimbolaobadare6691 4 жыл бұрын
love the new intro tim. Boss mode activated
@bibeksingh7773
@bibeksingh7773 3 жыл бұрын
Liked the way you explain things, easy to understand and implement. Thank you Just a quick hint VS code does allow multiple Terminal, to use it click the window button left to the trash.
@TomerCnaan
@TomerCnaan 4 жыл бұрын
Using select is a good choice for asynchronous servers.
@smabedi
@smabedi 8 ай бұрын
THIS IS AWESOME! you just solved one of my biggest problems with coding my messenger, thank you man ❤
@kebman
@kebman 4 жыл бұрын
0:00 to 10:42 is basic networking, modems and and IP's. Skip to 10:43 for the coding.
@farzinkhaledi4394
@farzinkhaledi4394 2 жыл бұрын
Thank you so much for this amazing tutorial ,honestly In this 50 minutes tutorial I've learned more then one year at University you are great 🙏👍
@gabrielavillegas8587
@gabrielavillegas8587 4 жыл бұрын
the way this man is saving me from failing my networks class...
@unfinishedsentenc9864
@unfinishedsentenc9864 3 жыл бұрын
Thanks a lot Tim. You don't just cover syntax and how to build a socket, but start with basics. I really needed this tutorial.
@CrashingThunder
@CrashingThunder 4 жыл бұрын
Thanks for this video! You always are able to explain things really thoroughly and succinctly. I've been working on my web related Python skills, so this was a good overview of something I needed to learn.
@هانيالعتيبي-ق7ذ
@هانيالعتيبي-ق7ذ 4 жыл бұрын
your videos makes curfew easy for me big thanks to you keep going , much respect 🌹
@lingesann9098
@lingesann9098 4 жыл бұрын
Hey buddy I am really big fan of yours you are really a great teacher I've learned a lot from this channel. Thanks man keep rocking from India🙏🙏🙏
@furrane
@furrane 3 жыл бұрын
Excellent video ! Only a few approximations at the start when discussing networking but that's not a problem since this is not really the main topic of the video. Python is on point ! Congratulations !
@akanobody5622
@akanobody5622 3 жыл бұрын
Good tutorial, you are right (depend on the configuration you have) you can have a public ip in the company modem and a private ip in your local router router, that is a double NAT, it have pros and cons as all configurations. You can use TCP, UDP and others protocols depending on the layer. etc. Thanks for the tutorial.
@laptoplifestylegeez
@laptoplifestylegeez 3 жыл бұрын
5 stars. Wow high quality. Nailed tcp socket connect
@tejasmandre666
@tejasmandre666 4 жыл бұрын
Thanks man ! I was really trying hard to make threading in sockets, this resolved all of my queries
@shreypatel9051
@shreypatel9051 4 жыл бұрын
The python sockets tutorial i never had and always needed. Thank You
@TranquilKr
@TranquilKr Жыл бұрын
This is such an amazing tutorial. I will read up on the technical details myself, but the programming part was on point. Thanks a lot for the efforts put into making this video, Tim!
@suyashvashishtha4904
@suyashvashishtha4904 4 жыл бұрын
Totally awesome Tutorial .. and that's what the reason why i always search for Tech with Tim if i want to learn something... You post awesome content..
@baumths
@baumths 4 жыл бұрын
Hey Tim! What about a series where you set up a server and client for like a chat or even a little game? A live stream day perhaps? Great content, keep it up!
@dominictarro4177
@dominictarro4177 4 жыл бұрын
Been done on one of his 12 hour code sprints
@dunnomynameyet5315
@dunnomynameyet5315 Жыл бұрын
thank youuu, you explained way more than my prof in 3h
@Joshua-dl3ns
@Joshua-dl3ns 4 жыл бұрын
35:00 In VSCode yes you can run multiple interpreters - in the terminal, you can plus +, and then the box next to the + to show both interpreters
@jeremyflowers8908
@jeremyflowers8908 7 ай бұрын
from server import HEADER, PORT, FORMAT, DISCONNECT_MESSAGE, SERVER, ADDR .. Also use f str to make send length f'{send_length:
@angelpico3236
@angelpico3236 4 жыл бұрын
This was a really good video Tim, look forward to part 2 !
@copdatchoppa
@copdatchoppa 3 жыл бұрын
I love this guy. He explains well and makes things not complicated. As a beginner, I'm glad that his explanations and demonstrations are clear, and I actually know what the hell is going on. Thank you
@PiletskayaV
@PiletskayaV 4 жыл бұрын
*If you can't see your server from outside of your local network:* Most frequent problem you may face while making server reachable over the Internet is port-forwarding. In most cases you should go to your router settings and forward your outer port 5050 to local port 5050 of your machine you running the server on. Cuz people who trying to reach you with your public IP litteraly will reach your router. So in situation from this video forwarding rules will tell router that if someone will try to connect to its 5050 port it should send 'em to 5050 port of 192.168.1.26 machine and not Macbook.
@Aj-hz4dv
@Aj-hz4dv 4 жыл бұрын
can you help me, please
@PiletskayaV
@PiletskayaV 4 жыл бұрын
@@Aj-hz4dv I can try :)
@Aj-hz4dv
@Aj-hz4dv 4 жыл бұрын
@@PiletskayaV This is my question in Stackoverflow : stackoverflow.com/questions/61069148/how-can-i-send-images-from-the-client-to-the-server-socket-python
@xgndqeggxgndqegg
@xgndqeggxgndqegg 4 жыл бұрын
about ports at 13:04, if you guys are on a unix* system usually you can get a list of all ports and their typical service running on them by looking at the file /etc/services
@kvetoslavlizlorech63
@kvetoslavlizlorech63 3 жыл бұрын
When ur coding socket belike : socket = socket.socket(socket.socket(),socket.socket.socket) Edit = 69 likes 😈
@DylanPiper
@DylanPiper 3 жыл бұрын
hahah
@mews75
@mews75 3 жыл бұрын
socket?
@ahmedthegreat3973
@ahmedthegreat3973 3 жыл бұрын
LOL
@mert3976
@mert3976 3 жыл бұрын
lol so true
@gavinthecrafter
@gavinthecrafter 3 жыл бұрын
socket = {"socket": socket.socket(socket.socket(),socket.socket.socket), "socket": "socket"} socket.socket.socket(socket, "socket")
@Miriam-dk7nm
@Miriam-dk7nm 4 жыл бұрын
Yesterday I though about a new programming project and I came to the conclusion that learning something about sockets would be a good idea. I guess I am going to start today, thank you ;)
@Joshua-dl3ns
@Joshua-dl3ns 4 жыл бұрын
thats a really nice intro!
@zakariaabdisalam1728
@zakariaabdisalam1728 4 жыл бұрын
wow i love that intro
@azidsecurity2536
@azidsecurity2536 4 жыл бұрын
I got a netflix ad in the beginning of the video when I saw this comment and got really confused
@devnull0368
@devnull0368 4 жыл бұрын
:eyes:
@ecvsio
@ecvsio 3 жыл бұрын
Holy shit thanks man, I really appreciate how you explain everything thoroughly. like some people would skip the networking parts and assume most people who want to write a socket program know this. Really well done being thorough and not skipping anything just in case someone has some information gaps. thanks!
@PiletskayaV
@PiletskayaV 4 жыл бұрын
Oh gosh! This is super clear! Thank you for this tutorial! *THUMBS UP*
@WisdomIsAwesome
@WisdomIsAwesome 4 жыл бұрын
Really fascinating!!! I can make my own server and have client over the public internet or local network send and receive messages across the server and the clients!
@erik-martin
@erik-martin 4 жыл бұрын
@Tech With Tim Was cool watching this. I taught this to myself 7ish years ago and built a little client server chat app (a bit more functionality than this) overnight. Still one of my favorite projects (haven't done much coding in the last 7 years). It was pretty cool seeing this all summarized in under an hour, might jave to do some more fiddling with sockets. Also assume you are a fellow Canadian since you are on the Roger's network.
@automationtesting3149
@automationtesting3149 4 жыл бұрын
I am relatively new to Python and this information was really useful
@736939
@736939 4 жыл бұрын
Nice intro, please continue the socket programming tutorials, don't jump into another topics. BTW do you have python threading course?
@mrgamerboy8316
@mrgamerboy8316 3 жыл бұрын
one of the best socket tutorial on yt
@ostfactory4925
@ostfactory4925 4 жыл бұрын
Hello Tim, just want to add that socket.gethostbyname(socket.gethostname()) might return 127.0.0.1 on linux machines if there is an entry in /etc/hosts file. Removing this entry from the hosts file may cause other installed programs to break, the only reliable way (that I found) of finding the local IP is using a DNS ping. s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.connect(("8.8.8.8", 80)) SERVER = s.getsockname()[0] s.close() print(SERVER) Hope this helps.
@manuelantoniorojasramos5913
@manuelantoniorojasramos5913 4 жыл бұрын
Thanks, I had been looking for some way to get the IP address instead of just typing it.
@ostfactory4925
@ostfactory4925 4 жыл бұрын
@@manuelantoniorojasramos5913 you're most welcome. Also, please be aware that this method will work only if you are connected to internet (because DNS). Good luck and Happy coding
@ron-davin
@ron-davin 4 жыл бұрын
Thank you! :D
@Drawnzerattackkkkkk
@Drawnzerattackkkkkk 4 жыл бұрын
What if the DNS is located somewhere else instead of 8.8.8.8?
@ostfactory4925
@ostfactory4925 4 жыл бұрын
@@Drawnzerattackkkkkk then use that DNS instead of 8.8.8.8.
@fstudies6913
@fstudies6913 3 жыл бұрын
Tim,though u are not good at network but it was really cool for beginners like me to understand ❤️thanks a lot for being our teacher 🙏🏽🙏🏽
@GeneralPretzle
@GeneralPretzle 7 ай бұрын
Sorry, there's something funny about what he said about not worry about showing his ip address and then blurring it out. He's totally right that showing your local address is harmless, so it just seemed weird,
@Broodjekip-mt7rq
@Broodjekip-mt7rq 7 ай бұрын
Thougt the same thing
@glendlenguyen7213
@glendlenguyen7213 2 жыл бұрын
Thank you for saving my entire career
@emtydoctrine
@emtydoctrine 4 жыл бұрын
For reference in regards to ports: - Well-known ports: 0 through 1023. - Registered ports:1024 to 49151. - Dynamic ports: 49152 to 65535 You will typically use an available port in the registered range such as 8080 or 4443, assuming its not already in use.
@maxbd6922
@maxbd6922 2 жыл бұрын
Really good and helpful. all the codes are working fine, even from different network (WEB)
@kebman
@kebman 4 жыл бұрын
You only need 4 bytes for a message header. This will let you represent numbers up to 4 bytes * 8 bits = 32 bits ^2 = 4,294,967,296 (integer), which is more than enough for chat messages. Given the sometimes small buffer sizes of TCP/IP layers, 64 bytes for a length header is excessive. But not only that, it's _dangerous!_ As shown before, you can use 64 bytes to represent _astronomical_ numbers, and there's no way in _Hell_ that a chat message will _ever_ be that long unless you sent only noise ... for years(!). But by exploiting a header with so much bloat, it becomes much easier to crack such a naïve implementation of a chat client to construct third party _Denial of Service_ (DOS) attacks. In other words, if any of these bad implementations are found in the wild, they're exploitable by evil hackers. So let's say, hypothetically, that a large TCP/IP buffer is about 1 Mb RAM. That's 1,048,576 bytes (and buffers can be much smaller than that). If you use just empty messages from a bad chat implementation, which is using headers that are 64 padded bytes long, then it only takes 1,048,576/64 = 16,384 messages to launch a successful DOS attack, as that is the amount of empty messages you need to fill the buffer. Now, that might seem like a lot but it's really nothing to a computer, so it would be a fairly trivial thing to implement, and especially if the chat application has such a bad design flaw. This is why most systems employ other defences against such things, but all it takes to break the first wall, is to infiltrate a poorly programmed chat application. Worst of all, _you'll_ be blamed for it, and not the hacker, since the hacker is merely exploiting your bad code to hide his identity while performing the attack.
@bruhhhhh718
@bruhhhhh718 Жыл бұрын
damn dude thanks for this knowledge
@markhoo
@markhoo Жыл бұрын
666
@kebman
@kebman Жыл бұрын
@@markhoo 777
@arashhn8678
@arashhn8678 2 жыл бұрын
Thank you so much Tim! Always a pleasure learning with your videos!
@piyushlakhani3571
@piyushlakhani3571 4 жыл бұрын
Great Job Tim!!! , Love from Concordia University Library , Montreal
@kalo5133
@kalo5133 4 жыл бұрын
Intrinsically, i am very impressed by your work. Not to mention that, you always consider us as you and or come out with frequent encounter issues like setup, or common technical issues with clear explanation. Glad to have you as my coach toward my programming journey, appreciate your work!!
@chandler-barry
@chandler-barry Жыл бұрын
youre the IT goat tim thank you for your module showcases
@cristofersalazar9588
@cristofersalazar9588 3 жыл бұрын
I'll need to see this more times. ;-;
@ScottMorgan88
@ScottMorgan88 4 жыл бұрын
Rather than turning off your firewall, it would be safer to forward the port you're working with by modifying the router settings. Most routers allow this to be easily done. It involves logging into your router from your home network and modifying the settings.
@tcrawford8430
@tcrawford8430 4 жыл бұрын
Hey Tim how long did it take you to learn the basics to have the ability to build things with python?
@tcrawford8430
@tcrawford8430 4 жыл бұрын
Mr. Mehi 😂😂😂 man I have a good year before I become a junior in school. By that time I’m going to look into internships., that’s why I asked.
@tcrawford8430
@tcrawford8430 4 жыл бұрын
WORLD-TECH/IT thank you. I just started the basics on Codecademy, I plan on getting the pcep and pcap certs as soon as possible as well.
@michaeldamolsen
@michaeldamolsen 4 жыл бұрын
It depends on your background. If python is your first language it probably takes a few weeks to get started coding things on your own, and a few months before you start to feel at home in the language. If python is your programming language number 23, you can get started in 10-15 minutes. Still, python is unique in several ways that take time to learn, even with experience from 22 other languages. But you just asked about the basics :)
@kebman
@kebman 4 жыл бұрын
Here's the basics: First, learn about variables and what they do. Learn some types such as numbers and strings. Then learn about conditional statements, which are most commonly 𝚒𝚏 and 𝚎𝚕𝚜𝚎. After that, learn about loops, such as 𝚠𝚑𝚒𝚕𝚎 and 𝚏𝚘𝚛. Then learn about functions, which start with 𝚍𝚎𝚏 (which is short for _definition)_ in Python, and how a function can take a special variable called a parameter. From then on, learn about objects and methods (object orientation). In between, try to learn how to read Python documentation for the various libraries that exist out there. There are also some special pitfalls to know about Python, such as naming the file the same as your 𝚒𝚖𝚙𝚘𝚛𝚝 statement, for instance.
@unstopablex420
@unstopablex420 2 ай бұрын
great explanation of the coding. I'd only suggest getting more acquainted with networking
@ethik2933
@ethik2933 3 жыл бұрын
Hey man, any recommendations on some keywords to search for learning about implementing a good level of security with sockets?
@xFrez
@xFrez 3 жыл бұрын
I guess you can learn how to secure sockets in theory (not looking for a python examples) and then try to find how to do this in python, probably it will be easier because you will know what to look for.
@Erwinsmith94040
@Erwinsmith94040 3 жыл бұрын
Pls someone suggest me how to connect socket over internet
@imranrumon
@imranrumon 4 жыл бұрын
Thank You Tim for really fantastic session about socket programming
@Mei8888
@Mei8888 4 жыл бұрын
Are in Canada separated Modem an Router still a thing? In Germany, Finland (and most other European countries) the modem and the router have been build together in one device. Companies sold them as "Router" but they have build in modems.
@CKZA10
@CKZA10 4 жыл бұрын
Yeah you still get places in the world where they run DSL (internet over phone) or CATV (CAble TV - not to be confused with cat5). But even then you run into places where your "router" connects to the ISP "modem" - the ISP "modem" basically terminates the FO and splits up into LAN and Phone with TV coming through as well. Can not really comment on EU - but won't be surprised if it's similar (I'm from South Africa)
@justchris846
@justchris846 4 жыл бұрын
A thread is just that, multiple threads created in your script and assigned (1 thread at a time, to each new “client” that joins and as long as you have it properly set up, 100s of threads can be used simultaneously in an active user state. Example: Facebook messenger.
@retr0ds417
@retr0ds417 4 жыл бұрын
Hey, tim..great work...But I tried using the public IP address and it says af_inet doesn't support this address family...what do I do??
@mohdtmeme6842
@mohdtmeme6842 3 жыл бұрын
one of the best videos about socket and thread
@arijitghosh6378
@arijitghosh6378 4 жыл бұрын
The tutorial was really great and I did learn the basics of how to mess around with sockets. I do however have one complaint and that is the method you showed on how to make the server available on the internet. Having the server socket run on the Public IP would never work because multiple devices that are connected to your network share that same Public IP. How would the router know which device to forward that traffic to? I looked around on the Internet and Port Forwarding seemed like a viable and easy solution but unfortunately that didnt work. So how do we actually get our server socket on the internet?
@dannys2290
@dannys2290 4 жыл бұрын
Arljit, you would keep you local IP on the server.py application. then you would have to do port forwarding on your router facing the internet. For instance, i would forward all my SSH traffic from destined for port 4545 (public side) and route that traffic internally to my SSH server at 192.168.0.2 on port 22. So everything in my LAN would look like this: ssh user@192.168.0.2 while outside my LAN, it would look like: ssh user@65.34.7.23 -p 4545. For reference, these are Linux commands.
@shinydewott
@shinydewott 4 жыл бұрын
@@dannys2290 how do we do that with python?
@dannys2290
@dannys2290 4 жыл бұрын
@@shinydewott port forwarding cannot be done in Python, unless your server is configured as a router using python. If you're looking for that specific information, I wouldn't know how to do that. However port forwarding is a mapping you have to do on your router between external ports going to internal ports pointed at a specific server port.
@aleclesemann1616
@aleclesemann1616 2 жыл бұрын
youve tought me a lot about networking. Thank you for this video.
@rushobinnabi3684
@rushobinnabi3684 4 жыл бұрын
34:15 age-restriction this man. 😂😂 oh yeah tim. You are connecting to something.
@mohanadhosny2449
@mohanadhosny2449 4 жыл бұрын
HAHA !
@The2FunBro
@The2FunBro 2 жыл бұрын
I actually managed to use another device and send a message to the device with the server script :) all you need to do is type the client script on another device :) I also used input to type your own words to send
@factorousfactorous3522
@factorousfactorous3522 4 жыл бұрын
Great video :) It's weird but when I try to bind my public IP adress it raises an error 'Can't assign to requested address', do any of you run into the same issue ?
@TechWithTim
@TechWithTim 4 жыл бұрын
Could be something with your firewall
@diegonunez6788
@diegonunez6788 4 жыл бұрын
did you fix this? because i am getting the same issue on mac but my firewall is off
@andrewrichardson7121
@andrewrichardson7121 4 жыл бұрын
Hi, just a quick note. You will not be able to bind your public IP (or as we call it external IP address) to your local computer as you are sitting behind the firewall and that NATs (Network Address Translation) and hides your private/internal IP address to the outside world. Your private/internal IP address is non-routable on the internet and as such uses this method. The only way you can do this is to connect your computer directly to the internet but I do not recommend you do this, but if you are adamant you want to do this please ensure you have your computers firewall turned on. There are some other things you need to take into consideration but this is way to detailed for this thread. If any clarification is required please do not hesitate to contact me via this thread.
@pxdb8028
@pxdb8028 9 ай бұрын
@@andrewrichardson7121is this account still active?
@shafagh_projects
@shafagh_projects 2 жыл бұрын
perfect tutorial and thank you so much, looking forward to seeing more episodes on this topic
@jasonphilippe8497
@jasonphilippe8497 Жыл бұрын
i have that error client.bind((SERVER, PORT)) OSError: [WinError 10048] Only one use of each socket address (protocol/network address/port) is usually allowed
@Starmanstriker
@Starmanstriker Жыл бұрын
Make sure 'conn.close()' is outside the while loop. If it is inside of it, the connection will close. (tab back the 'conn.close()' once and it should fix it)
@yoshuaalexander5651
@yoshuaalexander5651 2 жыл бұрын
Thank you Tim, I was stuck on my assignment now I'm gucci 😃
Python Sockets Simply Explained
39:33
NeuralNine
Рет қаралды 167 М.
Python Object Oriented Programming (OOP) - For Beginners
53:06
Tech With Tim
Рет қаралды 3,4 МЛН
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 58 МЛН
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 29 МЛН
Trend Vision One | Network Detection and Response Overview
1:59
Local AI Chatbot in Python
8:35
Code Yoga
Рет қаралды 483
Creating a Simple Socket Server and Client in Python
15:44
Real Python
Рет қаралды 23 М.
Hacking Bank from Hackthebox |  HTB Bank Walkthrough | Ethical Hacking
28:17
The Strange Physics Principle That Shapes Reality
32:44
Veritasium
Рет қаралды 6 МЛН
5 Good Python Habits
17:35
Indently
Рет қаралды 625 М.
C++ Network Programming Part 1: Sockets
1:13:52
Nicholas Day
Рет қаралды 133 М.