mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-16 04:06:59 +00:00
v1.0.1 release candidate 1
This commit is contained in:
parent
24bb960cd3
commit
e66a37ae87
11 changed files with 917 additions and 997 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
.git
|
.git
|
||||||
www/participants/**
|
www/participants/*/*.csv
|
||||||
|
|
||||||
|
|
Binary file not shown.
1678
scripts/lantern.py
1678
scripts/lantern.py
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
||||||
import os,pwd,re
|
import os,re,pwd
|
||||||
import csv
|
import csv
|
||||||
import requests
|
import requests
|
||||||
import json
|
import json
|
||||||
|
@ -13,6 +13,7 @@ def main():
|
||||||
# TODO get the instance name and exit if its not there
|
# TODO get the instance name and exit if its not there
|
||||||
rootpath='/srv/darknet-lantern/'
|
rootpath='/srv/darknet-lantern/'
|
||||||
urlpath=pwd.getpwuid(os.getuid()).pw_dir+"/.darknet_participant_url"
|
urlpath=pwd.getpwuid(os.getuid()).pw_dir+"/.darknet_participant_url"
|
||||||
|
|
||||||
#print(urlpath)
|
#print(urlpath)
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +25,6 @@ def main():
|
||||||
with open(urlpath) as f:
|
with open(urlpath) as f:
|
||||||
instance = f.read().rstrip()
|
instance = f.read().rstrip()
|
||||||
# check if the instance URL domain is valid
|
# check if the instance URL domain is valid
|
||||||
#print(urlpath,instance)
|
|
||||||
if IsOnionValid(instance):
|
if IsOnionValid(instance):
|
||||||
print("[+] Instance Name:",instance,IsOnionValid(instance))
|
print("[+] Instance Name:",instance,IsOnionValid(instance))
|
||||||
isitvalid="y"
|
isitvalid="y"
|
||||||
|
@ -35,7 +35,6 @@ def main():
|
||||||
print("[-] Instance path doesn't exist yet, run darknet_exploration.py to set it up" )
|
print("[-] Instance path doesn't exist yet, run darknet_exploration.py to set it up" )
|
||||||
return False
|
return False
|
||||||
|
|
||||||
#i=input("continue?")
|
|
||||||
proxies = {
|
proxies = {
|
||||||
'http': 'socks5h://127.0.0.1:9050',
|
'http': 'socks5h://127.0.0.1:9050',
|
||||||
'https': 'socks5h://127.0.0.1:9050'
|
'https': 'socks5h://127.0.0.1:9050'
|
||||||
|
@ -72,38 +71,37 @@ def main():
|
||||||
print('[+]',url,status)
|
print('[+]',url,status)
|
||||||
if status != 502:
|
if status != 502:
|
||||||
print(url,"✔️")
|
print(url,"✔️")
|
||||||
df.at[i,"Status"]="✔️"
|
df.at[i,"Status"]="YES"
|
||||||
#if uptime <100 do +1 to the value
|
#if uptime <100 do +1 to the value
|
||||||
if df.at[i,"Score"] < 100:
|
if df.at[i,"Score"] < 100:
|
||||||
df.at[i,"Score"] = df.at[i,"Score"] + 1
|
df.at[i,"Score"] = df.at[i,"Score"] + 1
|
||||||
else:
|
else:
|
||||||
print(url,"❌")
|
print(url,"❌")
|
||||||
df.at[i,"Status"]="❌"
|
df.at[i,"Status"]="NO"
|
||||||
#if uptime >0 do -1 to the value
|
#if uptime >0 do -1 to the value
|
||||||
if df.at[i,"Score"] > 0:
|
if df.at[i,"Score"] > 0:
|
||||||
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
||||||
except requests.ConnectionError as e:
|
except requests.ConnectionError as e:
|
||||||
#print(e)
|
#print(e)
|
||||||
print(url,"❌")
|
print(url,"❌")
|
||||||
df.at[i,"Status"]="❌"
|
df.at[i,"Status"]="NO"
|
||||||
#if uptime >0 do -1 to the value
|
#if uptime >0 do -1 to the value
|
||||||
if df.at[i,"Score"] > 0:
|
if df.at[i,"Score"] > 0:
|
||||||
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
||||||
except requests.exceptions.ReadTimeout as e:
|
except requests.exceptions.ReadTimeout as e:
|
||||||
#print(e)
|
#print(e)
|
||||||
print(url,"❌")
|
print(url,"❌")
|
||||||
df.at[i,"Status"]="❌"
|
df.at[i,"Status"]="NO"
|
||||||
#if uptime >0 do -1 to the value
|
#if uptime >0 do -1 to the value
|
||||||
if df.at[i,"Score"] > 0:
|
if df.at[i,"Score"] > 0:
|
||||||
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
df.at[i,"Score"] = df.at[i,"Score"] - 1
|
||||||
|
|
||||||
|
df2 = df.sort_values(by=["Score"], ascending=False)
|
||||||
#sort by category if you are verified/unverified.csv
|
#sort by category if you are verified/unverified.csv
|
||||||
if csvfilename in csvfiles2sortcat:
|
if csvfilename in csvfiles2sortcat:
|
||||||
df2 = df.sort_values(by=["Category","Name"], ascending=[True,True])
|
df2 = df.sort_values(by=["Category"], ascending=True)
|
||||||
else:
|
#print(df2)
|
||||||
df2 = df.sort_values(by="Score", ascending=False)
|
|
||||||
df2.to_csv(csvfile, index=False)
|
df2.to_csv(csvfile, index=False)
|
||||||
#print(df2)
|
|
||||||
|
|
||||||
|
|
||||||
def IsUrlValid(url:str)->bool:
|
def IsUrlValid(url:str)->bool:
|
||||||
|
@ -167,19 +165,14 @@ def IsOnionValid(url: str)-> bool:
|
||||||
if len(url.split('.')) > 3:
|
if len(url.split('.')) > 3:
|
||||||
n_subdomians = len(url.split('.'))
|
n_subdomians = len(url.split('.'))
|
||||||
# Checks if there is more than 1 subdomain. "subdomain.url.onion" only
|
# Checks if there is more than 1 subdomain. "subdomain.url.onion" only
|
||||||
#print(f"This domain have more than one subdomain. There are {n_subdomians - 1} subdomains")
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
if len(url) < 62:
|
if len(url) < 62:
|
||||||
#print("Domain length is less than 62.")
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
elif pattern.fullmatch(url) is None:
|
elif pattern.fullmatch(url) is None:
|
||||||
#print("Domain contains invalid character.")
|
|
||||||
#print(url)
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
#print("Domain not valid")
|
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error: {e}")
|
print(f"Error: {e}")
|
||||||
|
|
183
scripts/utils.py
183
scripts/utils.py
|
@ -1,158 +1,120 @@
|
||||||
import os, pwd, re, pandas as pd, requests, shutil
|
import re
|
||||||
|
import requests
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
import urllib
|
|
||||||
import socks, socket, glob
|
|
||||||
|
|
||||||
PURPLE = '\033[35;40m'
|
PURPLE = '\033[35;40m'
|
||||||
BOLD_PURPLE = '\033[35;40;1m'
|
BOLD_PURPLE = '\033[35;40;1m'
|
||||||
ORANGE = '\033[33;40;1m'
|
|
||||||
RED = '\033[31;40m'
|
RED = '\033[31;40m'
|
||||||
BOLD_RED = '\033[31;40;1m'
|
BOLD_RED = '\033[31;40;1m'
|
||||||
RESET = '\033[m'
|
RESET = '\033[m'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Checking Functions to validate that links are legit ####
|
#### Checking Functions to validate that links are legit ####
|
||||||
|
|
||||||
def CheckUrl(url):
|
def CheckUrl(url):
|
||||||
"""
|
"""
|
||||||
Checks if URL is actually reachable via Tor
|
Checks if URL is actually reachable via Tor
|
||||||
"""
|
"""
|
||||||
proxies = {
|
proxies = {
|
||||||
'http': 'socks5h://127.0.0.1:9050',
|
'http': 'socks5h://127.0.0.1:9050',
|
||||||
'https': 'socks5h://127.0.0.1:9050'
|
'https': 'socks5h://127.0.0.1:9050'
|
||||||
}
|
}
|
||||||
try:
|
try:
|
||||||
status = requests.get(url,proxies=proxies, timeout=5).status_code
|
status = requests.get(url,proxies=proxies, timeout=5).status_code
|
||||||
print('[+]',url,status)
|
if status != 502:
|
||||||
if status != 502:
|
return True
|
||||||
#print(url,"✔️")
|
else:
|
||||||
return True
|
return False
|
||||||
else:
|
except requests.ConnectionError as e:
|
||||||
#print(url,"❌")
|
return False
|
||||||
return False
|
except requests.exceptions.ReadTimeout as e:
|
||||||
except requests.ConnectionError as e:
|
return False
|
||||||
#print(url,"❌")
|
|
||||||
return False
|
|
||||||
except requests.exceptions.ReadTimeout as e:
|
|
||||||
#print(url,"❌")
|
|
||||||
return False
|
|
||||||
|
|
||||||
#### PROTECTIONS AGAINST MALICIOUS CSV INPUTS ####
|
#### PROTECTIONS AGAINST MALICIOUS CSV INPUTS ####
|
||||||
|
|
||||||
def IsBannerValid(path: str) -> bool:
|
def IsBannerValid(path: str) -> bool:
|
||||||
"""
|
"""
|
||||||
Checks if the banner.png file has the correct dimensions (240x60)
|
Checks if the banner.png file has the correct dimensions (240x60)
|
||||||
"""
|
"""
|
||||||
#print('[+] checking image size')
|
try:
|
||||||
try:
|
im = Image.open(path)
|
||||||
im = Image.open(path)
|
except Exception as e:
|
||||||
except Exception as e:
|
print("ERROR, EXCEPTION")
|
||||||
return False
|
return False
|
||||||
#im = Image.open("favicon.png")
|
width, height = im.size
|
||||||
width, height = im.size
|
if width != 240 or height != 60:
|
||||||
#print('width =',width, 'height=',height)
|
print("INVALID BANNER DIMENSIONS, HEIGHT=",height," WIDTH=",width)
|
||||||
if width != 240 or height != 60:
|
return False
|
||||||
#print('[-] Banner doesnt have the correct size (240x60)')
|
|
||||||
return False
|
return True
|
||||||
else:
|
|
||||||
#print('[+] Banner has the correct size (240x60)')
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
def IsOnionValid(url: str)-> bool:
|
def IsOnionValid(url: str)-> bool:
|
||||||
"""
|
"""
|
||||||
Checks if the domain(param) is a valid onion domain and return True else False.
|
Checks if the domain(param) is a valid onion domain and return True else False.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9.] with maximum 128 chars max?
|
|
||||||
# check that it is only url.onion or subdomain.url.onion,
|
|
||||||
# if OK return True
|
|
||||||
#if not : return False
|
|
||||||
try:
|
try:
|
||||||
pattern = re.compile("^[A-Za-z0-9.]+(\.onion)?$")
|
pattern = re.compile("^[A-Za-z0-9.]+(.onion)?$")
|
||||||
url = url.strip().removesuffix('/')
|
url = url.strip().removesuffix('/')
|
||||||
if url.startswith('http://'):
|
if url.startswith('http://'):
|
||||||
#print('URL starts with http')
|
|
||||||
# Removes the http://
|
|
||||||
domain = url.split('/')[2]
|
domain = url.split('/')[2]
|
||||||
if pattern.fullmatch(domain) is not None:
|
if pattern.fullmatch(domain) is not None:
|
||||||
if len(domain.split('.')) > 3:
|
if len(domain.split('.')) > 3:
|
||||||
n_subdomians = len(domain.split('.'))
|
|
||||||
# Checks if there is more than 1 subdomain. "subdomain.url.onion" only
|
|
||||||
#print(f"This domain have more than one subdomain. There are {n_subdomians} subdomains")
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
if len(domain) < 62:
|
if len(domain) < 62:
|
||||||
#print("Domain length is less than 62.")
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
elif pattern.fullmatch(domain) is None:
|
elif pattern.fullmatch(domain) is None:
|
||||||
#print("Domain contains invalid character.")
|
|
||||||
#print(domain)
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
#print("Domain not valid")
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
#TODO : edit the url to make sure it has http:// at the beginning, in case if it's missing? (problem is that it only returns true or false)
|
#TODO : edit the url to make sure it has http:// at the beginning, in case if it's missing? (problem is that it only returns true or false)
|
||||||
#print("URL doesn't start http")
|
|
||||||
if pattern.fullmatch(url) is not None:
|
if pattern.fullmatch(url) is not None:
|
||||||
if len(url.split('.')) > 3:
|
if len(url.split('.')) > 3:
|
||||||
n_subdomians = len(url.split('.'))
|
|
||||||
# Checks if there is more than 1 subdomain. "subdomain.url.onion" only
|
|
||||||
#print(f"This domain have more than one subdomain. There are {n_subdomians - 1} subdomains")
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
if len(url) < 62:
|
if len(url) < 62:
|
||||||
#print("Domain length is less than 62.")
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
elif pattern.fullmatch(url) is None:
|
elif pattern.fullmatch(url) is None:
|
||||||
#print("Domain contains invalid character.")
|
|
||||||
#print(url)
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
#print("Domain not valid")
|
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error: {e}")
|
return False
|
||||||
|
|
||||||
|
|
||||||
def IsUrlValid(url:str)->bool:
|
def IsUrlValid(url:str)->bool:
|
||||||
"""
|
"""
|
||||||
Check if url is valid both dark net end clearnet.
|
Check if url is valid both dark net end clearnet.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9.:/] with maximum 128 chars max?
|
|
||||||
# check that it is only http(s)://wordA.wordB or http(s)://WordC.WordB.WordC, (onion or not), clearnet is fine too (double check if those are fine!)
|
|
||||||
# if OK return True
|
|
||||||
#if not : return False
|
|
||||||
pattern = re.compile("^[A-Za-z0-9:/.-]+$")
|
pattern = re.compile("^[A-Za-z0-9:/.-]+$")
|
||||||
url = str(url)
|
url = str(url)
|
||||||
if len(url) < 4:
|
if len(url) < 4:
|
||||||
#print("Status: Got more than one character or nothing.")
|
|
||||||
return False
|
return False
|
||||||
if url.endswith('.onion'):
|
if url.endswith('.onion'):
|
||||||
return IsOnionValid(url)
|
return IsOnionValid(url)
|
||||||
else:
|
else:
|
||||||
if not url.__contains__('.'):
|
if not url.__contains__('.'):
|
||||||
#print("No (DOT) in clearnet url")
|
|
||||||
return False
|
return False
|
||||||
if pattern.fullmatch(url) is None:
|
if pattern.fullmatch(url) is None:
|
||||||
#print('Url contains invalid chars')
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def IsStatusValid(status: str)-> bool:
|
def IsStatusValid(status: str)-> bool:
|
||||||
"""
|
"""
|
||||||
Checks if status contains only [v,x,❌,✔️]. Verbose only if False is returned
|
Checks if status contains only ['YES','NO']. Verbose only if False is returned
|
||||||
"""
|
"""
|
||||||
pattern = ['y','n','✔️','❌','','nan']
|
pattern = ['YES','NO','✔️','❌','']
|
||||||
|
#pattern = ['YES','NO']
|
||||||
status = str(status)
|
status = str(status)
|
||||||
status.strip()
|
status.strip()
|
||||||
#print('[+] STATUS = ',status.splitlines())
|
if (status not in pattern):
|
||||||
if len(status) > 4:
|
|
||||||
#print("Status: Got more than one character or nothing.")
|
|
||||||
return False
|
|
||||||
elif (status not in pattern):
|
|
||||||
#print("Status: Got an invalid character it must be either y, n, ✔️, or ❌ ")
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
@ -162,24 +124,15 @@ def IsScoreValid(score:str)->bool:
|
||||||
"""
|
"""
|
||||||
Check the Score is only "^[0-9.,]+$" with 8 max chars.
|
Check the Score is only "^[0-9.,]+$" with 8 max chars.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9.,' ] with maximum 256 chars max
|
|
||||||
#(careful with the ' and , make sure you test if it fucks the csv up or else)
|
|
||||||
# if OK return True
|
|
||||||
#if not : return False
|
|
||||||
pattern = re.compile("^[0-9.,]+$")
|
pattern = re.compile("^[0-9.,]+$")
|
||||||
score = str(score)
|
score = str(score)
|
||||||
score.strip()
|
score.strip()
|
||||||
#pattern = ['','nan']
|
|
||||||
if score in ['','nan']:
|
if score in ['','nan']:
|
||||||
#Score can be empty when initially added
|
|
||||||
return True
|
return True
|
||||||
if pattern.fullmatch(score) is None:
|
if pattern.fullmatch(score) is None:
|
||||||
# empty description is fine as it's optional
|
|
||||||
return False
|
return False
|
||||||
elif len(score) > 8:
|
elif len(score) > 8:
|
||||||
#print("score is greater than 8 chars")
|
|
||||||
return False
|
return False
|
||||||
# empty score is fine
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
@ -187,12 +140,7 @@ def IsDescriptionValid(desc:str)->bool:
|
||||||
"""
|
"""
|
||||||
Check the categories are only [a-zA-Z0-9.' ] with 256 max chars.
|
Check the categories are only [a-zA-Z0-9.' ] with 256 max chars.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9.,' ] with maximum 256 chars max
|
|
||||||
#(careful with the ' and , make sure you test if it fucks the csv up or else)
|
|
||||||
# if OK return True
|
|
||||||
#if not : return False
|
|
||||||
if desc == "":
|
if desc == "":
|
||||||
# empty description is fine as it's optional
|
|
||||||
return True
|
return True
|
||||||
pattern = re.compile("^[A-Za-z0-9-.,' \"]+$")
|
pattern = re.compile("^[A-Za-z0-9-.,' \"]+$")
|
||||||
desc = str(desc)
|
desc = str(desc)
|
||||||
|
@ -202,7 +150,6 @@ def IsDescriptionValid(desc:str)->bool:
|
||||||
if desc == "DEFAULT":
|
if desc == "DEFAULT":
|
||||||
return False
|
return False
|
||||||
elif len(desc) > 256:
|
elif len(desc) > 256:
|
||||||
#print("desc is greater than 256 chars")
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -210,18 +157,12 @@ def IsCategoryValid(categories: list)-> bool:
|
||||||
"""
|
"""
|
||||||
Check the categories are only [a-zA-Z0-9 ] with 64 max chars.
|
Check the categories are only [a-zA-Z0-9 ] with 64 max chars.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9 ] with maximum 64 chars max
|
|
||||||
#(careful with the ' and , make sure you test if it fucks the csv up or else)
|
|
||||||
# if OK return True
|
|
||||||
#if not : return False
|
|
||||||
pattern = re.compile("^[A-Za-z0-9 ]+$")
|
pattern = re.compile("^[A-Za-z0-9 ]+$")
|
||||||
for category in categories:
|
for category in categories:
|
||||||
category.strip()
|
category.strip()
|
||||||
if pattern.fullmatch(category) is None:
|
if pattern.fullmatch(category) is None:
|
||||||
#print('Got an empty list or invalid chars')
|
|
||||||
return False
|
return False
|
||||||
elif len(category) > 64:
|
elif len(category) > 64:
|
||||||
#print('Category is too long')
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
|
@ -230,41 +171,31 @@ def IsNameValid(name: str)->bool:
|
||||||
"""
|
"""
|
||||||
Check the parameter name only contains [a-zA-Z0-9 ] and is 64 chars long.
|
Check the parameter name only contains [a-zA-Z0-9 ] and is 64 chars long.
|
||||||
"""
|
"""
|
||||||
# check if the characters are only [a-zA-Z0-9 ] with maximum 64 chars max
|
try:
|
||||||
#(careful with the ' and , make sure you test if it fucks the csv up or else)
|
name = str(name)
|
||||||
# if OK return True
|
except Exception as e:
|
||||||
#if not : return False
|
return False
|
||||||
pattern = re.compile("^[A-Za-z0-9 ]+$")
|
pattern = re.compile("^[A-Za-z0-9 ]+$")
|
||||||
name = name.strip()
|
name = name.strip()
|
||||||
if (pattern.fullmatch(name) is None):
|
if (pattern.fullmatch(name) is None):
|
||||||
#print("Got an invalid character or nothing")
|
|
||||||
return False
|
return False
|
||||||
elif len(name) > 64:
|
elif len(name) > 64:
|
||||||
#print(f'Got a name length greater than 64. {len(name)}')
|
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def print_colors(s:str=' ', bold:bool=False, is_error:bool = False, default:bool=False):
|
||||||
#def print_colors(s:str, bold=False, is_error = False, default=False):
|
"""
|
||||||
def print_colors(*args, bold=False, is_error=False, default=False, highlight=False):
|
Helper function to print with colors
|
||||||
"""
|
"""
|
||||||
Helper function to print with colors
|
|
||||||
"""
|
|
||||||
for s in args:
|
|
||||||
if is_error:
|
if is_error:
|
||||||
print(f"{RED}{s}{RESET}",end='')
|
print(f"{RED}{s}{RESET}")
|
||||||
elif highlight:
|
|
||||||
print(f"{ORANGE}{s}{RESET}",end='')
|
|
||||||
elif bold:
|
elif bold:
|
||||||
print(f"{BOLD_PURPLE}{s}{RESET}",end='')
|
print(f"{BOLD_PURPLE}{s}{RESET}")
|
||||||
elif is_error and bold:
|
elif is_error and bold:
|
||||||
print(f"{BOLD_RED}{s}{RESET}",end='')
|
print(f"{BOLD_RED}{s}{RESET}")
|
||||||
elif default:
|
elif default:
|
||||||
print(f'{s}',end='')
|
print(f'{s}')
|
||||||
else:
|
else:
|
||||||
print(f"{PURPLE}{s}{RESET}",end='')
|
print(f"{PURPLE}{s}{RESET}")
|
||||||
if s is args[-1]:
|
|
||||||
print()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
8
updaterepo.sh
Executable file
8
updaterepo.sh
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#warning, you need to have the .gitignore intact to ignore www/participants/*/**
|
||||||
|
|
||||||
|
git rm -r --cached .
|
||||||
|
git add .
|
||||||
|
git commit
|
||||||
|
torsocks git push
|
3
www/.known_participants
Normal file
3
www/.known_participants
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
lantern.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion
|
||||||
|
lantern.nowhevi57f4lxxd6db43miewcsgtovakbh6v5f52ci7csc2yjzy5rnid.onion
|
||||||
|
zhd7yf675dav6njgc7yjwke2u5cq7d5qim2s7xwa2ukxfzubrguqmzyd.onion
|
|
@ -53,7 +53,7 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
|
||||||
|
|
||||||
//if ((($sensitive == 1) and ($data[4] == "✔️")) or (($sensitive == 0) and ($data[4] != "✔️")) ){
|
//if ((($sensitive == 1) and ($data[4] == "✔️")) or (($sensitive == 0) and ($data[4] != "✔️")) ){
|
||||||
// ONLY display links if (sensitive equals to 1 and sensitiveCOLUMN equals to V) OR (sensitive equals to 0 and sensitiveCOLUMN is NOT equal to V)
|
// ONLY display links if (sensitive equals to 1 and sensitiveCOLUMN equals to V) OR (sensitive equals to 0 and sensitiveCOLUMN is NOT equal to V)
|
||||||
if (($data[4] != "✔️") or (($sensitive == 1) and ($data[4] == "✔️"))){
|
if (($data[4] != "YES") or (($sensitive == 1) and ($data[4] == "YES"))){
|
||||||
$rowcount++;
|
$rowcount++;
|
||||||
|
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "<td>" ; // begin the table cell
|
echo "<td>" ; // begin the table cell
|
||||||
if($data[4] == "✔️"){
|
if($data[4] == "YES"){
|
||||||
echo '<a class="sensitivelink" href="'; // begin a href
|
echo '<a class="sensitivelink" href="'; // begin a href
|
||||||
}else{
|
}else{
|
||||||
echo '<a href="'; // begin a href
|
echo '<a href="'; // begin a href
|
||||||
|
@ -76,8 +76,13 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
|
||||||
echo $urllink . '"> '; // display the link
|
echo $urllink . '"> '; // display the link
|
||||||
echo $data[2] . ' </a></td><td class="description">'; // display the link title and close the a href and first cell, open the second cell
|
echo $data[2] . ' </a></td><td class="description">'; // display the link title and close the a href and first cell, open the second cell
|
||||||
echo $data[5] . " </td><td>"; // OPTIONAL: display the description column
|
echo $data[5] . " </td><td>"; // OPTIONAL: display the description column
|
||||||
echo $data[7] . " </td><td>"; // display the status and close the second cell, open the third cell
|
echo $data[7] . " </td><td>"; // display the score and close the second cell, open the third cell
|
||||||
echo $data[6] . " </td> \n"; // display the score and close the third cell
|
if($data[6] == "YES"){
|
||||||
|
echo "✔️" ;
|
||||||
|
}else{
|
||||||
|
echo "❌" ;
|
||||||
|
}
|
||||||
|
echo " </td> \n"; // display the status and close the third cell
|
||||||
}
|
}
|
||||||
//if ($c == 2){
|
//if ($c == 2){
|
||||||
//}
|
//}
|
||||||
|
@ -169,7 +174,7 @@ if (($handle = fopen($csvfile, "r")) !== FALSE) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo "</p>";
|
echo '<a class="sensitivelink" href="index.php?query=.&sensitive=1">Display All Links</a> |</p>';
|
||||||
fclose($handle);
|
fclose($handle);
|
||||||
}
|
}
|
||||||
//echo "<p>" . $resultcount . " Result(s) found.</p>";
|
//echo "<p>" . $resultcount . " Result(s) found.</p>";
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Loading…
Add table
Add a link
Reference in a new issue