mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern.git
synced 2025-05-16 12:16:57 +00:00
Cleaned up some files
This commit is contained in:
parent
4837034ec3
commit
4e79b26ebf
3 changed files with 8 additions and 23 deletions
|
@ -1199,7 +1199,7 @@ Maintenance:
|
|||
break
|
||||
|
||||
case 11:
|
||||
category = "EXTERNAL USER"
|
||||
category = "ExternalUser"
|
||||
sensitive = "YES"
|
||||
try:
|
||||
print_colors("1) Move entries to verified 2) Move entries from submission to unverified 3) Delete from submission file 0) exit")
|
||||
|
@ -1214,9 +1214,9 @@ Maintenance:
|
|||
print_colors(submission_df)
|
||||
|
||||
indx = int(input("Which index do you want to add? "))
|
||||
link = submission_df.iloc[indx]['link']
|
||||
name = submission_df.iloc[indx]['name']
|
||||
desc = submission_df.iloc[indx]['desc']
|
||||
link = submission_df.iloc[indx]['link'].strip()
|
||||
name = submission_df.iloc[indx]['name'].strip()
|
||||
desc = submission_df.iloc[indx]['desc'].strip()
|
||||
|
||||
|
||||
new_row = pd.DataFrame({'Instance': [instance], 'Category': [category], 'Name':[name],'URL':[link],'Sensitive':[sensitive],'Description':[desc],'Status':['YES'],'Score':['100']})
|
||||
|
@ -1250,8 +1250,8 @@ Maintenance:
|
|||
case 0:
|
||||
break
|
||||
|
||||
except:
|
||||
print_colors('Try again',is_error=True)
|
||||
except Exception as e:
|
||||
print_colors(f'Try again {e}',is_error=True)
|
||||
break
|
||||
break
|
||||
case 0:
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
,link,name,desc
|
||||
0,daskd.com,myname,dasjklj
|
||||
link,name,desc
|
||||
f45bzecjvj6aviwkczxpr3vukapibx275hlqetrl6fo6youlsbbz2myd.onion,MyInstance,"Lantern Instance"
|
||||
|
|
|
|
@ -1,18 +1,3 @@
|
|||
|
||||
<?php
|
||||
|
||||
// Open a known directory, and proceed to read its contents
|
||||
if (is_dir($dir)) {
|
||||
if ($dh = opendir($dir)) {
|
||||
while (($file = readdir($dh)) !== false) {
|
||||
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
|
||||
}
|
||||
closedir($dh);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue