Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
Ferramentas/GitHubGitHub/sdushantha/tmpmail
Utilitários de Propósito GeralPrivacidadeSegurança de Email
GitHubsdushantha/tmpmail

tmpmail

Um email temporário direto do seu terminal escrito em POSIX sh

Ver Repositório
4.2k164há 4 anosRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Um email temporário diretamente do seu terminal escrito em POSIX sh


tmpmail é um utilitário de linha de comando escrito em POSIX sh que permite criar um endereço de email temporário e receber emails nesse endereço. Ele usa a API do 1secmail para receber emails.

Por padrão, o w3m é usado para renderizar emails HTML no terminal. Mas se você preferir outro navegador baseado em texto ou preferir visualizar o email em um navegador web GUI como Firefox, basta usar o argumento --browser seguido do comando necessário para iniciar o navegador web de sua escolha.




Dependências

  • w3m
  • curl
  • jq
  • xclip

Instalação

Instalar localmente

root@kitploit:~
# Download the tmpmail file and make it executable
$ curl -L "https://raw.githubusercontent.com/sdushantha/tmpmail/master/tmpmail" > tmpmail && chmod +x tmpmail

# Then move it somewhere in your $PATH. Here is an example:
$ mv tmpmail ~/bin/

AUR

tmpmail está disponível no AUR, que atualmente é mantido por Benjamin Bädorf

root@kitploit:~
$ yay -S tmpmail-git

Pacstall (Debian/Ubuntu)

tmpmail está disponível no repositório pacstall-programs, que atualmente é mantido por wizard-28

root@kitploit:~
$ pacstall -I tmpmail-bin

Nixpkgs

tmpmail também está disponível na coleção de pacotes nix (apenas unstable atualmente), que é mantida por legendofmiracles

Adicione-o aos pacotes do sistema, instale com nix-env ou experimente em um nix-shell efêmero nix-shell -p tmpmail

Docker

requisitos:

  • docker
  • clone este repositório
root@kitploit:~
$ docker build -t mail .; # Dockerfile available in source code
$ docker run -it mail;

Uso

root@kitploit:~
$ tmpmail --help
tmpmail
tmpmail -h | --version
tmpmail -g [ADDRESS]
tmpmail [-t | -b BROWSER] -r | ID

When called with no option and no argument, tmpmail lists the messages in
the inbox and their numeric IDs.  When called with one argument, tmpmail
shows the email message with specified ID.

-b, --browser BROWSER
        Specify BROWSER that is used to render the HTML of
        the email (default: w3m)
    --clipboard-cmd COMMAND
        Specify the COMMAND to use for copying the email address to your
        clipboard (default: xclip -selection c)
-c, --copy
        Copy the email address to your clipboard
-d, --domains
        Show list of available domains
-g, --generate [ADDRESS]
        Generate a new email address, either the specified ADDRESS, or
        randomly create one
-h, --help
        Show help
-r, --recent
        View the most recent email message
-t, --text
        View the email as raw text, where all the HTML tags are removed.
        Without this option, HTML is used.
--version
        Show version

Exemplos

Criar email aleatório

root@kitploit:~
$ tmpmail --generate
[email protected]

Criar email personalizado

root@kitploit:~
$ tmpmail --generate [email protected]
[email protected]

Visualizar a caixa de entrada

root@kitploit:~
$ tmpmail
[ Inbox for [email protected] ]

83414443   [email protected]   Test Email

Visualizar o email

root@kitploit:~
$ tmpmail 83414443

Visualizar o email mais recente

root@kitploit:~
$ tmpmail -r

Visualizar emails como texto puro

root@kitploit:~
$ tmpmail -t 83414443
To: [email protected]
From: [email protected]
Subject: Test Email

Hello World

[Attachments]
https://is.gd/aBCdEf [apple.jpg]
https://is.gd/AbCDeF [ball.jpg]

Créditos

Este script é fortemente inspirado no script 1secmail de Mitch Weaver

Baixar ferramenta