proxytools

- collection of scripts for harvesting & testing proxies
git clone git://git.acid.vegas/proxytools.git
Log | Files | Refs | Archive | README | LICENSE

commit cc4eba687b7a01134d777bd505dce6b0ba86d690
parent 1b6e4b87728a14ad33fe0974e15b0800266f173f
Author: acidvegas <acid.vegas@acid.vegas>
Date: Thu, 18 May 2023 22:21:10 -0400

Updated links

Diffstat:
MLICENSE | 5++---
MREADME.md | 5+++--
Mproxytools/cleansocks.py | 2+-
Mproxytools/floodbl.py | 2+-
Mproxytools/sockspot.py | 6+++---

5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/LICENSE b/LICENSE
@@ -1,6 +1,6 @@
 ISC License
 
-Copyright (c) 2019, acidvegas <acid.vegas@acid.vegas>
+Copyright (c) 2021, acidvegas <acid.vegas@acid.vegas>
 
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
@@ -12,4 +12,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-\ No newline at end of file
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/README.md b/README.md
@@ -6,7 +6,7 @@
 - [PySocks](https://pypi.python.org/pypi/PySocks) *(Required for [cleansocks.py](proxytools/cleansocks.py))*
 
 ## Mirrors
-- [acid.vegas](https://acid.vegas/proxytools) *(main)*
-- [SuperNETs](https://git.supernets.org/acidvegas/proxytools)
+- [acid.vegas](https://git.acid.vegas/proxytools) *(main)*
 - [GitHub](https://github.com/acidvegas/proxytools)
 - [GitLab](https://gitlab.com/acidvegas/proxytools)
+- [acid.vegas](https://git.supernets.org/proxytools)
+\ No newline at end of file
diff --git a/proxytools/cleansocks.py b/proxytools/cleansocks.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# CleanSocks - Developed by acidvegas in Python (https://acid.vegas/proxytools)
+# CleanSocks - Developed by acidvegas in Python (https://git.acid.vegas/proxytools)
 
 '''
 Requirements:
diff --git a/proxytools/floodbl.py b/proxytools/floodbl.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# FloodBL - Developed by acidvegas in Python (https://acid.vegas/proxytools)
+# FloodBL - Developed by acidvegas in Python (https://git.acid.vegas/proxytools)
 
 '''
 This script will test proxies against a set of Domain Name System-based Blackhole Lists (DNSBL) or Real-time Blackhole Lists (RBL)
diff --git a/proxytools/sockspot.py b/proxytools/sockspot.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# SockSpot - Developed by acidvegas in Python (https://acid.vegas/proxytools)
+# SockSpot - Developed by acidvegas in Python (https://git.acid.vegas/proxytools)
 
 import datetime
 import json
@@ -101,7 +101,7 @@ print('#'*56)
 print('#{0}#'.format(''.center(54)))
 print('#{0}#'.format('SockSpot Proxy Scraper'.center(54)))
 print('#{0}#'.format('Developed by acidvegas in Python'.center(54)))
-print('#{0}#'.format('https://acid.vegas/proxytools'.center(54)))
+print('#{0}#'.format('https://git.acid.vegas/proxytools'.center(54)))
 print('#{0}#'.format(''.center(54)))
 print('#'*56)
 debug(f'Scanning {len(blogspot_list)} URLs from list...')
@@ -113,7 +113,7 @@ for thread in threads:
 	time.sleep(10)
 for thread in threads:
 	threads[thread].join()
-if proxy_value = 0:
+if proxy_value == 0:
 	error('no socks found')
 debug('Found {0} total proxies!'.format(format(len(proxy_list), ',d')))
 with open (proxy_file, 'w') as proxy__file: