We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fb8e1 commit 2909da4Copy full SHA for 2909da4
searchsploit.py
@@ -407,6 +407,12 @@ def searchsploitout():
407
separater(COL/4, "", os.path.abspath(path_array[i]))
408
drawline(lim) # display title for every database
409
for lines in query:
410
+ # Removing quotes around title if present
411
+ if (lines[0][0] == "\"" or lines[0][0] == "\'"):
412
+ lines[0] = lines[0][1:]
413
+ if (lines[0][-1] == "\"" or lines[0][-1] == "\'"):
414
+ lines[0] = lines[0][:-1]
415
+
416
if WEBLINK: # if requesting weblinks. shapes the output for urls
417
lines[1] = "https://www.exploit-db.com/" + \
418
lines[1][:lines[1].index("/")] + "/" + lines[2]
0 commit comments