WHY: 1. Easy to learn and use 2. Its swiftness (ability to quickly develop programs with high functionality) 3. Python is widely used (more documentation, more support) 4. There is an extensive number of libraries and modules available for Python 5. Python is productive and speedy (it's pretty straightforward and reusable) you're welcome :)
@animanoir5 жыл бұрын
Thanks. I really think KZbin should have an included feature where the uploader writes briefly this type of stuff since the whole video is boring as fuck.
@amur_5 жыл бұрын
@@animanoir read the description
@afonsohipolito69835 жыл бұрын
@@animanoir Come on, respect the guy, he wasted time and resources making this video so people could be more aware of the utility of python and it's usage in the security area, the least you could do is just go and read the description where he writes exactly the topics that he is going to approach in the video.
@animanoir5 жыл бұрын
@@afonsohipolito6983 ok, yep didnt read the description. Though I still think this kind of vlogs are really innecesary.
@duncansiror50334 жыл бұрын
@@animanoir Then why did you watch..?
@reziiwastaken5 жыл бұрын
Underrated channel.
@Artificial_Intelligence_AI5 жыл бұрын
Python is everything!!! Python is web development, python is robotics, python is data science and data analysis, python is Blockchain, python is security etc... for me this language is the most important technology ever made
@duncansiror50334 жыл бұрын
Web programming is more so Javascript
@edodaleno86925 жыл бұрын
I love this channel, it's so easy to understand even the most difficult part on infosec.
@hewfrebie25975 жыл бұрын
Python is not the only one... there is another language is not new but still it is going to be successful in the future, wonder what that is? It's Go programming language developed by google and better than Java to be honest, and has a C-like syntax. Also there is a go book called Black Hat Go for pentesters which is still new... if you're curious, go check it out, also I'm a Software Engineer first year student from Bahrain in the middle east saying hello to your channel. Keep up the good work.
@RorretsNet5 жыл бұрын
The mascot always gets me.
@jackbarry88475 жыл бұрын
Actually, the other most successful language for cybersecurity is C/C++, which let you develop very low-level exploits and scripts. There's lots of documentation for them, and compared to Go, they have decades of use.
@hewfrebie25975 жыл бұрын
I'm talking about a high level programming language...
@ChumX1005 жыл бұрын
Go is not comparable to Python. It is statically typed (vs. dynamic), compiled (vs. interprered) and it was developed specifically for use in cloud systems (multi-core, networked) as opposed to Python that is multi-purpose in nature. That is why you won't find much overlapping between their major libraries and use-cases. But yes, Golang will grow (powered by the explosion of cloud computing).
@STEFFIGEORGE-tw8wz Жыл бұрын
Thanks for the course links!
@DanielDybing5 жыл бұрын
I just discovered your channel a few days ago but I already love it. There's lots of relevant and interesting content, and you present it in a direct, honest and easily understandable way. Keep up the good work!
@CharlieWanku5 жыл бұрын
Literally a newbie to code just trying to get my Windows 10 started with native programs to start code ,a whole new world and i feel totally out of my comfort zone,I like that feeling thx for your vlogs
@sidshinde99075 жыл бұрын
long story short it's easy, fast and efficient haha good vid brah
@collinsinfosec5 жыл бұрын
Should I have just made a 10 second video that said that.? Haha! Thank you for the comment and kind regards! Hope all is well with you.
@codewithlek91345 жыл бұрын
Your channel is finally getting the attention it needs, keep it up
@vamscape5 жыл бұрын
I didn't know that Python is a swift language
@lukemeissner17415 жыл бұрын
At least it's not Swift :P
@okiegrown3745 жыл бұрын
It’s not a Swift language. It’s not at all related to iOS/Apple.
@sadhlife5 жыл бұрын
@@okiegrown374 woooosh
@shaikhshafeen5 жыл бұрын
A great video with organized talks. A very few amount of youtubers are like you. Keep it up bro!
@joeylaflamme88555 жыл бұрын
Good but don't focus on your mistakes while presenting. We know about them, you don't need to spell it out. Just keep going if you notice that you do something wrong, just go along and pay attention and try not to do it again.
@rlogan835 жыл бұрын
Thank you. This channel is a big part of my daily journey this semester.
@JustMeDr5 жыл бұрын
You and me both sir
@EmersonSalmeron5 жыл бұрын
Just found you and subscribed! Great vid man keep it up
@poseidonselfridge22215 жыл бұрын
Python isn't fast. Its fast to code in, but its actually slow compared to other languages because its higher up from the hardware than languages like C, assembly, C++. I would also go as far as saying it has its limitations in scalability, where as other languages don't. If you want a fast and scalable language, don't pick Python. It's easy to learn because its syntax is easily readable to the human eye, it's also good for rapid development because it does a lot under the hood for you, but other than that it doesn't have many positive areas when comparing it to other languages. It's actually a bad choice if you really want to learn programming in depth and what goes on under the hood.
@collinsinfosec5 жыл бұрын
I do agree with you on this to some extent for sure.
@HussainAkbar5 жыл бұрын
Still haven't found any piece that gives any objective reasons. Words like "widely used", "pretty" & "easy" may as well be describing detergent. Libraries? Java has libraries. My first language was Fortran.
@collinsinfosec5 жыл бұрын
Ok.
@Computerix5 жыл бұрын
Subscribed. My firsy programming language was c++, this semester I'm learning python and so far so good so much easier, especially after a much harder language like c++.. How long have you been in univ btw?
@MrSyriaMoon4 жыл бұрын
How good I should be in python to study cyber security?
@nerdherdryan5 жыл бұрын
Although Python is a good beginner language which is widely used on the broad spectrum, aren't lower level languages such as c/c++ more vital for more complicated programs in which minimal runtime is vital? Python has a lot of benefits in its simplicity and safeguards such as memory management, but wouldn't a properly coded lower level language out preform in speed?
@elijahtheo58125 жыл бұрын
What do you mean Lower level language. C++ is very high level.
@nerdherdryan5 жыл бұрын
@@elijahtheo5812 it is high level, but newer languages are much more complicated "under the hood". languages such as JavaScript or Python have more built in to the language itself. It causes Python for example to be much easier to use, but there is a lot built in to the language that is for usability rather than efficiency. The direct comparison would be the fact that Python is built in C, but even C++ is much faster/more efficient simply because it's slightly lower level, although at the cost of ease of use - prime example being that you have to manage your own memory in c++ but not Python.
@mikeelliott27365 жыл бұрын
I have been a cyber security professional for the last 13 years. In all that time I have not needed to write any code in any language.
@collinsinfosec5 жыл бұрын
Totally depends on what you want to do! I use Python all the time to automate my tasks.
@sknurulislam12714 жыл бұрын
Hello, Do I need to learn Python Object Oriented Programming for hacking/pentesting, or basic Python(not including OOP) is enough?
@GoalDen5 жыл бұрын
Can you do a video on how to stay motivated. Or when you feel down halfway through the the course
@collinsinfosec5 жыл бұрын
Ooo, Good idea. On the video list now. As of right now, let me point you to this video: kzbin.info/www/bejne/b3abkoeObbCNd6M
@yungdynamic57994 жыл бұрын
what about Java?
@aim29864 жыл бұрын
U didnt tell any reason specific to cybersecurity. We already know its fast and easy. I'd like to learn why pick python specifically in cybersecurity.
@3t3rnal5unshine5 жыл бұрын
Thanks for the videos!
@effsixteenblock505 жыл бұрын
Python - because it's using characters to delimit code blocks that can only be detected via a hex editor... ;)
@sonyjoseph54265 жыл бұрын
My college habitat never looked like that . Raman noodles bowl was never too far from my tiny study desk
@collinsinfosec5 жыл бұрын
I was at my home when I recorded this :-). Trust me, the dorm room is a little bit tighter, much more... Thanks for the watch!
@gangstasteve57535 жыл бұрын
Cuz python is awesome
@alexday88485 жыл бұрын
can you do a video of your whole setup at home?
@andrey_in_your_life31255 жыл бұрын
Hey, Grant) Are you want make video about security smartphone? Maybe the best OS for smartphone) I installed Lineage OS and i think Lineage is better then MIUI, EMIUI etc.( sorry if i writed this comment with mistakes. I learning English, but no know great this language)
@collinsinfosec5 жыл бұрын
For sure, that's a good idea, added to the video list.
@goxr3plus_studio5 жыл бұрын
Mmmm glad to be on my tree recommended :) Put a filter on the microphone 🎤 bro the sound is ahhhhh not good at all.
@mofood33272 жыл бұрын
I have sent you many emails but I have not received any response yet ???
@kickassvideos54692 жыл бұрын
He wears him on the right side like me, its a good sign i guess
@sebagalimba5 жыл бұрын
what's the python counter of the python word being used in this python video? python can calculate it by using python xD
@prashilsil5 жыл бұрын
You really need to improve your mic.. Great content tho..
@istudy92 жыл бұрын
Was expecting to be shown examples, this felt way too high level
@collinsinfosec2 жыл бұрын
Valid!
@bhupeshchouhan50955 жыл бұрын
Hey where I can learn a complete course of Java...!!??
@baturq5 жыл бұрын
Anlamıyorum ama izliyorum çok güzel ses tonu var
@aerion40772 жыл бұрын
@4:00 purview maybe?
@cosmicrisis56995 жыл бұрын
Heya, do u think doing hackthebox.eu is considered as ‘self study’? Is it a good way of learning?
@shayspark90403 жыл бұрын
Utopia developed by 1984 Group.
@NeoKailthas5 жыл бұрын
dude half of the video is repeating the title of this video...
@roberto.85035 жыл бұрын
Not really good reasons
@mahaveerprajapati38455 жыл бұрын
Thanks sir great work watched your many useful videos I'm from 🇮🇳
@inside_arun5 жыл бұрын
thank you bro i'm from india
@hellamaxine5 жыл бұрын
arun sen what do we do with this info
@devdarpan35825 жыл бұрын
If you are indian then you dont need to share your private information here.
@majedhk54605 жыл бұрын
i will subscribe if you gonna teach me how to hack “ethical hacking”
@SquidBeats3 жыл бұрын
Jesus Christ is God
@NuEnque5 жыл бұрын
@0:16 No Indians or Asians? The Fook? When I say "Indian" I mean slurpy not casino.