Skip to content

Commit

Permalink
fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
liorblob committed Feb 3, 2019
1 parent 68afc0b commit 5d5a560
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Scripts/script-RecordedFutureDomainRiskList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ script: |-
# Skip headers line
columns = row.split(',')
domain = columns[name_column]
domain = columns[name_column].strip('\"')
score = None
try:
score = int(columns[score_column].strip('\"'))
Expand Down
2 changes: 1 addition & 1 deletion Scripts/script-RecordedFutureHashRiskList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ script: |-
# Skip headers line
columns = row.split(',')
ip = columns[name_column]
hash_indicator = columns[name_column].strip('\"')
score = None
try:
score = int(columns[score_column].strip('\"'))
Expand Down
2 changes: 1 addition & 1 deletion Scripts/script-RecordedFutureIPRiskList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ script: |-
# Skip headers line
columns = row.split(',')
ip = columns[name_column]
ip = columns[name_column].strip('\"')
score = None
try:
score = int(columns[score_column].strip('\"'))
Expand Down
2 changes: 1 addition & 1 deletion Scripts/script-RecordedFutureURLRiskList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ script: |-
# Skip headers line
columns = row.split(',')
ip = columns[name_column]
url = columns[name_column].strip('\"')
score = None
try:
score = int(columns[score_column].strip('\"'))
Expand Down
2 changes: 1 addition & 1 deletion Scripts/script-RecordedFutureVulnerabilityRiskList.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ script: |-
# Skip headers line
columns = row.split(',')
ip = columns[name_column]
cve = columns[name_column].strip('\"')
score = None
try:
score = int(columns[score_column].strip('\"'))
Expand Down

0 comments on commit 5d5a560

Please sign in to comment.