Skip to content

Commit

Permalink
Malwoverview 2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandreborges committed Mar 6, 2020
1 parent 767c335 commit b0483cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Malwoverview.py

[<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/alexandreborges/malwoverview?color=Red&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases/tag/2.1.6) [<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/alexandreborges/malwoverview?color=Yellow&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases) [<img alt="GitHub Release Date" src="https://img.shields.io/github/release-date/alexandreborges/malwoverview?label=Release%20Date&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases) [<img alt="GitHub" src="https://img.shields.io/github/license/alexandreborges/malwoverview?style=for-the-badge">](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE)
[<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/alexandreborges/malwoverview?color=Red&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases/tag/2.1.7) [<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/alexandreborges/malwoverview?color=Yellow&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases) [<img alt="GitHub Release Date" src="https://img.shields.io/github/release-date/alexandreborges/malwoverview?label=Release%20Date&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/releases) [<img alt="GitHub" src="https://img.shields.io/github/license/alexandreborges/malwoverview?style=for-the-badge">](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE)
[<img alt="GitHub stars" src="https://img.shields.io/github/stars/alexandreborges/malwoverview?logoColor=Red&style=for-the-badge">](https://github.com/alexandreborges/malwoverview/stargazers) [<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/ale_sp_brazil?color=blueviolet&style=for-the-badge">](https://twitter.com/ale_sp_brazil)

(Gaps in the VT output at image above are because public VT API key, which allows only 4 searches per minute).
Expand Down Expand Up @@ -57,7 +57,7 @@
See GNU Public License on <http://www.gnu.org/licenses/>.


# Current Version: 2.1.6
# Current Version: 2.1.7

## Important note: Malwoverview does NOT submit samples to Virus Total or Hybrid Analysis by default. It submits only hashes, so respecting Non-Disclosure Agreements (NDAs). Nonetheless, if you use the "-V" (uppercase), "-A" (uppercase) or "-P" (uppercase), so Malwoverview SUBMITS your malware sample to Virus Total, Hybrid Analysis and Polyswarm, respectively.

Expand Down Expand Up @@ -460,7 +460,7 @@ Options:

# HISTORY

Version 2.1.6:
Version 2.1.7:

This version:
Expand Down
8 changes: 3 additions & 5 deletions malwoverview.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# See GNU Public License on <http://www.gnu.org/licenses/>.


# Malwoverview.py: version 2.1.6
# Malwoverview.py: version 2.1.7

import os
import sys
Expand Down Expand Up @@ -44,7 +44,7 @@
__author__ = "Alexandre Borges"
__copyright__ = "Copyright 2018-2020, Alexandre Borges"
__license__ = "GNU General Public License v3.0"
__version__ = "2.1.6"
__version__ = "2.1.7"
__email__ = "alexandreborges at blackstormsecurity.com"

haurl = 'https://www.hybrid-analysis.com/api/v2'
Expand Down Expand Up @@ -3292,8 +3292,6 @@ def dirchecking(repo2):
malhash = args.malsharehash
maltype = args.malsharetype
maldownload = args.malsharedownload
malsources = args.malsharesources
mallocation = args.malsharelocation
hausfinalurl2 = args.urlhaussubmit
hausfinalurl = args.urlhausquery
hausbatch = args.urlhausbatch
Expand Down Expand Up @@ -3360,7 +3358,7 @@ def dirchecking(repo2):
print(mycolors.reset)
exit(0)

if ((not args.direct) and (fprovided == 0) and (not urltemp) and (not hashtemp) and (not filetemp) and (not fileha) and (not repoha) and (not domaintemp) and (mallist == 0) and (not args.malsharehash) and (not args.urlhausquery) and (not args.urlhaussubmit) and (malsources == 0) and (hausbatch == 0) and (hauspayloads == 0) and (not args.haushash) and (not args.hausdownloadpayload) and (not args.polyswarmscan) and (not args.polyswarmurl) and (not args.polyswarmhash) and (not args.polyswarmmeta)):
if ((not args.direct) and (fprovided == 0) and (not urltemp) and (not hashtemp) and (not filetemp) and (not fileha) and (not repoha) and (not domaintemp) and (mallist == 0) and (not args.malsharehash) and (not args.urlhausquery) and (not args.urlhaussubmit) and (hausbatch == 0) and (hauspayloads == 0) and (not args.haushash) and (not args.hausdownloadpayload) and (not args.polyswarmscan) and (not args.polyswarmurl) and (not args.polyswarmhash) and (not args.polyswarmmeta)):
parser.print_help()
print(mycolors.reset)
exit(0)
Expand Down

0 comments on commit b0483cd

Please sign in to comment.