From 1fb1a48209e17d74fe5f5ddfd7fe3f43cb847a3b Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Thu, 28 May 2026 01:56:39 -0600 Subject: [PATCH] idk fuckin virustotal submitter --- customscripts/virustotal_submit.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 customscripts/virustotal_submit.sh diff --git a/customscripts/virustotal_submit.sh b/customscripts/virustotal_submit.sh new file mode 100644 index 0000000..6a9240d --- /dev/null +++ b/customscripts/virustotal_submit.sh @@ -0,0 +1,16 @@ +#!/bin/bash +if [ ! -f "$1" ]; then + echo "FAIL: $1 is Not a File!" >&2 + exit 1 +else + sample="$1" +fi + +# submit da fucker ig +curl -X POST -H "X-ApiKey: $VIRUSTOTAL_API_KEY" -F "file=@$sample" https://www.virustotal.com/api/v3/files + +# make da sha256 for da fookin link ig for to make da fookin link jfc +link="https://www.virustotal.com/gui/file/$(sha256sum $sample | awk '{print $1}')" + +# fookin show the fuuuckin link fuuck +echo -e "\nVirustotal Link: $link\n" \ No newline at end of file