Fanatic Live: Logging Enabling - Fanatic Live

Jump to content

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Logging Enabling Rate Topic: -----

#1 User is offline   icedion

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 12-March 04

Post icon  Posted 12 March 2004 - 12:28 AM

I've been trying to enable logging on other usernames for a while now. I know where the registry values are supposed to be stored, but it's a passport unique string. I was wondering if anyone knew how they generated it.

the location is

[HKEY_CURRENT_USER] /Software/Microsoft/MSNMessenger/PerPassportSettings/<passport id>

The value's name is MessageLoggingEnabled i believe.

Thanks in advance for any help :blink:
0

#2 User is offline   icedion

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 12-March 04

Posted 12 March 2004 - 12:43 AM

I just found a post that was the same as this. My bad.

Could it be a wimpy XoR encryption? I wrote a decrypter for the Y! Messenger Message archives, and that's what they used - username was the key.
0

#3 User is offline   Daniel

  • Live™ n00b
  • Icon
  • Group: Admins
  • Posts: 4,598
  • Joined: 01-February 02
  • Location:New Zealand

Posted 12 March 2004 - 12:49 AM

CryptUnprotectData should do it... But ive just reinstalled Windows and it doesnt want to work anymore, even stuff i encrypted myself.
0

#4 User is offline   icedion

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 12-March 04

Posted 12 March 2004 - 12:59 AM

CryptUnprotectData ? where's that routine located
0

#5 User is offline   Daniel

  • Live™ n00b
  • Icon
  • Group: Admins
  • Posts: 4,598
  • Joined: 01-February 02
  • Location:New Zealand

Posted 12 March 2004 - 01:20 AM

Its in crypt32.dll. But anyway, Ive got it working now, its just the signin name and null byte encryped, ill put together an example.
0

#6 User is offline   Daniel

  • Live™ n00b
  • Icon
  • Group: Admins
  • Posts: 4,598
  • Joined: 01-February 02
  • Location:New Zealand

Posted 12 March 2004 - 02:20 AM

Well actually the bit I got working was decrypting the current value. When I write my own value, Messenger doesnt seem to like and had the logging option turned off... Ill need to do some more testing.
0

#7 User is offline   icedion

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 12-March 04

Posted 12 March 2004 - 02:49 AM

cool. thanks for the help ;)
0

#8 User is offline   Daniel

  • Live™ n00b
  • Icon
  • Group: Admins
  • Posts: 4,598
  • Joined: 01-February 02
  • Location:New Zealand

Posted 12 March 2004 - 02:10 PM

aand here it is

Attached File(s)


0

#9 User is offline   icedion

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 12-March 04

Posted 12 March 2004 - 02:51 PM

cool. it works.

i've got one more question though - you have to have the e-mail address to it. Is there any way to get their e-mail address from their passport ID (in Visual Basic 6)
0

#10 User is offline   Migs

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 14-August 04

Posted 14 August 2004 - 10:49 PM

it doesn't work :'(
execution error 9... something is out of range

the error is in StdEncrypt function at the line:
udtDataIn.pbData = VarPtr(abytFileData(0))
can you help me??
0

#11 User is offline   Doggie

  • I'm Watching You -_-'
  • Icon
  • Group: Admins
  • Posts: 5,334
  • Joined: 04-February 02
  • Gender:Male
  • Location:Australia
  • Interests:Things that are interesting?

Posted 15 August 2004 - 02:11 AM

well double posting doesnt help.. please be patient
0

#12 User is offline   Migs

  • I'm getting there
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 14-August 04

Posted 15 August 2004 - 09:50 PM

daniel, can you help me?

Actually, what I'd like to get is all the hexa code in the MessageLoggingEnabled key.

I d'like to know how it is generated. And why this code is different each time I enable message logging in msn.

I didn't find anything on the web about it...

In fact the program that I would dream to is: I type my msn address, it gives me the hexa code which is corresponding.

My purpose is to be able to enable message logging without going on msn options.

Thanx a lot for any help :)

PS: and why your program doesn't work with me???
0

#13 User is offline   The_Huuf

  • I'm back in the 80's!
  • PipPipPipPip
  • Group: Members
  • Posts: 81
  • Joined: 15-July 03

Posted 16 August 2004 - 05:47 AM

change

   'And this bit gets it (not required at all for setting it, just for testing)
    sVal = Mid$(StrConv(BinaryValue(HKEY_CURRENT_USER, "Software\Microsoft\MSNMessenger\PerPassportSettings\340008374", "MessageLoggingEnabled"), vbUnicode), 3)


to

   'And this bit gets it (not required at all for setting it, just for testing)
    sVal = Mid$(StrConv(BinaryValue(HKEY_CURRENT_USER, "Software\Microsoft\MSNMessenger\PerPassportSettings\" & getUserId(sUser), "MessageLoggingEnabled"), vbUnicode), 3)


But if you just tought logical you would have figured it out yourself
0

#14 User is offline   Titanus_PT

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 09-July 05

Posted 09 July 2005 - 01:08 PM

I have downloaded the zip file. How can I use it to generate the hexadecimal code?

My purpose is to be able to enable message logging without going on msn options.

Thanx a lot for any help :)
0

#15 User is offline   duvanel

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 09-July 05

Posted 09 July 2005 - 10:19 PM

Titanus_PT, on Jul 9 2005, 11:08 AM, said:

I have downloaded the zip file. How can I use it to generate the hexadecimal code?

My purpose is to be able to enable message logging without going on msn options.

Thanx a lot for any help  :)
View Post




download MSN Messenger 7Log

Enableding and Converter XML to TXT


http://www.MSN Messenger 7log.cjb.net
http://www.ddmcsoftwares.com
0

#16 User is offline   steven.qu

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 16-November 05

Posted 16 November 2005 - 07:09 AM

this problem seems it is still exsist? who can help me to generate the hex data? thanks in advance!
0

#17 User is offline   hacktivist

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 30-November 05

Posted 30 November 2005 - 04:08 PM

If you send me the email address I'll run it through the vb script and send the .reg file to you (I'll send it as .txt so you can check what it does - when you've checked it, change it to .reg and run it).
0

#18 User is offline   mannn

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 27-March 06

Posted 29 March 2006 - 03:37 PM

View Postduvanel, on Jul 9 2005, 10:19 PM, said:

download MSN Messenger 7Log

Enableding and Converter XML to TXT


http://www.MSN Messenger 7log.cjb.net
http://www.ddmcsoftwares.com



all of these links are dead.. i've searched all the web and couldn't find anything..

PLEASE! maybe you could upload it somewhere. I really need it.

Thank you.
0

#19 User is offline   lefaster

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 22-April 06

Posted 22 April 2006 - 08:11 AM

Hello is someone can send my the exe resulting of MessageLoggingEnabled.zip to ftpstorage@free.fr :)
Because i dont use vb i try to convert source into delphi but i am not able to do it. :unsure:
If i can generate key with the exe to activate logging with .reg later its enough for my use :angel:
Thank you by advance :D
0

#20 User is offline   Daniel Tôrres

  • One post hero!
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 28-January 07

Posted 13 March 2007 - 01:34 PM

View PostDaniel, on Mar 12 2004, 10:10 AM, said:

aand here it is

Dear Daniel,

The MessageLoggingEnabled.zip VB project does not function with Windows Live Messenger 8, the key MessageLoggingEnabled in the register file not is equal at the MSN Messenger 7.5 key.

What do it?
0

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users