This file contains hidden or 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 | |
import socket, getopt, sys, os.path | |
SMTP_PORT = 25 | |
BUFFER_SIZE = 1024 | |
OK_STATUS = 252 | |
APP_NAME = "smtpenum" | |
VERSION = "1.0.0" |
This file contains hidden or 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
#!/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 |
This file contains hidden or 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
#!/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 "" |
This file contains hidden or 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
#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 |
NewerOlder