Neo23x0 / munin

Online hash checker for Virustotal and other services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] Not Returning Type or Filenames

ssnkhan opened this issue · comments

Running the latest version of munin:

./munin.py -i munin.ini -f Hashes.txt

For all of the 100 hashes passed through, munin does not return the Type or Filenames for any of the hashes, despite the information being available on VT. My API access does allow this information to be retrieved.

Get the same result when running the query through the CLI.

Running the same hash through the VT API endpoint does return the filenames and filetypes. Could this be an issue in the munin JSON parser?

Thanks for your help.

I noticed that the objects and arrays returned from the VT API are as follows:

filenames == submission_names
filetype == type

That's related to VTs changes in the Web frontend. This info isn't included in the API response but has to be parsed from the web page.

On Tue, Jul 23, 2019 at 12:55 PM Sajid Nawaz Khan @.***> wrote: Running the latest version of munin: ./munin.py -i munin.ini -f Hashes.txt For all of the 100 hashes passed through, munin does not return the Type or Filenames for any of the hashes, despite the information being available on VT. My API access does allow this information to be retrieved. Get the same result when running the query through the CLI. Running the same hash through the VT API endpoint does return the filenames and filetypes. Could this be an issue in the munin JSON parser? Thanks for your help. — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub <#22?email_source=notifications&email_token=AAVYFJEO73X3Y7HGMEJG24LQA3PSXA5CNFSM4IGC6DV2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HA4OMPA>, or mute the thread https://github.com/notifications/unsubscribe-auth/AAVYFJGHXIRCCGS4J67PUGTQA3PSXANCNFSM4IGC6DVQ .
-- Florian Roth Key material (Keybase, S/MIME, PGP, Threema): https://keybase.pub/johngalt/

I can see the values in the API response though?

allinfo must be set to true, which then returns the submission name. Entering a sample hash here https://developers.virustotal.com/reference#file-report shows that the API response does return this information.

Try the newest commit that I've just pushed

'allinfo' is only accessible with private API keys

There's still a reCAPTCHA issue

Screenshot 2019-07-23 at 15 26 11

Perfect, this is working now -- thank you!