Posts

Showing posts with the label host checker

How to create a Python host checker for Linux

Image
Python programming Hello Today we are going to create "how to create python host checker for linux" python up / down host checker working on linux. You need: Python 3.4 Internet connection Computer with Windows or Linux If you have not yet installed Python, download it from the following link: https://www.python.org/downloads/ Why Linux only? We never recommend using a 3rd party library, but, without them, you cannot normally ping on Windows. For example, if you use the ping command on Linux, you get 1 when the host is found, and another number if it is down. This means that on Linux, when the ping target is not successfully pinged, then ping1 (operation completed successfully), in the other case, it gives you the error number. On Windows, it is more complex. If you ping with the ping command, you get the operation completed successfully, regardless of whether the host is up or down. Hower, I don't think any of you actually use Windows for hacking. establishment Before yo...