the flow is decomposed in 3 steps
- the source (ffmpeg)
- the proxy (nginx)
- the client (flash)
| Nmap Full Web Vulnerable Scan | |
| cd /usr/share/nmap/scripts/ | |
| wget http://www.computec.ch/projekte/vulscan/download/nmap_nse_vulscan-2.0.tar.gz && tar xzf nmap_nse_vulscan-2.0.tar.gz | |
| nmap -sS -sV --script=vulscan/vulscan.nse target | |
| nmap -sS -sV --script=vulscan/vulscan.nse 鈥搒cript-args vulscandb=scipvuldb.csv target | |
| nmap -sS -sV --script=vulscan/vulscan.nse 鈥搒cript-args vulscandb=scipvuldb.csv -p80 target | |
| nmap -PN -sS -sV --script=vulscan 鈥搒cript-args vulscancorrelation=1 -p80 target | |
| nmap -sV --script=vuln target | |
| nmap -PN -sS -sV --script=all 鈥搒cript-args vulscancorrelation=1 target |
| # OSX for Pentesting (Mavericks/Yosemite) | |
| # | |
| # A fork of OSX for Hackers (Original Source: https://gist.github.com/brandonb927/3195465) | |
| #!/bin/sh | |
| # Ask for the administrator password upfront | |
| echo "Have you read through the script prior to running this? (y or n)" | |
| read bcareful |
| worker_processes 1; | |
| error_log logs/error.log; | |
| error_log logs/error.log info; | |
| pid logs/nginx.pid; | |
| events { | |
| worker_connections 1024; |
| #!/bin/bash -x | |
| export nginx_version=1.9.9 | |
| # get latest rtmp mod | |
| mkdir /usr/local/src | |
| cd /usr/local/src | |
| git clone git://github.com/arut/nginx-rtmp-module.git | |
| # get nginx | |
| wget http://nginx.org/download/nginx-${nginx_version}.tar.gz |
| /* | |
| 1. Entra a https://twitter.com/followers | |
| 2. Haz scroll hasta que se carguen todos tus followers | |
| 3. Corre el c贸digo de all谩 abajo en la consola de tu navegador | |
| 4. ??? | |
| 5. PROFIT!!1! | |
| */ | |
| (function(){ | |
| var followers = document.querySelectorAll('.js-actionable-user .u-linkComplex-target'), for_realz = followers.length, | |
| for_lulz = parseInt(document.querySelector('.ProfileNav-item--followers .ProfileNav-value').innerText, 10); |
Versi贸n 0.0.1; Septiembre, 2014
Copyright (c) [a帽o], [titular de derechos de autor]
Todos los derechos reservados.
La redistribuci贸n y uso como c贸digo fuente y/u objeto, con o sin modificaciones, est谩 permitida siempre y cuando todas las siguientes condiciones sean respetadas:
| /* MEGA 3133T H4X0R */ | |
| var to = null; | |
| var twitterReady = function(){ | |
| if (window.frames.length < 2) { | |
| return false; | |
| } | |
| clearInterval(to); | |
| to = null; | |
| s = window.frames[0].document.createElement('style'); | |
| console.log('ready'); |
| <? | |
| // Logger | |
| class Log { | |
| protected $path; | |
| protected $format = 'Y-m-d H:i:s'; | |
| protected $enabled = TRUE; | |
| public function __construct($p) | |
| { |