<?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[net send absender]]></title><description><![CDATA[<p>Hi. Ich wollt mir son kleines netsend tool coden, mit dem man u.a. auch den absender faken kann. Hab ma bissl in der forensuche rumgeguckt und das gefunden:</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=66056&amp;highlight=net+send+absender" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=66056&amp;highlight=net+send+absender</a></p>
<p>hab das probiert folgendermaßen hinzukriegen:</p>
<pre><code>char absender[] = &quot;lala&quot;;
char empfaenga[] = &quot;jghj&quot;;
char text[] = &quot;test lala lolo&quot;;

int WINAPI WinMain(HINSTANCE, HINSTANCE, PSTR, int) {
    char *point;
    char *Message;
    DWORD dwBytesWritten;

    Message = (char *)malloc(sizeof(absender) + sizeof(empfaenga) + sizeof(text));

    strcpy(Message, absender);
    Message[strlen(absender)] = '\0';
    point = Message + sizeof(absender);

    strcpy(point, empfaenga);
    point[strlen(empfaenga)] = '\0';
    point = point + sizeof(empfaenga);

    strcpy(point, text);
    point[strlen(text)] = '\0';

    HANDLE hFile = CreateFile(&quot;\\\\jghj\\mailslot\\messngr&quot;, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
    if(!hFile) {
        MessageBox(NULL, &quot;m00!&quot;, &quot;lala&quot;, MB_OK);
        return -1;
    }
    if(!WriteFile(hFile, Message, sizeof(Message), &amp;dwBytesWritten, NULL)) {
        MessageBox(NULL, &quot;m00!2&quot;, &quot;lala&quot;, MB_OK);
        return -1;
    }

    CloseHandle(hFile);
    free(Message);

    return 0;
}
</code></pre>
<p>passieren tut einfach ganix. vllt wisst ihr ja weiter</p>
<p>mfg jghj</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/85639/net-send-absender</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 02:39:22 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/85639.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Sep 2004 11:04:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to net send absender on Sat, 11 Sep 2004 11:04:44 GMT]]></title><description><![CDATA[<p>Hi. Ich wollt mir son kleines netsend tool coden, mit dem man u.a. auch den absender faken kann. Hab ma bissl in der forensuche rumgeguckt und das gefunden:</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=66056&amp;highlight=net+send+absender" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=66056&amp;highlight=net+send+absender</a></p>
<p>hab das probiert folgendermaßen hinzukriegen:</p>
<pre><code>char absender[] = &quot;lala&quot;;
char empfaenga[] = &quot;jghj&quot;;
char text[] = &quot;test lala lolo&quot;;

int WINAPI WinMain(HINSTANCE, HINSTANCE, PSTR, int) {
    char *point;
    char *Message;
    DWORD dwBytesWritten;

    Message = (char *)malloc(sizeof(absender) + sizeof(empfaenga) + sizeof(text));

    strcpy(Message, absender);
    Message[strlen(absender)] = '\0';
    point = Message + sizeof(absender);

    strcpy(point, empfaenga);
    point[strlen(empfaenga)] = '\0';
    point = point + sizeof(empfaenga);

    strcpy(point, text);
    point[strlen(text)] = '\0';

    HANDLE hFile = CreateFile(&quot;\\\\jghj\\mailslot\\messngr&quot;, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
    if(!hFile) {
        MessageBox(NULL, &quot;m00!&quot;, &quot;lala&quot;, MB_OK);
        return -1;
    }
    if(!WriteFile(hFile, Message, sizeof(Message), &amp;dwBytesWritten, NULL)) {
        MessageBox(NULL, &quot;m00!2&quot;, &quot;lala&quot;, MB_OK);
        return -1;
    }

    CloseHandle(hFile);
    free(Message);

    return 0;
}
</code></pre>
<p>passieren tut einfach ganix. vllt wisst ihr ja weiter</p>
<p>mfg jghj</p>
]]></description><link>https://www.c-plusplus.net/forum/post/604466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/604466</guid><dc:creator><![CDATA[jghj]]></dc:creator><pubDate>Sat, 11 Sep 2004 11:04:44 GMT</pubDate></item><item><title><![CDATA[Reply to net send absender on Mon, 13 Sep 2004 06:29:04 GMT]]></title><description><![CDATA[<p>Mhm, achte mal auf Groß-/Kleinschreibung bei deinem Pfad. Ansonsten hab ich auf die schnelle schon Sources gefunden, guckst du hier:<br />
<a href="http://www.codeproject.com/internet/fakesend.asp" rel="nofollow">http://www.codeproject.com/internet/fakesend.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/605639</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/605639</guid><dc:creator><![CDATA[HAR]]></dc:creator><pubDate>Mon, 13 Sep 2004 06:29:04 GMT</pubDate></item></channel></rss>