Merge pull request #341 from ylink-lfs/patch-1

Update checkInternetConnection and getGatewayIP functions
This commit is contained in:
Nikolaos Kamarinakis 2018-11-02 17:52:19 +02:00 committed by GitHub
commit 36b7035be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ def runDebug():
# make sure there is an internet connection
def checkInternetConnection():
try:
urlopen('https://google.com', timeout=3)
urlopen('https://github.com', timeout=3)
return True
except URLError as err:
return False
@ -185,7 +185,7 @@ def getDefaultInterfaceMAC():
def getGatewayIP():
global stopAnimation
try:
getGateway = sr1(IP(dst="google.com", ttl=0) / ICMP() / "XXXXXXXXXXX", verbose=False)
getGateway = sr1(IP(dst="github.com", ttl=0) / ICMP() / "XXXXXXXXXXX", verbose=False)
return getGateway.src
except:
# request gateway IP address (after failed detection by scapy)
@ -785,4 +785,4 @@ if __name__ == '__main__':
# set to non-interactive attack
interactive = False
main()
main()