Skip to content

Commit

Permalink
[ReversingLabsA1000v2] MyPy In Docker (#38040)
Browse files Browse the repository at this point in the history
* fix

* RN

* Bump pack from version ReversingLabs_A1000 to 2.4.3.

---------

Co-authored-by: Content Bot <[email protected]>
  • Loading branch information
shmuel44 and Content Bot authored Jan 8, 2025
1 parent db7fde9 commit 461cab4
Show file tree
Hide file tree
Showing 4 changed files with 288 additions and 279 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@


def format_proxy(addr, username=None, password=None):
protocol: str
proxy_name: str
if addr.startswith("http://"):
protocol = addr[:7]
proxy_name = addr[7:]
Expand Down Expand Up @@ -171,7 +173,7 @@ def a1000_report_output(response_json):
markdown += f'''\n **Category:** {result.get('category')}
**Classification origin:** {result.get('classification_origin')}
**Classification reason:** {result.get('classification_reason')}
**Aliases:** {','.join(result.get('aliases'))}
**Aliases:** {','.join(result.get('aliases', []))}
**Extracted file count:** {result.get('extracted_file_count')}
**Identification name:** {result.get('identification_name')}
**Identification version:** {result.get('identification_version')}\n'''
Expand Down
Loading

0 comments on commit 461cab4

Please sign in to comment.