/qt-virustotal-uploader

VirusTotal Uploader written in C++ using QT framework

Primary LanguageC++Apache License 2.0Apache-2.0

VirusTotal uploader

This program internally uses the VirusTotal public API. You can drag and drop a file or folder into the program to queue it for uploading and scanning

Generic Instructions for compiling and Install

  1. build c-vtapi https://github.com/VirusTotal/c-vtapi
  • autoreconf -fi
  • ./configure
  • make
  • sudo make install
  1. Build VirusTotal Uploader

Ubuntu or debian instructions

# get dependencies
sudo apt-get install build-essential qtchooser qt5-default libjansson-dev libcurl4-openssl-dev git

# clone the c-vtapi library
git clone https://github.com/VirusTotal/c-vtapi.git

#change to c-vtapi directory
cd c-vtapi

# configure with default option and make with 4 jobs in parallel
./conigure && make -j4

# install to system, by default this goes to /usr/local/lib
sudo make install 

# configure dynamic linker to add /usr/local/lib to path
sudo sh -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/usr-local-lib.conf'
sudo ldconfig

# go back to base directory
cd ..

#clone QT VirusTotal Uplaoder
git clone https://github.com/VirusTotal/qt-virustotal-uploader.git
cd qt-virustotal-uploader

# run qmake, specifing qt5 
qtchooser -run-tool=qmake -qt=5

# compile with 4 parellel jobs
make -j4

#optionally install 
sudo make install