Forum Replies Created
-
AuthorPosts
-
August 12, 2007 at 11:41 pm #176818nice_fox102Member
@Chike wrote:
Actualy last I checked the crack I didn’t even get the popup that say I have to register.
I double click the room and nothing happened.you are in restricted country (ppls from these countries should upgrade to access to paltalk chat rooms) when you double click on room normaly a popup window should open and ask you to upgrade your nickname, but because in paltalk patches popups are disabled you cant see that. it’s same about paltalk today popup, you cant see paltalk today in patched paltalk. anyway just use proxy program or upgrade your nick.
June 10, 2007 at 11:38 pm #190863nice_fox102Memberya it should have an easier way. in which environment we need to disable HTML???
June 9, 2007 at 10:47 pm #190865nice_fox102Memberthese aren’t encrypted data. these are ascii character codes of string. goto to find the text.
3C = <
6F = o
62 = b
6A = j
65 = e
63 = c
.
.
.
=
<object …May 9, 2007 at 10:44 am #191218nice_fox102Memberfor decompiling C++ applications you may want to try boomerang. but it has too many bugs(freez and crash in about 98% of cases).
May 9, 2007 at 10:40 am #191219nice_fox102Member@method wrote:
I am looking for some sofware that gives result. I installed a few sofware from google and non of them worked!!
do you have any knowledge about assembly language? if yes then you have the ability to reversing exe or dll or… applications. as ghost said some programs can be fully decompiled but about most of them you need to disassemble it for reversing purpose.
May 8, 2007 at 6:41 pm #190874nice_fox102Member@method wrote:
Hi all. could any one tell me. how to know an .exe application is written in what programing lunguge?
http://www.secretashell.com/codomain/peid/files/PEiD-0.94-20060510.zip
It can detect more than 470 PE signatures, including packers, protectors and more…
April 5, 2007 at 9:07 pm #185062nice_fox102Memberand also you can use one of the paltalk paches to run mutiple instances of it.
April 5, 2007 at 12:53 pm #182363nice_fox102Member@Jodie_Uk wrote:
Im using avast anti virus….my computer is fine..luckly
i caught it in time..just wanted to warn others, thats all 😉i think we are talking with second billgates. a great man who can detect a deep inside virus by broking 2 compressed file to 5 section and using email. and also creating new topic for a reply in his own old topic. 8)
April 3, 2007 at 9:17 pm #187977nice_fox102Member@deepjunior wrote:
Thank you autopilot, its ok. But, Asc(mid(xString,i,1)) for VB6.
Asc(Mid$(xString, i, 1))
(maybe)March 27, 2007 at 3:52 am #176996nice_fox102Member@valletta wrote:
when i try to open it and instal it its tell me something wrong with the clock
what is it? 😀
do you mean paltalk color???March 23, 2007 at 8:30 am #176999nice_fox102Member@Admin wrote:
lol holy shit this works perfect heheheh, man can I put this one on the downlaod section too this one kicks asz lol 🙂 times 20
thanx loco. put it there. 😀
March 22, 2007 at 11:16 pm #191241nice_fox102Memberusefull. thanks a lot code mastr.
March 22, 2007 at 10:52 pm #185247nice_fox102Memberdone.
loooooooool 😀
here is small delphi source code for decrypting these passwords. this can be used in our own client for paltalk.thanx Mike. your old post help me a lot in finding the algorithm.
March 21, 2007 at 11:18 pm #185249nice_fox102Memberloooooooooool
interesting. just some hours ago i was trying to decrypt registry passwords and post a question in the pt program request forum to see if such program already exist. and now i found this hot topic here.
i didnt completly analyze this algorithm yet so for now I can say the first step::
paltalk get the serial number of drive wich installed on it and then combine it with username for example if nick is restive543 and serial number of drive is 013B830C it make this “r0e1s3tBi8v3e05C43” then strcat this to itself twice and this is the result
“r0e1s3tBi8v3e05C43r0e1s3tBi8v3e05C43r0e1s3tBi8v3e05C43”ths string and each byte of password and a random number and a result from _time function used to make 4 digit for each byte of password
March 14, 2007 at 11:43 am #191484nice_fox102MemberUse Indy components installed with Delphi. It contains SMTP component that made this job as easiest way.
procedure SendSimpleMail;
var
Msg: TIdMessage;
DestAddr: TIdEmailAddressItem;
begin
Msg := TIdMessage.Create(Self);
Msg.From.Text := ‘restive98’;
Msg.From.Address := ‘info@programminghorizon.com‘;
Msg.Subject := ‘Test’;DestAddr := Msg.Recipients.Add;
DestAddr.Text := ‘restive98’;
DestAddr.Address := ‘nice_fox102@yahoo.com‘;
Msg.Body.Add(‘This is simple test mail.’);IdSMTP1.Host := ‘mail.programminghorizon.com’;
IdSMTP1.Port := 25;
IdSMTP1.AuthenticationType := atLogin;
IdSMTP1.Username := ‘info@ProgrammingHorizon.com‘;
IdSMTP1.Password := ‘*********’;
IdSMTP1.Connect;
IdSMTP1.Authenticate;
IdSMTP1.Send(Msg);
IdSMTP1.Disconnect;
end; -
AuthorPosts