- Princípios básicos
- Tipos de ameaças
- Tipos de ataques
- Proteção
- Serviços
This file contains 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
# encoding: utf-8 | |
DEBUG = 1 | |
@people = {'Renato'=> {'Marguerita'=> 4, 'Quatro queijos'=> 5, | |
'Escarola'=> 4, 'Portuguesa'=> 5, 'Frango + Catupiry'=> 4, | |
'Napolitana'=> 3}, | |
'Marcelo'=> {'Marguerita'=> 2, 'Quatro queijos'=> 2, | |
'Escarola'=> 1, 'Portuguesa'=> 3, 'Frango + Catupiry'=> 5, | |
'Napolitana'=> 2}, | |
'Lenon'=> {'Marguerita'=> 4, 'Quatro queijos'=> 5, |
This file contains 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
[global_config] | |
enabled_plugins = LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
handle_size = 1 | |
[keybindings] | |
[profiles] | |
[[default]] | |
foreground_color = "#657b83" | |
palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3" | |
font = Monaco 18 | |
use_system_font = False |
This file contains 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
<form accept-charset="UTF-8" action="/products" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /></div> | |
<input id="keywords" name="keywords" placeholder="Search" type="search" /> | |
<input type="submit" value="Search" /> | |
</form> |
This file contains 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 | |
DATA=`date +%Y%m%d-%H%M` | |
DUMP=/usr/bin/mysqldump | |
MYSQLDIR='cd /tmp/bkp' | |
TAR=/bin/tar | |
$DUMP -uroot -p123 --all-databases > /tmp/bkp/mysql.bkp_$DATA | |
$MYSQLDIR |
This file contains 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
listen 5000 | |
listen 5001 | |
listen 5002 | |
listen 5003 | |
worker_processes 4 | |
pid "/var/run/unicorn/project.pid" | |
stderr_path "/var/log/unicorn/project.log" | |
stdout_path "/var/log/unicorn/project.log" |
This file contains 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
http://photon.attasi.com/ | |
http://2012.beercamp.com/ | |
https://developer.mozilla.org/en-US/demos/detail/cards-doubles/launch | |
https://developer.mozilla.org/en-US/demos/detail/modern-css3-calculator/launch | |
https://developer.mozilla.org/en-US/demos/detail/old-radio/launch | |
http://html5-pro.com/wormz/ | |
http://triggerrally.com/ | |
http://salveaweb.com/ |
This file contains 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
pt-BR: | |
activerecord: | |
attributes: | |
user: | |
name: "Nome" | |
email: "E-mail" | |
password: "Senha" | |
password_digest: "Senha" | |
password_confirmation: "Confirmação de senha" |
This file contains 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
# Exploit Title: Joomla Component (com_foxcontact) Arbitrary File Upload Vulnerability | |
# Author: DaOne aka MockingBird | |
# Vendor Homepage: http://www.fox.ra.it/ | |
# Price: €10 | |
# Category: webapps/php | |
# Version: 1.0.8 | |
# Google dork: inurl:index.php?option=com_foxcontact | |
------------------------------------------------------------------------ | |
# Exploit |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "precise32" | |
config.vm.box_url = "http://files.vagrantup.com/precise32.box" | |
config.vm.define :developer do |local_config| |
OlderNewer