diff --git a/scripts/lantern.py b/scripts/lantern.py index 746702e..3a195cd 100644 --- a/scripts/lantern.py +++ b/scripts/lantern.py @@ -150,6 +150,11 @@ def main(): webpdf = pd.read_csv(webpcsvfile, on_bad_lines='skip') print_colors(f"[+] file exists, your Webring URL is {instance}") + if 'Blacklisted' not in webpdf.columns: + webpdf.insert(4, 'Blacklisted', 'NO') + + webpdf.to_csv(webpcsvfile) + ##### CHECK IF ARGUMENTS ARE PASSED TO ENTER PROMPT-LESS MODE ##### if len(sys.argv) == 2 and sys.argv[1] == "4": print("4) Synchronize new links from existing webring participants into your unverified.csv file")