This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#$1 file with links retrieved by the history ending in .aspx | |
# also try filename.cs.aspx | |
i=0 | |
mkdir out | |
for l in $(cat $1) | |
do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async () => { | |
const delay = ms => new Promise(r => setTimeout(r, ms)); | |
// CVSS vector labels to click per category | |
const cvssMapping = { | |
'C': ['Network', 'Low', 'None', 'None', 'Unchanged', 'High', 'High', 'High'], | |
'H': ['Network', 'Low', 'Low', 'None', 'Unchanged', 'High', 'High', 'High'], | |
'M': ['Network', 'High', 'Low', 'Required', 'Unchanged', 'Low', 'Low', 'Low'], | |
'N': ['Network', 'High', 'None', 'Required', 'Unchanged', 'Low', 'None', 'None'], | |
'default': ['Network', 'Low', 'None', 'None', 'Unchanged', 'Low', 'Low', 'Low'] |
OlderNewer