<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Paket-Bombadierung trotz Software-Firewall]]></title><description><![CDATA[<p>Hey!</p>
<p>Könnt ihr mir helfen? Ich habe mir eine Firewall gebaut. Normalerweise funktioniert die auch, nur heute hat sie komischerweise versagt, was eigentlich nicht sein kann!</p>
<pre><code class="language-cpp">INTERFACE_HANDLE interfaceHandle;
FILTER_HANDLE filterHandle;

	PF_FILTER_DESCRIPTOR filter;

	PfCreateInterface(0, PF_ACTION_FORWARD, PF_ACTION_FORWARD, FALSE, TRUE, &amp;interfaceHandle); 

	unsigned long myIp = LongToIp(&quot;192.168.0.5&quot;);

	PBYTE localIp = (PBYTE)&amp;myIp;

	PfBindInterfaceToIPAddress(interfaceHandle, PF_IPV4, localIp);

	filter.dwFilterFlags       = FD_FLAGS_NOSYN;
	filter.dwRule              = 0;
	filter.pfatType            = PF_IPV4;
	filter.wSrcPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wSrcPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.fLateBound		   = 0;
	filter.dwProtocol          = FILTER_PROTO_ANY;

	unsigned long destinationIp = LongToIp(&quot;0.0.0.0&quot;);

	filter.DstAddr = (PBYTE)&amp;destinationIp;
	filter.DstMask = (PBYTE)&amp;destinationIp;

	in_addr inAddr;
	inAddr.S_un.S_un_b.s_b1 = ipByte1;
	inAddr.S_un.S_un_b.s_b2 = ipByte2;
	inAddr.S_un.S_un_b.s_b3 = ipByte3;
	inAddr.S_un.S_un_b.s_b4 = ipByte4;

	unsigned long sourceIp = LongToIp(inet_ntoa(inAddr));

	filter.SrcAddr = (PBYTE)&amp;sourceIp;
	filter.SrcMask = (PBYTE)&amp;sourceIp;

	PfAddFiltersToInterface(interfaceHandle, 1, &amp;filter, 1, &amp;filter, &amp;filterHandle);
</code></pre>
<p>Dieser Code sollte doch JEGLICHE Pakete mit der übergebenen IP nicht mehr durchlassen? Tut es aber. Hat gestern funktioniert, die IP wurde geblockt. Heute nicht mehr, die Pakete kommen durch.</p>
<p>Was kann ich tun?<br />
MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/189415/paket-bombadierung-trotz-software-firewall</link><generator>RSS for Node</generator><lastBuildDate>Thu, 02 Jul 2026 17:51:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/189415.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 12 Aug 2007 19:35:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 19:35:47 GMT]]></title><description><![CDATA[<p>Hey!</p>
<p>Könnt ihr mir helfen? Ich habe mir eine Firewall gebaut. Normalerweise funktioniert die auch, nur heute hat sie komischerweise versagt, was eigentlich nicht sein kann!</p>
<pre><code class="language-cpp">INTERFACE_HANDLE interfaceHandle;
FILTER_HANDLE filterHandle;

	PF_FILTER_DESCRIPTOR filter;

	PfCreateInterface(0, PF_ACTION_FORWARD, PF_ACTION_FORWARD, FALSE, TRUE, &amp;interfaceHandle); 

	unsigned long myIp = LongToIp(&quot;192.168.0.5&quot;);

	PBYTE localIp = (PBYTE)&amp;myIp;

	PfBindInterfaceToIPAddress(interfaceHandle, PF_IPV4, localIp);

	filter.dwFilterFlags       = FD_FLAGS_NOSYN;
	filter.dwRule              = 0;
	filter.pfatType            = PF_IPV4;
	filter.wSrcPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wSrcPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.fLateBound		   = 0;
	filter.dwProtocol          = FILTER_PROTO_ANY;

	unsigned long destinationIp = LongToIp(&quot;0.0.0.0&quot;);

	filter.DstAddr = (PBYTE)&amp;destinationIp;
	filter.DstMask = (PBYTE)&amp;destinationIp;

	in_addr inAddr;
	inAddr.S_un.S_un_b.s_b1 = ipByte1;
	inAddr.S_un.S_un_b.s_b2 = ipByte2;
	inAddr.S_un.S_un_b.s_b3 = ipByte3;
	inAddr.S_un.S_un_b.s_b4 = ipByte4;

	unsigned long sourceIp = LongToIp(inet_ntoa(inAddr));

	filter.SrcAddr = (PBYTE)&amp;sourceIp;
	filter.SrcMask = (PBYTE)&amp;sourceIp;

	PfAddFiltersToInterface(interfaceHandle, 1, &amp;filter, 1, &amp;filter, &amp;filterHandle);
</code></pre>
<p>Dieser Code sollte doch JEGLICHE Pakete mit der übergebenen IP nicht mehr durchlassen? Tut es aber. Hat gestern funktioniert, die IP wurde geblockt. Heute nicht mehr, die Pakete kommen durch.</p>
<p>Was kann ich tun?<br />
MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343312</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343312</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 19:35:47 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 19:36:34 GMT]]></title><description><![CDATA[<p>Sorry, hier die Funktion:</p>
<p>void blockIp(unsigned char ipByte1, unsigned char ipByte2, unsigned char ipByte3, unsigned char ipByte4);</p>
<p>MFG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343313</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343313</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 19:36:34 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 19:55:03 GMT]]></title><description><![CDATA[<p>Für mich sieht das garnicht nach Iso-C++ aus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343325</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343325</guid><dc:creator><![CDATA[The-Kenny]]></dc:creator><pubDate>Sun, 12 Aug 2007 19:55:03 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 20:28:31 GMT]]></title><description><![CDATA[<p>Sorry, aber ich brauche dringend Hilfe.</p>
<p>Was könnte nicht stimmen, dass der Paket-Angriff meistens geblockt wird, aber eben nicht immer? Habe sogar eine Ausgabe in der Konsole für einen eventuellen Block. Also blockIp wird in jedem Fall ausgeführt, aber die Funktion tut nicht immer das, was sie sollte!</p>
<p>Also der Filter wurde gesetzt aber die IP hat fröhlich weitergesendet...</p>
<p>So sieht nun mein aktueller Code aus:</p>
<p>Main.h</p>
<pre><code class="language-cpp">#include &quot;pcap.h&quot;
#include &lt;iostream&gt;
#include &lt;windows.h&gt;
#include &lt;Fltdefs.h&gt;

typedef struct ip_address
{
	u_char byte1;
	u_char byte2;
	u_char byte3;
	u_char byte4;
} ip_address;

typedef struct ip_header
{
    u_char  ver_ihl;
    u_char  tos;
    u_short tlen;
    u_short identification;
    u_short flags_fo;
    u_char  ttl;
    u_char  proto;
    u_short crc;
    ip_address  saddr;
    ip_address  daddr;
    u_int   op_pad;
} ip_header;

typedef struct udp_header
{
    u_short sport;
    u_short dport;
    u_short len;
    u_short crc;
} udp_header;

void packetHandle(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data);

INTERFACE_HANDLE interfaceHandle;
FILTER_HANDLE filterHandle;

struct Data
{
	unsigned char byte1;
	unsigned char byte2;
	unsigned char byte3;
	unsigned char byte4;

	long second;

	void Add(unsigned char byte1, unsigned char byte2, unsigned char byte3, unsigned char byte4, long second)
	{
		this-&gt;byte1 = byte1;
		this-&gt;byte2 = byte2;
		this-&gt;byte3 = byte3;
		this-&gt;byte4 = byte4;

		this-&gt;second = second;
	}

	bool Compare(unsigned char byte1, unsigned char byte2, unsigned char byte3, unsigned char byte4)
	{
		if(this-&gt;byte1 == byte1 &amp;&amp; this-&gt;byte2 == byte2 &amp;&amp; this-&gt;byte3 == byte3 &amp;&amp; this-&gt;byte4 == byte4)
			return true;
		else
			return false;
	}
}; Data currentData;

unsigned short packetCount = 0;
</code></pre>
<p>Main.cpp</p>
<pre><code class="language-cpp">unsigned long LongToIp(const char *ip)
{
	int octets[4];

	const char *auxCad = ip;
	unsigned long localIp = 0;

	for(int i = 0; i &lt; 4; i++)
	{
		octets[i] = atoi(auxCad);

		if(octets[i] &lt; 0 || octets[i] &gt; 255)
			return 0;

		localIp |= (octets[i] &lt;&lt; (i * 8));

		auxCad = strchr(auxCad, '.');

		if(auxCad == NULL &amp;&amp; i != 3)
			return -1;

		auxCad++;
	}

	return localIp;
}

void blockIp(unsigned char ipByte1, unsigned char ipByte2, unsigned char ipByte3, unsigned char ipByte4)
{
	PF_FILTER_DESCRIPTOR filter;

	PfCreateInterface(0, PF_ACTION_FORWARD, PF_ACTION_FORWARD, FALSE, TRUE, &amp;interfaceHandle); 

	BYTE localIp[] = {192, 168, 0, 5};

	PfBindInterfaceToIPAddress(interfaceHandle, PF_IPV4, localIp);

	filter.dwFilterFlags       = FD_FLAGS_NOSYN;
	filter.dwRule              = 0;
	filter.pfatType            = PF_IPV4;
	filter.wSrcPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wSrcPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPort            = FILTER_TCPUDP_PORT_ANY;
	filter.wDstPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter.fLateBound		   = 0;
	filter.dwProtocol          = FILTER_PROTO_ANY;

	unsigned long destinationIp = LongToIp(&quot;192.168.0.5&quot;);

	filter.DstAddr = (PBYTE)&amp;destinationIp;
	filter.DstMask = (PBYTE)&amp;destinationIp;

	in_addr inAddr;
	inAddr.S_un.S_un_b.s_b1 = ipByte1;
	inAddr.S_un.S_un_b.s_b2 = ipByte2;
	inAddr.S_un.S_un_b.s_b3 = ipByte3;
	inAddr.S_un.S_un_b.s_b4 = ipByte4;

	unsigned long sourceIp = LongToIp(inet_ntoa(inAddr));

	filter.SrcAddr = (PBYTE)&amp;sourceIp;
	filter.SrcMask = (PBYTE)&amp;sourceIp;

	PfAddFiltersToInterface(interfaceHandle, 1, &amp;filter, 0, 0, &amp;filterHandle);
}

int main()
{
    pcap_if_t *devices;
    pcap_t *deviceHandle;
    char errbuf[PCAP_ERRBUF_SIZE];

    pcap_findalldevs(&amp;devices, errbuf);

	devices = devices-&gt;next;

    deviceHandle = pcap_open_live(devices-&gt;name, 65536, 1, 1000, errbuf);

    pcap_freealldevs(devices);

    pcap_loop(deviceHandle, 0, packetHandle, 0);

	PfRemoveFilterHandles(interfaceHandle, 1, &amp;filterHandle);
	PfUnBindInterface(interfaceHandle);
	PfDeleteInterface(interfaceHandle);

    return 0;
}

void packetHandle(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
    ip_header *ih = (ip_header *)(pkt_data + 14);
	u_int ip_len = (ih-&gt;ver_ihl &amp; 0xf) * 4;
	udp_header *uh = (udp_header *)((u_char*)ih + ip_len);

	if(ntohs(uh-&gt;dport) == 4664 &amp;&amp; header-&gt;len == 117)
	{
		if(!packetCount)
			currentData.Add(ih-&gt;saddr.byte1, ih-&gt;saddr.byte2, ih-&gt;saddr.byte3, ih-&gt;saddr.byte4, header-&gt;ts.tv_sec);

		if(currentData.Compare(ih-&gt;saddr.byte1, ih-&gt;saddr.byte2, ih-&gt;saddr.byte3, ih-&gt;saddr.byte4))
		{
			if(header-&gt;ts.tv_sec == currentData.second)
				++packetCount;

			if(packetCount &gt; 20)
			{
				blockIp(currentData.byte1, currentData.byte2, currentData.byte3, currentData.byte4);
				std::cout &lt;&lt; &quot;BLOCKED: &quot; &lt;&lt; (int)currentData.byte1 &lt;&lt; &quot;.&quot; &lt;&lt; (int)currentData.byte2 &lt;&lt; &quot;.&quot; &lt;&lt; (int)currentData.byte3 &lt;&lt; &quot;.&quot; &lt;&lt; (int)currentData.byte4 &lt;&lt; std::endl;
				packetCount = 0;
			}
		}
	}

	if(header-&gt;ts.tv_sec != currentData.second)
		packetCount = 0;
}
</code></pre>
<p>Also wenn eine IP mehr als 25 Pakete in der Sekunde mit der Größe 117 an port 4664 sendet, wird sie sofort geblockt. Hat wiegesagt immer funktioniert, aber eben nicht heute!</p>
<p>Was mache ich falsch? Benutze WinPCap.</p>
<p>Danke!<br />
MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343349</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343349</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 20:28:31 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 22:45:47 GMT]]></title><description><![CDATA[<p>Hab was rausgefunden. Es funktioniert beim ersten IP block schnell, aber wenn danach eine andere IP angreift, dauert es 3x solange, bis der block reagiert.</p>
<p>Was kann da falsch sein? Hab es jetzt auch so gemacht, dass eine geblockte IP sofort in eine ausnahmeliste geworfen wird und nicht mehr überprüft wird, damit nicht mehrere filter angelegt werden.</p>
<p>Ohne Erfolg. Immer ab der zweiten unterschiedlichen Ip dauert es viel länger, bis der block greift. Die blockIp Funktion wird sofort aufgerufen, aber es werden noch 3 Sekunden lang die Pakete gesendet.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343410</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343410</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 22:45:47 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 22:50:21 GMT]]></title><description><![CDATA[<p>ich muss mich korrigieren:</p>
<p>Die erste IP wird geblockt, aber sobald eine neue IP sendet, wird zwar blockIp() aufgerufen, aber sie wird nicht geblockt!</p>
<p>jetzt mehrmals getestet, woran liegt das?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343412</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343412</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 22:50:21 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 23:07:23 GMT]]></title><description><![CDATA[<p>Hab grad nochwas rausgefunden:</p>
<p>[/cpp]<br />
PfAddFiltersToInterface(interfaceHandle, 1, &amp;filter, 0, 0, &amp;filterHandle);</p>
<p>Sleep(2000);</p>
<p>PfRemoveFilterHandles(interfaceHandle, 1, &amp;filterHandle);<br />
PfUnBindInterface(interfaceHandle);<br />
PfDeleteInterface(interfaceHandle);<br />
[cpp]</p>
<p>So funktioniert es!</p>
<p>Kann es sein, dass man nicht mehrere FilterHandles/InterfaceHandles belegen darf?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343415</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343415</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 23:07:23 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Sun, 12 Aug 2007 23:49:08 GMT]]></title><description><![CDATA[<p>Ohhh jetzt weiß ich es glaube ich!</p>
<p>Kann es sein, dass man für jeden Filter auch extra</p>
<p>INTERFACE_HANDLE interfaceHandle;<br />
FILTER_HANDLE filterHandle;</p>
<p>anlegen muss? Habe die beiden nämlich global!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343423</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343423</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Sun, 12 Aug 2007 23:49:08 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Mon, 13 Aug 2007 14:33:53 GMT]]></title><description><![CDATA[<p>Wenn du für jeden ein neues Interface erstellst (was du ja tutst), dann ja.<br />
Aber bist du dir sicher, dass du das auch musst?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343753</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343753</guid><dc:creator><![CDATA[lolz]]></dc:creator><pubDate>Mon, 13 Aug 2007 14:33:53 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Mon, 13 Aug 2007 15:24:42 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile-var-mode-is-viewprofile-and-u-is-403.html" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-15.html" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-58.html" rel="nofollow">C++/CLI mit .NET</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39405.html" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343791</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343791</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Mon, 13 Aug 2007 15:24:42 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Mon, 13 Aug 2007 16:23:35 GMT]]></title><description><![CDATA[<p>Nein bin mir nicht sicher. Aber ist ja auch egal. Ich möchte es jetzt so machen, kann es aber erst in der Nacht testen. So würde das doch endlich funktionieren:</p>
<pre><code class="language-cpp">void blockIp(unsigned char ipByte1, unsigned char ipByte2, unsigned char ipByte3, unsigned char ipByte4)
{
	INTERFACE_HANDLE *interfaceHandle = new INTERFACE_HANDLE;
	FILTER_HANDLE *filterHandle = new FILTER_HANDLE;
	PF_FILTER_DESCRIPTOR *filter = new PF_FILTER_DESCRIPTOR;

	PfCreateInterface(0, PF_ACTION_FORWARD, PF_ACTION_FORWARD, FALSE, TRUE, interfaceHandle); 

	unsigned char localIp[] = {192, 168, 0, 5};

	PfBindInterfaceToIPAddress(*interfaceHandle, PF_IPV4, localIp);

	filter-&gt;dwFilterFlags       = FD_FLAGS_NOSYN;
	filter-&gt;dwRule              = 0;
	filter-&gt;pfatType            = PF_IPV4;
	filter-&gt;wSrcPort            = FILTER_TCPUDP_PORT_ANY;
	filter-&gt;wSrcPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter-&gt;wDstPort            = FILTER_TCPUDP_PORT_ANY;
	filter-&gt;wDstPortHighRange   = FILTER_TCPUDP_PORT_ANY;
	filter-&gt;fLateBound			= 0;
	filter-&gt;dwProtocol          = FILTER_PROTO_ANY;

	filter-&gt;DstAddr = localIp;
	filter-&gt;DstMask = localIp;

	in_addr inAddr;
	inAddr.S_un.S_un_b.s_b1 = ipByte1;
	inAddr.S_un.S_un_b.s_b2 = ipByte2;
	inAddr.S_un.S_un_b.s_b3 = ipByte3;
	inAddr.S_un.S_un_b.s_b4 = ipByte4;

	filter-&gt;SrcAddr = (unsigned char*)inet_ntoa(inAddr);
	filter-&gt;SrcMask = (unsigned char*)inet_ntoa(inAddr);

	PfAddFiltersToInterface(*interfaceHandle, 1, filter, 0, 0, filterHandle);
}
</code></pre>
<p>Kann da noch was vereinfacht werden? Mit dem Umwandeln und so und ist das überhaupt korrekt?</p>
<p>(Gehört das nicht in WINAPI? sorry)</p>
<p>Danke!<br />
MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343837</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343837</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Mon, 13 Aug 2007 16:23:35 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Mon, 13 Aug 2007 17:20:08 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile-var-mode-is-viewprofile-and-u-is-18363.html" rel="nofollow">Jochen Kalmbach</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-58.html" rel="nofollow">C++/CLI mit .NET</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-4.html" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39405.html" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1343860</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1343860</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Mon, 13 Aug 2007 17:20:08 GMT</pubDate></item><item><title><![CDATA[Reply to Paket-Bombadierung trotz Software-Firewall on Mon, 13 Aug 2007 23:42:59 GMT]]></title><description><![CDATA[<p>Ach, jo man darf anscheinend doch ned mehrere Interfaces erzeugen, dann geht der block nur für eine Ip.</p>
<p>Hab jetzt einmalig das Interface erzeugt und pro IP nur PF_FILTER_DESCRIPTOR.</p>
<p>Danke! Das API ist ja mal scheisse beschrieben.<br />
MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1344033</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1344033</guid><dc:creator><![CDATA[ceplusplus@loggedoff]]></dc:creator><pubDate>Mon, 13 Aug 2007 23:42:59 GMT</pubDate></item></channel></rss>