
September 13th, 2008 by

admin
I’ve been getting quite a few request lately asking if I’m going to release another version of VcGuard. The truth is I feel VcGuard does what it was created to do and I have no plans to update it anytime soon. If anyone has anything they would like to see in VcGuard or find any bugs that need attention I’d be more then happy to look into it.
I also want to point out the source code to VcGuard was released. This gives anyone with knowledge of C++ the ability to continue the project where I left off.
shinkaiho@hotmail.com
Posted in vcguard, vcguard beta |
No Comments »

August 10th, 2008 by

admin
I figured id take a minute to post on my website I never have time for. I’ve been working on a small project for Yahoo! Messenger Archives its nothing great at the moment but I plan on doing a lot with it when I get the time. Right now you can create an account and upload archives that will be stored online so you can access them from anywhere or share them with friends (they have to be registered members to view). If anyone is interested in testing you can go here any feedback is appreciated.
Adding somewhere down the road:
*smileys
*font colors and styles
*back and forward button for huge archives
*search
*ability to make archives private or public
*ability to upload multiple files
*ability to delete archives (lol I’m so lazy WHY ISNT THIS ALREADY ADDED)
Posted in news, yahoo |
No Comments »

June 9th, 2008 by

admin
*IMPORTANT*
make sure you have the latest version of yahoo! messenger 9.0.0.1389 or the plugin wont work.
I fixed a few bugs I found today listed below.
*status menu was not being init.
*status message was not clearning after closing winamp.
you can download the update here
Installing:
put ‘gen_y9winamp.dll’ into your winamp plugin directory ‘C:\program files\winamp\plugins’ then close and reopen winamp :).
report bugs here
Posted in news |
No Comments »

June 1st, 2008 by

admin
The new version of Yahoo! Messenger killed my old Winamp plugin. I rewrote it and it should work for the new Messenger (if you still have the older messenger you can get the old plugin from the “stuff i wrote” section). Please email me any problems you have and I’ll fix them asap. Finally you can download the new plugin here.
report bugs here
Posted in news |
No Comments »

December 2nd, 2007 by

admin
———————————————-
yahoo messenger archive format
by: shinkaiho 8/06/2007 (no confrence support)
used: hex workshop v3.11 & archive logs
———————————————-
dword - timestamp
word - message or confrence (6 message)
word - padding
word - you or friend (0 = you 1 = friend)
word - padding
word - size of message
word padding
message - use ^ (xor) to decrypt the message… the key is the owner of the archives username
dword padding
repeat for each message
————-
c++ structure
————-
struct message
{
DWORD timestamp;
WORD type;
WORD pad1;
WORD who; //0 you 1 friend
WORD pad2;
WORD size;
WORD pad3;
};
———————————-
junk used to figure the format out
———————————-
04 5B 11 1E 43 1C 1C 17
f u c k
Bruce (8/6/2007 11:41:06 AM): fuck you
b.ruces
b ^ 4
r ^ 5b
f
1241B746060000000000000008000000045B111E431C1C1700000000
Bruce (8/6/2007 11:41:06 AM): fuck you
Bruce (8/6/2007 11:41:06 AM): sir
Bruce (8/6/2007 11:41:06 AM): fuck you
Bruce (8/6/2007 11:41:07 AM): k?
SpliT owns (8/6/2007 11:42:07 AM): fuck you fagot
SpliT owns (8/6/2007 11:42:08 AM): u deserted me
SpliT owns (8/6/2007 11:42:12 AM): now i hope u go to hell
SpliT owns (8/6/2007 11:42:13 AM): syler!
Bruce (8/6/2007 11:42:20 AM): :
Bruce (8/6/2007 11:42:22 AM): thats gay sir
Bruce (8/6/2007 11:41:45 AM): pwn noobs yo?
T. J. (Jazza) (8/6/2007 11:41:53 AM): werd nig
Bruce (8/6/2007 11:42:01 AM): hahah ill cutem up and talk about it in the morning
T. J. (Jazza) (8/6/2007 11:42:42 AM):
Posted in yahoo |
1 Comment »

November 30th, 2007 by

admin
-------------------------------------------
by: bruce'shinkaiho'wiggins
date: 11-29-07
resources:
*yahoo! messenger protocol
commview 5.0 & yahoo! messenger 9.0b
*rtp/rtcp information
http://www.faqs.org/rfcs/rfc1889.html
*auth information
http://ourchat.org/forums/index.php?s=7fe49baa04030c895ebfad6506ac1d4d&showtopic=1783&pid=7859&st=0entry7859
*IF YOU FIND SOMETHING THAT ISNT ACCURATE JUST EMAIL ME here*
——————————————-
YMSG (yahoo! messenger protocol) TCP 5050
——————————————-
59 4D 53 47 - name
00 10 - version
00 00 - unk1
00 13 - payload size
00 57 - opcode
00 00 00 00 - unk2
00 00 00 00 - session id
payload
*payload delimited by C0 80*
——————————————-
YMSG auth process
——————————————-
login.yahoo.com:443
*chal is returned from ymsg connection
GET /config/pwtoken_get?src=ymsgr&ts=1195577375&login=user&passwd=pass&chal=chal HTTP/1.1
*token is the ymsgr value returned from the above request
GET /config/pwtoken_login?src=ymsgr&ts=1195577376&token=token HTTP/1.1
*crumb is returned from the above request along with ymsg cookie
307 field is crumb + chal md5ed (16 bytes dont convert to hex) then base64ed
————————————————————————————–
REAL TIME CONTROL PROTOCOL (used to send information about voice connection) TCP 5001
————————————————————————————–
———————–
4 bytes before header
———————–
00 AC - packet size
00 00 - unk1
———————–
81 [information read from bits]
10 - 2 - version
0 - 0 - padding
00001 -1 - reception report count
C9 - opcode
00 30 - length of rtcp header
00 00 00 00 - ssrc
00 00 00 00 - ntp timestamp
00 00 00 00 - rtp timestamp
00 00 00 00 - senders packet count
00 00 00 00 - senders octet count
00 00 00 00 - ssrc_n
00 - fraction lost
00 00 00 - cumulative number of packets lost
00 00 00 00 - extended highest sequence number received
00 00 00 00 - interarrival jitter
00 00 00 00 - last SR timestamp
00 00 00 00 - delay since last SR
—————————————
RTCP Application-defined RTCP packet
all other rtcp packet types can be found at http://www.faqs.org/rfcs/rfc1889.html
—————————————
80 [information read from bits]
10 - 2 - version
0 - 0 -
00000 - subtype
CC - opcode
00 78 - length of header + payload
00 00 00 00 - ssrc/csrc
43 41 21 59 - name
———————————————————————————–
CA!Y (Application-defined RTCP packet 0xCC)
———————————————————————————–
00 01 - opcode
00 00 00 00 - unk1
x - diffrent length/data depending on type of ca!y packet
—————————————————————
REAL TIME PROTOCOL (used to send/recv voice data) UDP 5000-5010
—————————————————————
80 [information read from bits]
10 - 2 - version
0 - 0 - padding
0 - 0 - extension
0000 - 0 - csrc count
A2 [information read from bits]
1 - 1 - marker
0100010 - 22 - payload type
00 82 - sequence number
00 01 5C C0 - timestamp
39 C8 58 CB - ssrc
00 02 57 43 - csrc
payload
———————————————–
Posted in yahoo |
No Comments »

October 22nd, 2007 by

admin
if anyone is interested i just released a new service that you can use to sell your software and help prevent piracy of your programs check it out here if you find any bugs or have any suggestions please contact me here
Posted in news |
No Comments »

September 15th, 2007 by

admin
if any myspace freaks visit my site check out this new site ive been working on ImageFairie oh and google index it bastard
Posted in news |
1 Comment »

July 8th, 2007 by

admin
you can get the source to vcguard here some things are unfinished and not all the code has been cleaned up…if anyone updates the code or finds bugs or just fixes something…please email me here
to compile use borland c++ builder 2006
thanks to everyone who has supported vcguard
Posted in vcguard beta |
2 Comments »

June 2nd, 2007 by

admin
sorry for the lack of updates…ive just been taking a short break im not gonna give a date for the next update… but it could be soon so keep checking back
thanks to everyone who supports vcguard
Posted in news |
12 Comments »