![]() |
![]() |
![]() |
![]() |
![]() |
||||||||||
|
||||||||||||||
![]() |
#381
|
|||
|
|||
![]() Hi,
I got stuck up here for the crackme15: num4 = num4 Xor CLng((buffer(num2) << 8)) VS says "Operator << not defined for types Char or int" and i cant go after this. Whats the actual code? |
#382
|
|||
|
|||
![]() Quote:
Any news about this? |
#383
|
|||
|
|||
![]() I'm in the process of cracking a very well known (and very good, indeed) .NET licensing system. For cracking I mean generate licenses for the component itself (but, if valid, this method could be used in other applications protected by this component as well). I'm not aware of any crack currently available on the net for my target. The way I want to crack it is somewhat unconventional IMHO; unfortunately I got stuck (mostly because I'm a newbie
![]() Thank you very much. |
#384
|
|||
|
|||
![]() Quote:
your crackme says "Sound System Could Not Be Initialized" and then abruptly exits on WinVista ![]() EDIT Kurapica, it seems all your recent programs do this ![]() |
#385
|
|||
|
|||
![]() @Rendari :
Although the assembly is compiled to target 0x86 CPU and, I also use a native DLL <FMOD.dll> to play sound !! On startup this is the Entrypoint CODE: Code:
Public Sub Main() ''========================================================= ''[3] Extract FMOD.dll and copy it to System32 folder ''========================================================= Try 'Get manifest resource Dim RS As IO.Stream = Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream("CrackME.fmod.dll") 'Get system32 Dir location Dim Sys32 As String = Environment.GetFolderPath(Environment.SpecialFolder.System) 'Create File stream Dim FL As New IO.FileStream(Sys32 + "\fmod.dll", IO.FileMode.Create) 'Copy Stream to array Dim Bytes(RS.Length - 1) As Byte RS.Read(Bytes, 0, RS.Length) RS.Close() 'Copy Array to file FL.Write(Bytes, 0, Bytes.Length) FL.Close() Erase Bytes Catch ex As Exception MsgBox("Couldn't initialize Sound system !", MsgBoxStyle.Critical, "Aborting...") End End Try '========================================================= '[3] Start application '========================================================= FrmMain = New Form_Main Application.Run(FrmMain) End Sub
__________________
Life can only be understood backwards but It must be read forwards. |
#386
|
|||
|
|||
![]() Something to make clear ;
If you have Application [A] Where [A] needs Library [b] to work. If [A] and [b] are strong named then If you remove strong name signature from [b] and then changed any byte in [b] then [A] can't use [b] anymore unless you patch the reference of [b] in [A] Assembly references, Patching a reference can be done with UFO's SmartKill Patcher quickly and then everything will work properly. ======================================== Regarding the Source code of My "MovieScroller.Dll" please I can't share it, don't bitch me !! But I can post the latest build of this library here so that it can be used in your demos. using the control is easy, just drop one in your form and then use this line to add moving text or images. http://rapidshare.com/files/99284462...oller.dll.html Code:
Moviescroller1.Titles.AddTextTitle Moviescroller1.Titles.AddGraphicalTitle Thanks
__________________
Life can only be understood backwards but It must be read forwards. |
#387
|
|||
|
|||
![]() Has anyone checked out the Remotesoft .NET protector? I downloaded the scribble demo from the website, looks amazingly simple to crack. All they are doing is running an NGEN'd exe in their own emulated .NET framework. I had no problem patching the exe in memory with Olly to inject my own code and messageboxes. I also wrote a loader so that those changes would be present every time I ran the app, just like in a crack
![]() |
#388
|
|||
|
|||
![]() @Kurapica : You can use MciSendString to play media files. Attach you media file in your resources then copy them to anywhere when program is started, play and delete them when applications is closed. With this way you don't have problem with Vista anymore. And don't try to copy any file to C:\. Because of UAC, the application can not do it.
![]()
__________________
My site: http://rongchaua.net |
#389
|
|||
|
|||
![]() Quote:
Why not write a nice tutor? |
#390
|
|||
|
|||
![]() Quote:
![]() What do you want me to do, just change the About messagebox to be displayed by my own injected code... or something more? |