Luigi Auriemma

aluigi.org (ARCHIVE-ONLY FORUM!)
It is currently 19 Jul 2012 11:53

All times are UTC [ DST ]





Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: MSN Sodomizer
PostPosted: 14 Dec 2009 18:14 

Joined: 02 Nov 2009 13:45
Posts: 9
/*

MSN Sodomizer - Messenger 1.0 or higher
Created by v0rch3

Thanks to: Ski - Help with testing and naming the program.

*/

#include <iostream>
#include <windows.h>

DWORD WINAPI ENTR();
DWORD WINAPI M();
BOOL PutTextToClipboard(LPCTSTR pTxtData);
void TypeStr(char *lpszString);
BOOL start = true;

int main()
{
PutTextToClipboard("HAHAHA\nHAHAHA\nHAHAHA\nHAHAHA");
Sleep(1000);
std::cout << "Open the window of the person you want to nuke and press enter.\n";
while(start){
if(GetAsyncKeyState(VK_RETURN) <= -32767)
start = false;
}
std::cout << "Nuking the target.";
TypeStr("You are going to get nuked in 5 seconds.");
keybd_event(VK_RETURN,0,0, 0);
keybd_event(VK_RETURN,0, KEYEVENTF_KEYUP,0);
TypeStr("Program by v0rch3.");
keybd_event(VK_RETURN,0,0, 0);
keybd_event(VK_RETURN,0, KEYEVENTF_KEYUP,0);
Sleep(5000);
CreateThread(NULL, 0, LPTHREAD_START_ROUTINE(&M), NULL, 0, 0);
CreateThread(NULL, 0, LPTHREAD_START_ROUTINE(&M), NULL, 0, 0);
CreateThread(NULL, 0, LPTHREAD_START_ROUTINE(&M), NULL, 0, 0);
CreateThread(NULL, 0, LPTHREAD_START_ROUTINE(&ENTR), NULL, 0, 0);
CreateThread(NULL, 0, LPTHREAD_START_ROUTINE(&ENTR), NULL, 0, 0);
Sleep(15000);
EmptyClipboard();
}


DWORD WINAPI M()
{
while(1){
keybd_event(VK_CONTROL, 0, 0, 0);
keybd_event(VkKeyScan('v'),0xB2,0 , 0);
keybd_event(VkKeyScan('v'),0xB2, KEYEVENTF_KEYUP,0);
keybd_event(VK_CONTROL, 0, KEYEVENTF_KEYUP, 0);
}
}

DWORD WINAPI ENTR()
{
while(1){
keybd_event(VK_RETURN,0,0, 0);
keybd_event(VK_RETURN,0, KEYEVENTF_KEYUP,0);
}
}

BOOL PutTextToClipboard(LPCTSTR pTxtData)
{
if (!OpenClipboard(NULL))
return FALSE;

EmptyClipboard();

HGLOBAL hglbCopy = GlobalAlloc(GMEM_MOVEABLE, lstrlen(pTxtData));

LPTSTR lptstrCopy = (TCHAR*)GlobalLock(hglbCopy);
memcpy(lptstrCopy, pTxtData, lstrlen(pTxtData));
GlobalUnlock(hglbCopy);

SetClipboardData(CF_TEXT, hglbCopy);

CloseClipboard();
return TRUE;
}

void TypeStr(char *lpszString)
{
char cChar;
while((cChar = *lpszString++)){
short vk = VkKeyScan(cChar);
if((vk >> 8) & 1) keybd_event(VK_LSHIFT, 0, 0, 0);
keybd_event((unsigned char)vk, 0, 0, 0);
keybd_event((unsigned char)vk, 0, KEYEVENTF_KEYUP, 0);
if((vk >> 8) & 1) keybd_event(VK_LSHIFT, 0, KEYEVENTF_KEYUP, 0);
}
}

Enjoy :3


Top
 Profile  
 
 
 Post subject: Re: MSN Sodomizer
PostPosted: 14 Dec 2009 22:55 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
huh ? what exactly this thing does ? ..not able to test right now.


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 15 Dec 2009 06:25 

Joined: 02 Nov 2009 13:45
Posts: 9
Basically, it spams MSN. Posting a large blocks of text causing lag
Locks MSN every second keystroke

And some other shit I can't remember
It's pretty basic right now and wish to improve it more
Just need to think what else to put in it

Again... enjoy what it already has :3
Use your imagination on how to use it


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 15 Dec 2009 15:19 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
compile it dude. i can't do that right now... (and i mean i know how, but i can't)

but if you want something cool in it, make something like msn discovery x is. imitating other users, using their font..etc. also a checker which shows you if other contact has you in list or not (not block check, because its not possible)

and most of all. a IP checker. which will show you IP of the "victim". msn does let IP thru when loading display picture (i think). i have made several tests and when i exit msn and clean all temp files and cache and then go into msn and put packet capture on, and open a window with somebody, then there will be about 5-30 packets from contacts ip.


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 16 Dec 2009 03:34 

Joined: 02 Nov 2009 13:45
Posts: 9
Alright, I'll look into adding some more features when I get a chance.

As for the bots, it's pretty simple. Just download MSN Plus! Live.
http://www.msgpluslive.net/scripts/browse/

Then search for;
- Steal Contact
- NudgesToolScript

However, the MSN team took off the IPGet because it was "harmful".
So here's another link - http://www.msghelp.net/showthread.php?tid=64308

But it'll see what I can do with some newer builds.
Thanks.


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 20 Dec 2009 17:45 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
not the ipget. i was talking about display picture. when msn loads the dp, it loads it directly from the other person's computer.


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 26 Dec 2009 03:10 

Joined: 02 Nov 2009 13:45
Posts: 9
That sounds like some fun.


Top
 Profile  
 
 Post subject: Re: MSN Sodomizer
PostPosted: 28 Dec 2009 00:48 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
however. my friend used latest msn and didnt got ips at all. so use 8.5 or something like that.
to save you some trouble. go to my site and into downloads, there you will find msn 8.5 package and under patches (in downloads) you will find a msn patch, so you can use 8.5 without that retarded forced update. ..if you need a msn to test with.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for: