This is a great series for people like me who have absolutely no knowledge or experience bash scripting.
@DavidAlvesWeb2 жыл бұрын
0:51 PIIIIING!!!!!
@vivekkumaryadav98624 жыл бұрын
Sir it's 2nd part ...where we can easily able to detect all ip ping
@eugenemark836 Жыл бұрын
Its advisable to use exact path e.g instead on ping use /usr/bin/ping
@test-sl8uu2 жыл бұрын
you have played some part in making my career
@zubmit7006 жыл бұрын
Love your tutorial. Don't mind the pace.
@pauljojo8316 жыл бұрын
If we learn bash scripting will we be able to make our own version of scripts like (Lazy script,Lalin,katoolin)etc.
@JNET_Reloaded6 жыл бұрын
You should do a part 2 to this and make it check the response and just report if its online or not :) use colours green and red aswell :)
@ArkanoidGaming6 жыл бұрын
Nice videos so far loved it , please upload the next parts , its already been alot of delay
@govindthakare84716 жыл бұрын
these contents are good but really small, you can put a lot in 10 min video if you try
@AminGharbaoui6 жыл бұрын
hello I have a small question to the more of the number of packets that we will put 100000 example and that after that we ping it will directly extinguish the connection of our victim no? Thank you for your answer ;)
@KMiNT216 жыл бұрын
Btw, speaking about PING (not about scripting). I made the tool - binaryplant.com/ping-wrapper/ on Go that may be useful for admins. Source: github.com/KMiNT21/BinaryPlant-Ping-Wrapper.git
@shakeraljobury1534 ай бұрын
Great .... Thank you
@lindorlimani86573 жыл бұрын
i am completly new and i would like to know where he ran the code does it have something like an IDE?
@vivekkumaryadav98624 жыл бұрын
difference between read and read -p command in bash scripting
@marcscherzer4 жыл бұрын
'read -p' means it will prompt a text which is like echo then store a user's input to a variable after the text. For instance : read -p "Enter your favorite color: " COLOR Let's say the user typed 'Green'. Then green will be stored to the variable which is $COLOR. Please correct me, if I am mistaken.
@AbdulKalam-kq3fl4 жыл бұрын
-p flag allows you enter the input on the same line
@bijeshmohan4 жыл бұрын
Thank you! Looks like me also needs a pingseeep.sh
@amal02604 жыл бұрын
Where shall I get this code Brother , because I'm not able to understand few symbols used there
@ashwina77764 жыл бұрын
Sir , nmap scanner bash script
@AnkitGupta-ek1jq4 жыл бұрын
How to auto complete the file name inside the script using tab
@aryan41706 жыл бұрын
Is there any way that I could control my Orange Pi in this situation? I have no monitor, mouse or keyboard but I do have a WiFi card and my pi will be right next to me. Thanks
@MOAyan-ru6mr2 жыл бұрын
so its like tool called AngryIP
@alihossainsagor78046 жыл бұрын
Need tutorial for termux... please
@hexernightcore6 жыл бұрын
Do this on termux . Dont you even one linux computer at home ?
@alihossainsagor78046 жыл бұрын
@@hexernightcore no bro
@hexernightcore6 жыл бұрын
In what way i am a bro to you ?
@alihossainsagor78046 жыл бұрын
Why any problem to called you bro or u are a girl I viewed your channel think u r a girl.
@hexernightcore6 жыл бұрын
Dude that's edm , jackass
@networkhacker58456 жыл бұрын
curso de shell script?
@pauljojo8316 жыл бұрын
what if the ip begins with (192.).
@ko-Daegu6 жыл бұрын
Paul Jojo And ??? So what...
@anonymousglobal90936 жыл бұрын
Next video time?
@nicof_20006 жыл бұрын
This is not a subnet... Good example but you should use the real names...
@ko-Daegu6 жыл бұрын
Nico Felbinger He should call it what ....?? Network part you mean
@nicof_20006 жыл бұрын
It's a part of a ip adresse, a subnet could contain 2 segments (/16) or even only one (/8) something between is possible too...
@zxsher44656 жыл бұрын
permission denied
@goodfella98076 жыл бұрын
Run it in root.
@benlawson36585 жыл бұрын
chmod +x *filename*
@jayasimhareddy23034 жыл бұрын
chmod 777
@tehCostHD4 жыл бұрын
jayasimha reddy bruh 770 not 777
@AbdulKalam-kq3fl4 жыл бұрын
@@tehCostHD would that make any difference, 777 should give permission to all shouldn't it?
@Salvation.0476 жыл бұрын
Love ya bro
@kumanish754 жыл бұрын
awesome video
@rourodadi75246 жыл бұрын
thanks ... contenue.
@nourmurtada6 жыл бұрын
thank you
@RahulYadav-qg9ms6 жыл бұрын
Nice
@somanathpradhan72586 жыл бұрын
Wow
@brettnieman34536 жыл бұрын
Pretty bad script. If you're going to do a simple ping sweep, pipe to grep for 64 bytes, then cut so you just have the IP address. Otherwise you're having to manually filter all the returned data.