This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
=========================================================================================================== | |
Script: dmarc_check.py | |
Autor: Felipe Andrade | |
Versão: 1.0 | |
Descrição: Esse script faz o parse nos relatórios dmarc para validação de | |
possíveis ataques spoofing ou phishing. | |
=========================================================================================================== | |
DKIM é um mecanismo de autenticação de emails que permite ao destinatário | |
verificar se uma mensagem de email foi realmente enviada e autorizada pelo domínio indicado. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Notificações através do Firebase Cloud Messaging (FCM) | |
Firebase Cloud Messaging (FCM) é utilizado para disparo de | |
mensagens push para dispositivos iOS, Android e Web. | |
Esse classe dispara três tipos de mensagens: | |
- Para Tópicos ou Canais | |
- Para uma plataforma específica |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# @Author: Felipe Andrade | |
# @Date: 01-02-2020 00:00:00 | |
# [email protected] | |
# Lib used to read CSV files | |
import csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# @Author: Felipe Andrade | |
# @Date: 11-02-2017 11:00:00 | |
# Get reviews from the App Store | |
# [email protected] | |
import io |