[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r14836: Lets try to actually use the ip supplied by the user this ti (check/trunk/cgi-bin)
Author: ioerror
Date: 2008-05-29 20:18:01 -0400 (Thu, 29 May 2008)
New Revision: 14836
Modified:
check/trunk/cgi-bin/TorBulkExitList.py
Log:
Lets try to actually use the ip supplied by the user this time. Sigh. User input FTW.
Modified: check/trunk/cgi-bin/TorBulkExitList.py
===================================================================
--- check/trunk/cgi-bin/TorBulkExitList.py 2008-05-30 00:15:36 UTC (rev 14835)
+++ check/trunk/cgi-bin/TorBulkExitList.py 2008-05-30 00:18:01 UTC (rev 14836)
@@ -34,7 +34,7 @@
# the list
for possibleExit in possibleExits:
try:
- if (isUsingTor(possibleExit, "217.247.237.209", "80") == 0 ):
+ if (isUsingTor(possibleExit, RemoteServerIP, "80") == 0 ):
confirmedExits.append(possibleExit)
except:
return None