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 / 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
@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 / 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 / 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 / addr.sh
Last active October 28, 2016 14:15
Lazy Local and External IP
#!/bin/bash
####################################################################################
#
# addr.sh
#
# 'cause we're too damn lazy to read all the information that ifconfig gives us!
#
# Usage:
#
@tommelo
tommelo / dnsreport.sh
Created November 24, 2016 20:06
dns report
#!/bin/bash
echo ""
if [ $# -eq 0 ]
then
echo "[!] no arguments given"
echo "[!] usage: ./dnsreport.sh [host]"
echo "[!] eg.: ./dnsreport.sh grandbusiness.com.br"
exit 1
@tommelo
tommelo / scraper.js
Created September 10, 2017 22:30
Simple Scraper
'use strict';
var request = require('request-promise');
var cheerio = require('cheerio');
/**
* The default constructor
*/
function Scraper() {
@tommelo
tommelo / google.js
Created September 10, 2017 22:47
A Simple Google Scraper
'use strict';
var url = require('url');
var util = require('util');
var Scraper = require('./scraper');
/**
* The defult configuration
*/
var HOST = 'https://google.com'; // google's host
@tommelo
tommelo / hunter.js
Created September 10, 2017 22:50
Seeks for Instagram Links
'use strict';
var util = require('util');
var Scraper = require('./scraper');
/**
* The default constructor
*/
function Hunter() {
Scraper.call(this);