mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-08-27 05:22:38 +00:00
move scripts to .bin
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/awk -f
|
||||
BEGIN {
|
||||
# load all the URLs we scanned already
|
||||
command = "util/print-urls.sh"
|
||||
while (command | getline) {
|
||||
urls[$0] = 1 # add to set
|
||||
}
|
||||
close(command)
|
||||
# get package URLs that do not appear in the list
|
||||
command = "util/get-package-urls.sh"
|
||||
while (command | getline) {
|
||||
if (!($0 in urls)) print
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user