=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== linkchecker-9.4.0/doc/install.txt-95- linkchecker-9.4.0/doc/install.txt:96: Run ``python setup.py install --home $HOME``. Note that you have linkchecker-9.4.0/doc/install.txt-97- to adjust your PATH and PYTHONPATH environment variables, eg. by linkchecker-9.4.0/doc/install.txt:98: adding the commands ``export PYTHONPATH=$HOME/lib/python`` and linkchecker-9.4.0/doc/install.txt:99: ``export PATH=$PATH:$HOME/bin`` to your shell configuration linkchecker-9.4.0/doc/install.txt-100- file. ############################################## linkchecker-9.4.0/linkcheck/network/__init__.py-86- linkchecker-9.4.0/linkcheck/network/__init__.py:87: def _getaddr (self, ifname, func): linkchecker-9.4.0/linkcheck/network/__init__.py-88- """Get interface address.""" ############################################## linkchecker-9.4.0/linkcheck/network/__init__.py-150- linkchecker-9.4.0/linkcheck/network/__init__.py:151: def getAddr (self, ifname): linkchecker-9.4.0/linkcheck/network/__init__.py-152- """Get the inet addr for an interface. ############################################## linkchecker-9.4.0/linkcheck/network/__init__.py-157- return ifconfig_inet(ifname).get('address') linkchecker-9.4.0/linkcheck/network/__init__.py:158: return self._getaddr(ifname, self.SIOCGIFADDR) linkchecker-9.4.0/linkcheck/network/__init__.py-159- ############################################## linkchecker-9.4.0/linkcheck/network/__init__.py-166- return ifconfig_inet(ifname).get('netmask') linkchecker-9.4.0/linkcheck/network/__init__.py:167: return self._getaddr(ifname, self.SIOCGIFNETMASK) linkchecker-9.4.0/linkcheck/network/__init__.py-168- ############################################## linkchecker-9.4.0/linkcheck/network/__init__.py-175- return ifconfig_inet(ifname).get('broadcast') linkchecker-9.4.0/linkcheck/network/__init__.py:176: return self._getaddr(ifname, self.SIOCGIFBRDADDR) linkchecker-9.4.0/linkcheck/network/__init__.py-177- ############################################## linkchecker-9.4.0/linkcheck/network/iputil.py-257- try: linkchecker-9.4.0/linkcheck/network/iputil.py:258: hosts.add(socket.gethostbyaddr(ip)[0]) linkchecker-9.4.0/linkcheck/network/iputil.py-259- except socket.error: