Code | Title | Duration | Link |
---|---|---|---|
Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
Keynote | [Tuesday Night Live with Jame |
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 |
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
#!/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
#!/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 | |
#################################################################################### | |
# | |
# addr.sh | |
# | |
# 'cause we're too damn lazy to read all the information that ifconfig gives us! | |
# | |
# Usage: | |
# |
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: ./dnsreport.sh [host]" | |
echo "[!] eg.: ./dnsreport.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
'use strict'; | |
var request = require('request-promise'); | |
var cheerio = require('cheerio'); | |
/** | |
* The default constructor | |
*/ | |
function Scraper() { |
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
'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 |
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
'use strict'; | |
var util = require('util'); | |
var Scraper = require('./scraper'); | |
/** | |
* The default constructor | |
*/ | |
function Hunter() { | |
Scraper.call(this); |
OlderNewer