Tag: checker

  • HTTP Proxy Checker in bash

    Usefull script  to check if a proxy is alive. #!/bin/bash # HTTP Proxy Server’s IP Address (or URL) proxy_server=$1 # HTTP Proxy Server’s Port Number port=$2 # We’re trying to reach this url via the given HTTP Proxy Server # (http://www.google.com by default) url=”http://www.google.com” # Timeout time (in seconds) timeout=20 # We’re fetching the return…