Skip to content

Instantly share code, notes, and snippets.

View tommelo's full-sized avatar

Tom Melo tommelo

  • IT Gorillaz
  • Stuttgart, Germany
View GitHub Profile
@tommelo
tommelo / smtpenum.py
Created September 29, 2016 17:25
SMTP User Enumeration
#!/usr/bin/env python
import socket, getopt, sys, os.path
SMTP_PORT = 25
BUFFER_SIZE = 1024
OK_STATUS = 252
APP_NAME = "smtpenum"
VERSION = "1.0.0"
@tommelo
tommelo / dnsenum.sh
Last active June 23, 2019 22:57
Simple DNS Enumeration
#!/bin/bash
echo ""
if [ $# -eq 0 ]
then
echo "[!] no arguments given"
echo "[!] usage: ./dnsenum.sh [host]"
echo "[!] eg.: ./dnsenum.sh grandbusiness.com.br"
exit 1
@tommelo
tommelo / recon.sh
Created September 23, 2016 14:31
Simple webiste dir|file information gathering
#!/bin/bash
echo ""
if [ $# -lt 2 ]
then
echo "[!] no arguments given"
echo "[!] usage: ./recon.sh [url] [wordlist file]"
echo "[!] eg.: ./recon.sh http://www.grandbusiness.com.br /usr/share/dirb/wordlists/small.txt"
echo ""
@tommelo
tommelo / ftpdown.c
Last active September 19, 2016 13:57
Simple DoS FTP Atack
#include <stdio.h>
#include <netdb.h>
#include <string.h>
#include <errno.h>
#include <sys/socket.h>
#include <resolv.h>
#include <stdlib.h>
#include <arpa/inet.h>
#define FTP_PORT 21