From 115eed00e3ad316a0daebd53e6ce4333ab4a45f3 Mon Sep 17 00:00:00 2001 From: ozaik <50409548+ozaik@users.noreply.github.com> Date: Fri, 6 Dec 2019 13:28:29 +0100 Subject: [PATCH] Create WhatsApp logo spoofer Simple script to spoof the WhatsApp logo on the QR code. You can add it directly in the module option. Before : http://image.noelshack.com/fichiers/2019/49/5/1575635062-qr.png After : http://image.noelshack.com/fichiers/2019/49/5/1575635062-final.png Filtre used : http://image.noelshack.com/fichiers/2019/49/5/1575635062-filtre.png instagram : http://image.noelshack.com/fichiers/2019/49/5/1575635062-instagram.png Twitter : http://image.noelshack.com/fichiers/2019/49/5/1575635062-twitter.png --- WhatsApp logo spoofer | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 WhatsApp logo spoofer diff --git a/WhatsApp logo spoofer b/WhatsApp logo spoofer new file mode 100644 index 0000000..e8b2797 --- /dev/null +++ b/WhatsApp logo spoofer @@ -0,0 +1,19 @@ +#!/usr/bin/env python +import PIL +from PIL import Image +import numpy as np + + + +image_path = Image.open("./qr.png") +image_pathFiltre = Image.open("./filtre.png") + +def spoof(image_path, image_pathFiltre): + image_path.paste(image_pathFiltre, (0, 0), image_pathFiltre) + image_path.save('tmp.png',"PNG") + + +spoof(image_path,image_pathFiltre) + +imageFinal = Image.open("tmp.png") +imageFinal.show()