Updated links

This commit is contained in:
Dionysus 2023-05-18 22:21:10 -04:00
parent 1b6e4b8772
commit cc4eba687b
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
5 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
ISC License 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 Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above 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 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -6,7 +6,7 @@
- [PySocks](https://pypi.python.org/pypi/PySocks) *(Required for [cleansocks.py](proxytools/cleansocks.py))* - [PySocks](https://pypi.python.org/pypi/PySocks) *(Required for [cleansocks.py](proxytools/cleansocks.py))*
## Mirrors ## Mirrors
- [acid.vegas](https://acid.vegas/proxytools) *(main)* - [acid.vegas](https://git.acid.vegas/proxytools) *(main)*
- [SuperNETs](https://git.supernets.org/acidvegas/proxytools)
- [GitHub](https://github.com/acidvegas/proxytools) - [GitHub](https://github.com/acidvegas/proxytools)
- [GitLab](https://gitlab.com/acidvegas/proxytools) - [GitLab](https://gitlab.com/acidvegas/proxytools)
- [acid.vegas](https://git.supernets.org/proxytools)

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/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: Requirements:

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/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) This script will test proxies against a set of Domain Name System-based Blackhole Lists (DNSBL) or Real-time Blackhole Lists (RBL)

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/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 datetime
import json import json
@ -101,7 +101,7 @@ print('#'*56)
print('#{0}#'.format(''.center(54))) print('#{0}#'.format(''.center(54)))
print('#{0}#'.format('SockSpot Proxy Scraper'.center(54))) print('#{0}#'.format('SockSpot Proxy Scraper'.center(54)))
print('#{0}#'.format('Developed by acidvegas in Python'.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('#{0}#'.format(''.center(54)))
print('#'*56) print('#'*56)
debug(f'Scanning {len(blogspot_list)} URLs from list...') debug(f'Scanning {len(blogspot_list)} URLs from list...')
@ -113,7 +113,7 @@ for thread in threads:
time.sleep(10) time.sleep(10)
for thread in threads: for thread in threads:
threads[thread].join() threads[thread].join()
if proxy_value = 0: if proxy_value == 0:
error('no socks found') error('no socks found')
debug('Found {0} total proxies!'.format(format(len(proxy_list), ',d'))) debug('Found {0} total proxies!'.format(format(len(proxy_list), ',d')))
with open (proxy_file, 'w') as proxy__file: with open (proxy_file, 'w') as proxy__file: