Exetools

Exetools (https://forum.exetools.com/index.php)
-   General Discussion (https://forum.exetools.com/forumdisplay.php?f=2)
-   -   Hasp SRM (https://forum.exetools.com/showthread.php?t=11714)

dave_omirora 07-09-2008 05:15

Hasp SRM
 
Any Body Know How to Monitor the SRM Emulator? Because (HaspLoger.exe) and (Toro Monitor 3.2) is not support it?

dave_omirora 10-15-2008 22:17

hi
 
Quote:

Originally Posted by dave_omirora (Post 60281)
Any Body Know How to Monitor the SRM Emulator? Because (HaspLoger.exe) and (Toro Monitor 3.2) is not support it?

Here is the download link for monitor the Hasp SRM Dongle with (Usb Tracer 2.10), and Every One use it, this is good tools for (Hasp SRM, Sentinel SHK, Marx II Crypto and Smart Card), This Monitor of Job Is 100% perfect, I test all.

http://rapidshare.com/files/154258182/Hasp_SRM_USB_Monitor.rar.html

smczx 11-09-2008 20:04

Thank you!!!

dave_omirora 09-25-2010 16:10

How To make Hasp SRM USBTrace Log Decryptor?
 
Any one know how to use the algo of hasp4 emulator resouces and how to make usbtrace decryptor. Please give me some tips.

Git 09-25-2010 20:20

For usbtrace decryptor look at the Vusb Hasp emulator source. You will see the Request and Response structs. From the HaspEmulate() function you will see when the data is encrypted and you will also see the Cipher() function used for en/decryption. The first byte of the Request, majorFunc, is always in plain text.

Git

dave_omirora 09-26-2010 09:01

Hasp SRM USBTrace Decryptor
 
Thansk Git for you kind information about usbtrace log decryptor. I need your more help, I contact you.

xpman 07-30-2011 15:04

HASP SRM Dumper 1.5 released
http://lostdongle.com/bin/HaspSrmDumper1.5.rar

It should be helpful.

kjms 07-30-2011 15:35

xpman are you too late.....it released on 10-may-2011

yogi_saw 07-30-2011 20:56

I heard toro publiced new srm and shk monitor but could not locate it...
It seems Toros public tools r still private for us

kjms 07-31-2011 00:10

TORO Sentinel Emulator v3.81
http://www.multiupload.com/HV9N3X4TYI

copyleft 07-31-2011 10:32

Needs activation,...

yogi_saw 08-01-2011 01:22

Does it support shk or sdhk?

yogi_saw 08-02-2011 01:57

Seems like superpro ultrapro emulator..
@copyleft no license required only the dump in format *.sentinel
but coversion to this format is still secreat

copyleft 08-02-2011 10:05

No public Solution,... so Useless tool anyway

geophylika 08-24-2011 03:31

how much for make srm dongle emul?

dave_omirora 08-28-2011 04:43

Hasp SRM
 
If you have dongle then here is many hints availble for unpacked the hasp SRM Protection.

besoeso 09-11-2011 18:33

1 Attachment(s)
I will be good a monitor can to do this.

Attachment 5929

gokilaravee 09-12-2011 17:54

this looks decrypted usbtrace log..Is this based on hasp4 en/decrypt(cipher) function?

orfei 09-13-2011 05:52

IMO this is more like dll function hooking/monitoring/logging.

hp3 10-05-2011 00:28

hi
 
i have a dump file and log file for tems 10

can help me to emul it
thanks

kjms 10-05-2011 01:13

http://www.unpack.cn/thread-68333-1-1.html

HASP HL Envelope
Recent study of HASP HL Envelope in the shelling, the search to a nice HASP HL Envelope IAT Fixer, has been successfully used to repair my program IAT. Original author of s0cpy.
lostdongle in the online issue of the shelling of a hasp srm video, which with the hasp srm Envelope iat fixer and the same, just to "find prtc_sec, # FFFF82D18BE55DC3 #", was revised to: "find prtc_sec, # 66C1E7?? 5E5B8BE566C1E6?? 5DC3 # ", the need to hasp srm Envelope version to modify. This code corresponds to the position of a retn (. Protect section), where there is a need to restore esp in the API function's address.

/*
/////////////////////////////////////////////////////////////////////////////////
HASP_HL Envelop 1.2x/1.3x import resolver script v0.1a
Author: s0cpy
Email : [email protected]
OS : WinXP SP2, Ollydbg 1.1, ODbgScript 1.65.4
Date : 2008-01-12
Action: Fix IAT, but not fix emulated functions.
Config: Ignore all exceptions, start from OEP.
Some emulated functions need to be resolved manually:
GetCommandLineA
GetProcAddress
GetCurrentProcess
GetStartupInfoA
GetCurrentProcessId
GetCurrentThreadId
/////////////////////////////////////////////////////////////////////////////////
*/

var prtc_sec
var iat_cell
var ss
var es
var gtc
var endp
var iatstart
var iatend
var gtc_c
var sysmod

gpa "GetTickCount", "kernel32.dll"
mov gtc, $RESULT
ask "Enter start code section address"
cmp $RESULT, 0
je @halt
mov ss, $RESULT
mov es, $RESULT
ask "Enter start address of IAT"
cmp $RESULT, 0
je @halt
mov iatstart, $RESULT
ask "Enter end address of IAT"
cmp $RESULT, 0
je @halt
mov iatend, $RESULT
ask "Enter start address of `.protect` section"
cmp $RESULT, 0
je @halt
mov prtc_sec, $RESULT
ask "Enter start address of system modules memory"
cmp $RESULT, 0
je @halt
mov sysmod, $RESULT

@end_point:
find prtc_sec, #66C1E7??5E5B8BE566C1E6??5DC3#
mov endp, $RESULT
add endp, 4
bphws endp, "x"

@search:
cmp iat_cell, iatend
je @halt
mov iat_cell, iatstart
cmp [iatstart], 00000000
add iatstart, 4
je @search
cmp [iat_cell], sysmod
ja @search

@scan:
mov eip, [iat_cell]
jmp @run

@count:
inc gtc_c
cmp gtc_c, 2
je @fix

@run:
run
sti
sti
sti
cmp eip, gtc
je @count
cmp gtc_c, 0
je @search

@zero_c:
mov gtc_c, 0

@fix:
mov [iat_cell], eip
cmp iat_cell, iatend
je @halt
jmp @search

@halt:
bphwc endp
mov eip, oep
an eip
pause
ret

ali56s 10-05-2011 19:39

Dumper v.1.0
 
1 Attachment(s)
Sentinel HASP (HASP SRM) Dumper v.1.0 (public)
build on (22:00:22 Jul 23 2011)

ali56s 10-05-2011 19:41

Dumper v.1.0
 
out put dmp file can open with notpad:)


All times are GMT +8. The time now is 02:56.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX