PCPrakash Choudharyincodeboard.hashnode.dev·Apr 13, 2021 · 1 min readKnow more about location and info of IPThe first thing for a hacker is to know more about a particular IP for this he may use tools such as nmap which is used for port scanning, OS fingerprinting and know what services target is running. For some cases you may require to know that where ...00
PCPrakash Choudharyincodeboard.hashnode.dev·Apr 13, 2021 · 2 min readCreate Fake Access Point's in Kali LinuxIn kali linux you can create a fake AP or AP's very easily which is seen by the clients trying to connect to wifi. To do this kind of process you need a wifi adapter which is capable of running in monitor mode , mdk3 and airmon-ng tool. the basic id...00
PCPrakash Choudharyincodeboard.hashnode.dev·Apr 12, 2021 · 1 min readHow To Use select command in bashscriptImagine that you are creating a script that lets user selects one file out of many files in directory. well this can be achived in different ways The Hard Way #!/bin/bash content=$(dir); str="`echo $content`"; read -r -a list <<<${str}; read -p "Ent...00
PCPrakash Choudharyincodeboard.hashnode.dev·Apr 8, 2021 · 2 min readHow To Do: subprocess in bashscriptRunning a co-process in the background can be achieved by using & operator or coproc command. the only difference is that coproc allows to read and send output to the process while & operator doesn't. (1) using coproc In Linux coproc command is used ...00