ODDragAttach 1.1 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
Author Exile
Description Choice is, it will add the window corresponding to the process of src and bin.
Window, the process of selection, OD automatically minimize the window, select the target
window, then maximize the window, OD.
Note: Some versions of the OD program may cover an open button, can be changed according to
their own circumstances, under source code, do not change it, no big problem.
http://letitbit.net/download/0185.fea03c8fe180283b90a2e5af6/ODDragAttach_v1.1.rar.html
Attach Extended 0.1 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
This is a really small plugin that I have written for improving attach feature of OllyDbg.
With this plugin, you can attach to process by identifying its PID directly, not only selecting process list. In addition, you can find PID of process by dragging a small cursor on each window (This can be used on some protection which remove process from process list like GameGuard).
by hero
http://letitbit.net/download/3236.38c30a80eb9c23920ac9a2de1/AttachExtended_v0.1.rar.html
Mapimp 0.4 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
Author takerZ
Description This is an open source OllyDbg plugin which will help you to import map files
exported by IDA or Dede. There are many plugins using which you can perform similar actions, but
mapimp:
- Recognizes debugged file segments and applies names correctly
- Has an option to overwrite or skip names that intersect already defined
- Has a filter option which gives you great name demangling potential
• Filter
The main idea is to apply series of masks to every single name loaded. Mask syntax goes.
as follows:
/key[/]regex
Key “c” cuts the matched substring selected by regular expression.
[SAMPLE]
name: System::__linkproc__ GetMem(int)
mask: /c__linkproc__
applied: System::GetMem(int)
[/SAMPLE]
Key “s” skips the name if regular expression succeeds. It may be useful if you want to skip some
dummy or incorrect names.
[SAMPLE]
name: unknown_libname_2519
mask: /sunknown_libname_
applied:
[/SAMPLE]
Key “r” replaces the substring selected by regular expression with your own.
/rsubstring/regex
As you can see slash character delims your substring from the regular expression. Use double
slash to define slash as a character of your substring.
[SAMPLE]
name: System@Function(System@AnsiString;System@AnsiString)
mask: /rsys::/System@
applied: sys::Function(sys::AnsiString;sys::AnsiString)
name: System@Function(System@AnsiString;System@AnsiString)
mask: /r//_/@
applied: System/_Function(System/_AnsiString;System/_AnsiString)
[/SAMPLE]
Remember that if the name met the mask condition it will be changed, then the second mask is
applied to the changed name and so on. The order of mask applying is undefined so be careful,
because some masks may intersect.
As about regular expressions, the plugin uses pcre library which syntax is compatible with perl
regular expression. Check www.pcre.org for docs and sources.
http://letitbit.net/download/4104.4c9d1a75c7d9867799b30b069/Mapimp_v0.4.rar.html
Obsidium 1.4.x.x OEP Finder + IAT Repair v0.1 November 20, 2009
Posted by reversengineering in Scripts, TOOLS.add a comment
http://letitbit.net/download/7203.a79ca10d2342f1b32333add72/Obsidium_1.4.x.x_OEP_Finder___IAT_Repair_v0.1.txt.html
Author Pavka
MUltimate Assembler 1.2 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
Author RaMMicHaeL
A multi-line (dis)assembler tool, perfect for writing code caves. It supports:
- labels and data (C-style string)
- external jumps and calls.
http://letitbit.net/download/6671.c63ed09074b57c49b4cd2067e/MUltimate_Assembler_v1.2.rar.html
VMProtect 1.7 – 1.8 OEP Finder + Unpack Helper v1.0 November 20, 2009
Posted by reversengineering in Scripts, TOOLS.add a comment
http://letitbit.net/download/2516.25addf1167522eb8602b67146/VMProtect_1.7___1.8_OEP_Finder___Unpack_Helper_v1.0.txt.html
by LCF-AT
CodeDoctor 0.90 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
Functions:
1) Deobfuscate
Select instructions in disasm window and execute this command. It will try to clear the code from junk instructions.
Example:
Original:
00874372 57 PUSH EDI
00874373 BF 352AAF6A MOV EDI,6AAF2A35
00874378 81E7 0D152A41 AND EDI,412A150D
0087437E 81F7 01002A40 XOR EDI,402A0001
00874384 01FB ADD EBX,EDI
00874386 5F POP EDI
Deobfuscated:
00874372 83C3 04 ADD EBX,4
________________________________________________________
2) Deobfuscate – Single Step
This works like previous command, but does one transformation at a time
_______________________________________________________
3) Move NOPs to bottom
Converts this:
00874396 50 PUSH EAX
00874397 90 NOP
00874398 90 NOP
00874399 52 PUSH EDX
0087439A BA 3F976B00 MOV EDX,somesoft.006B973F
0087439F 90 NOP
008743A0 90 NOP
008743A1 90 NOP
to this:
00874396 50 PUSH EAX
00874397 52 PUSH EDX
00874398 BA 3F976B00 MOV EDX,somesoft.006B973F
0087439D 90 NOP
0087439E 90 NOP
0087439F 90 NOP
008743A0 90 NOP
008743A1 90 NOP
Limitations: it breaks all jumps and calls pointing inwards
________________________________________________________
4) Undo / Redo
Undo or Redo last operation (from one of the above functions)
________________________________________________________
5) Retrieve Jumpy function
This will statically parse instructions and follow all jumps. This is useful for situations, when program jumps here and there and here and there… When it encounters some instruction, that can’t be followed, it stop and copies all parsed instruction to an allocated place in memory.
Use settings to set some parameters:
Step over calls – if set, it will step over calls, otherwise it will follow them
Step over jccs – dtto, but for Jccs
Deobfuscate – it will deobfuscate instruction, when it encounters Jcc, RET, JMP reg/exp, CALL reg/exp; useful for multi-branch
Example:
Original:
00874389 /EB 05 JMP SHORT somesoft.00874390
0087438B |43 INC EBX
0087438C |41 INC ECX
0087438D |42 INC EDX
0087438E |EB 07 JMP SHORT somesoft.00874397
00874390 \B8 07000000 MOV EAX,7
00874395 ^ EB F4 JMP SHORT somesoft.0087438B
00874397 C3 RET
Result:
003B0000 B8 07000000 MOV EAX,7
003B0005 43 INC EBX
003B0006 41 INC ECX
003B0007 42 INC EDX
003B0008 C3 RET
________________________________________________________
6) Rebuild RSRC and Realign
This function has some limited use when unpacking. It opens the debugged file from disc. Then it retrieves all resources and rebuilds them to one place (currently it rebuilds them only to original place in exe). Then it realigns file and saves it under new name.
When is this useful? For example when unpacking aspack/asprotect or some other packers. These steal some resources from original place and put them to its own section, therefore increasing overall size and preventing you from cutting packer’s section. It also prevents Resource hacker from displaying these resouces. This puts all resources to one place.
I’m sure there are better tools for this, but it may come handy sometimes.
_____________________________________________________
7) AsProtect Unpacker
This will unpack file packed by AsProtect, fix it, dump asprotect.dll and print various information to text file. Please report targets, where it fails.
Limitations:
1) Doesn’t find or fix SDK functions in 1.x versions (you need to find these manually).
There are two types of these. One has a form of one or more functions called before OEP, that do various initializations. If they are not run, the program may appear expired or not run at all. Find them and run them
The second type is run after OEP and hides behind GetProcAddress with special parameters, which AsProtect (if available) redirects to its own code. You need to deal with these manually.
2) in 2.30 – 2.51, there are two types of stolen functions – one is PolyOEP style, the other is virtualized; it can fix only the former, while the latter is used in AsProtect itself only
3) it doesn’t find CRC or envelope checks, but it can prevent one type of envelope check, which checks for E8 in jumps to API
4) it doesn’t decrypt encrypted parts or sections
5) it doesn’t find serial, fix trial etc.
6) if it has overlay, it may be broken after unpacking (for example if it needs to be in fixed offset in file or if it’s a certificate)
Bugs:
- doesn’t work with certain 1.10 variations, I will fix this when I have time
Notes:
- after unpacking files protected by AsProtect 2.x, you may need aspr_ide.dll; get it from aspack.com and modify if needed
by Hnedka
http://letitbit.net/download/6926.6f92506c265686d06475011a2/CodeDoctor_v0.90.rar.html
Themida + WinLicense 1.1.0.0 – 2.1.0.0 Dumper + IAT Repair + CodeEncrypt Repair v2.6.0 November 20, 2009
Posted by reversengineering in Scripts, TOOLS.add a comment
by Quosego
http://letitbit.net/download/5120.c5ff8c01bf87b5594de7f4fbc/Themida___WinLicense_1.1.0.0___2.1.0.0_Dumper___IAT_Repair___CodeEncrypt_Repair_v2.6.0.txt.html
Scripad 1.0 + ODBGScript 1.77.3 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
ODbgScript is a plugin for OllyDbg, which is, in our opinion, the best application-mode debugger out there. One of the best features of this debugger is the plugin architecture which allows users to extend its functionality. ODbgScript is a plugin meant to let you automate OllyDbg by writing scripts in an assembly-like language. Many tasks involve a lot of repetitive work just to get to some point in the debugged application. By using my plugin you can write a script once and for all.
http://letitbit.net/download/3316.36752f6bb46e115cd0783f9ce/Scripad_v1.0.rar.html
http://letitbit.net/download/8134.80ce16ba4868818583ea8d745/ODbgScript_v1.77.3.rar.html
StrongOD 0.2.6.415 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
This will be a seperate download of StrongOD as of version 0.2.4.350 because – as strange as it sounds – the developer has protected it!
This plugin will now require a key for it to run and be used. You can obtain a valid key by emailing: StrongOD©safengine.com
http://letitbit.net/download/9563.9f5459d00eca80b4993740279/StrongOD_v0.2.6.415.rar.html
PDF Protection Remover 3.0 November 20, 2009
Posted by reversengineering in TOOLS, Uncategorized.add a comment
http://letitbit.net/download/8140.813d385e39b7bcbb34ccc58af/PDF_Protection_Remover_3.0___Patch_DJiNN.rar.html
pass :www.2baksa.net
HOlly 0.2 Build 81 November 20, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
This is my OllyDbg mod named HOlly. I will be constantly adding features as I require them or they are requested. Currently it only has a multiline assembler that needs some work but I would like some input.
So if I could get some input on the following that would be great.
http://letitbit.net/download/3997.d3730400452d29f3a615da1f7/HOlly_v0.2_Build_81.rar.html
Themida+WL1.1.0.0-2.1.0.0Dumper+IAT Repair+CodeEncryptRepair_v2.6.0 November 20, 2009
Posted by reversengineering in TOOLS, UNPACKERS.add a comment
Themida+WL1.1.0.0-2.1.0.0Dumper+IAT Repair+CodeEncryptRepair_v2.6.0
By [SND]quosego
Hi all,
It’s time to make a final stand. Oreans it’s your turn now.
This package includes the following;
WL.&.TM.VM.dumper.&.IAT.CodeEnc.Fixer.v2.6.0-SnD
A script to unpack all known versions of Winlicense and Themida using any options.
The script will unpack all known Themida and Winlicense applications
using virtual machine antidump on Windows XP. (v1.8x – 2.1.0.0)
Known issues;
-Version retrieving can error, switch it off when neccesary.
-VM oeps are not always retrieved you must rebuild or find them yourself.
-Memory loaded dll’s are not dumped.
-The script stops after asking for the new antidump locations, just resume the script when it does.
Usage;
Step 1: Unpack an application using this script.
(Start at system entrypoint, EP break must be available,
no other breakpoints)
Step 2: When neccesary attach the dumped VM. Fix VM oep.
Step 3: Dump and Imprec.
Always read the log it holds vital information. Also there are several options that can be modified in the first few lines of this script.
Tinker with it if it doesn’t unpack your app.
The.Oreans.(Themida&Winlicense).VM.antidumps-Q
An article covering all antidumps, including more newer ones.
Running.Winlicense.Protected.Applications.Without.Licenses-SND
An article on how to run Winlicense protected apps without licenses.
I owe my gratitude to the whole of the webscene for support,
inspiration , ideas and the supply of information/executables.
Especially;
-A lot of suppliers.
-ARteam for being rumored to be the first to have found the first antidumps.
-An unnamed American.
-Lena for showing so many people the way.
-Teddy, for supplying us tuts4you.
-Team SND old and new members.
And most of all just have fun with this all. Use it for knowledge, the challenge and fun.
Monetary gain is never to be aspired.
regards,
http://letitbit.net/download/2216.28c286be4bac9432d2fd791f9/tmd.rar.html
Trial Reset version 3 , 3.2 & 3.4 October 14, 2009
Posted by reversengineering in OTHER, TOOLS.1 comment so far
all of them cheked by NOD32 version 4490 (20091008)
http://letitbit.net/download/0161.0303434083b5d498587f75a69/Trial_Reset_V3.0_3.2_3.4.rar.html
VB Decompiler Pro 7.6 October 14, 2009
Posted by reversengineering in Decompilers, TOOLS.1 comment so far
Highest respect to the GPcH
only for testing
if u like it buy it
http://letitbit.net/download/7265.ff7edf2a366aeb6f0ae16de2d/VB_Decompiler_Pro_7.6.rar.html
Unpacker ExeCryptor RC2 October 14, 2009
Posted by reversengineering in TOOLS, UNPACKERS.add a comment
http://letitbit.net/download/0229.0ec181aaf5ad1e8a17e074379/Unpacker_ExeCryptor_RC2.rar.html
dup 2.19 October 14, 2009
Posted by reversengineering in OTHER, TOOLS.add a comment
http://letitbit.net/download/4461.4bf7acf1da8a214c89e38d1a8/dup2.rar.html
Quick Unpack 2.2 October 14, 2009
Posted by reversengineering in TOOLS, UNPACKERS.1 comment so far
by tPORt
http://letitbit.net/download/0314.0278e133219167ad3bddefe1f/Quick_Unpack_2.2.Tool.tPORt.rar.html
new olly moded October 14, 2009
Posted by reversengineering in DEBUGGER, TOOLS.add a comment
http://rapidshare.com/files/292876972/odbg110_UST_2bg.rar
odbg110 moded by Sabre-Gold October 14, 2009
Posted by reversengineering in DEBUGGER, TOOLS.add a comment
http://rapidshare.com/files/292875278/odbg110_Sabre-Gold.rar
OllyICE v1.10 October 14, 2009
Posted by reversengineering in DEBUGGER, TOOLS.add a comment
new olly modified
http://rapidshare.com/files/292873292/odbg110_OllyICE_v1.10.rar
ArmaG3ddon v1.7 October 14, 2009
Posted by reversengineering in OTHER, TOOLS.add a comment
ArmaG3ddon v1.7
Current Release: September 2009 v1.7
+ Fixed a problem resolving PE section names
+ Updated Arteam Import Reconstructor (Nacho_dj) version 1.5.0 September 2009
Includes:
+ New approach to get overlay offsets
http://www.accessroot.com/arteam/site/download.php?view.262
http://letitbit.net/download/3260.34501ca88a42e7a38bed86741/ArmaG3ddon_v17_by_CondZero.rar.html
Exeinfo PE v0.0.2.5 Final October 14, 2009
Posted by reversengineering in DETECTOR, TOOLS.add a comment
Exeinfo PE v0.0.2.5 Final – 526 Sign
2009-09-27
added Import/Export viewer , external detectors MENU – Ctrl key, new GUI icons,exe runner Menu 30 items
Size : 590 KB
http://exeinfo.fortunecity.com/exeinfope.zip
http://letitbit.net/download/8471.c8bbf1243c0003f1c789e9f47/exeinfope.zip.html
OllyDbg 2.0 beta October 14, 2009
Posted by reversengineering in DEBUGGER, TOOLS.add a comment
The second beta. I’ve planned that it will come with the more or less complete help file. Unfortunately, I had no time to write it. Therefore there will be also the third beta release… soon.
There are many – over 20 – bugfixes in the beta 2, some of them are really critical. As promised, there are no significant changes, with two exceptions. The recognition of UNICODE strings is vastly improved, they are no longer limited to ASCII subset (option “Use IsTextUnicode()”. Also I recognize strings in the UTF-8 format. By the way, if you have some small sample program with the free source that uses UTF-8 strings, please send it to me (together with the screenshot of displayed strings) so that I will be able to test OllyDbg.
The second new feature is in the run trace. New option “Pause when EIP points to modified command” helps, for example, to find the real entry point of the SFX-ed code. Just don’t forget to create backup first (or use another new option, Auto backup user code)!
http://ollydbg.de/
http://letitbit.net/download/1694.1da1c69e6c064d7a68f1029c7/odbg200j.rar.html
DJ Java Decompiler 3.11.11.95 October 14, 2009
Posted by reversengineering in Decompilers, TOOLS.add a comment
With DJ Java Decompiler you can decompile java CLASS files and save it in text or other format. It’s simple and easy.
DJ Java Decompiler is Windows 95/98/Me/NT/2000/XP/2003/Vista/7 decompiler and disassembler for Java that reconstructs the original source code from the compiled binary CLASS files (for example Java applets). DJ Java Decompiler is able to decompile complex Java applets and binaries, producing accurate source code. DJ Java Decompiler is a stand-alone Windows application; it doesn’t require having Java installed! DJ Java Decompiler is not just Java decompiler and disassembler but it is also a fully featured Java editor using the graphic user interface with syntax-coloring. Using DJ Java Decompiler is easy. Select Open and load your desired class file, or just double-click the CLASS file you want to decompile. DJ Java Decompiler supports drag-and-drop functions for OLE. You will see the source code instantly! In Windows Explorer Right mouse-button pop-up menu available too. You can decompile or disassembler a CLASS files on your computer hard disk or on a network drive that you have a connection to (you must have a full access rights or just change the default output directory for .jad files). You don’t need to have the Java Virtual Machine or any other Java SDK installed. But this latest release is able to compile, run, create JAR archives and run applets outside of the context of a Web browser when JDK is installed. With DJ Java Decompiler you can decompile more than one java class file at one time. This release enables users to decompile “dead” parts of code.
http://members.fortunecity.com/neshkov/dj.html
http://www.neshkov.com/djdec311.zip
http://rapidshare.com/files/292881737/djdec311.zip
Keygener Assistant v1.1 October 14, 2009
Posted by reversengineering in OTHER, TOOLS.2 comments
http://letitbit.net/download/2474.2e32f867ffffcf16d49f00f77/keygener_Assistant_v1.1.
rar.html
6 new olly plugins October 14, 2009
Posted by reversengineering in OLLY'S PLUGINS, TOOLS.add a comment
hi
HOlly v0.2
LabelArgs v0.1
MUltimate Assembler v0.3
ODbgScript v1.75.3
Olly Advanced v1.27
Plugins Manager v1.2
StrongOD v0.2.6.415
http://letitbit.net/download/6309.6577fabcf64e4c420746565f5/olly_plugins.rar.html
new olly moded October 14, 2009
Posted by reversengineering in DEBUGGER, TOOLS.add a comment
hi
new olly modified by ygs
http://letitbit.net/download/4503.c4afaf17c8458cbfa2a66c99f/odbg110_YPOGEiOS.rar.html
Tria Reset 3.4 Final reup February 27, 2009
Posted by reversengineering in OTHER, Request, TOOLS.6 comments
http://letitbit.net/download/f9a602709469/Trial-Reset-34Final.rar.html
all files of 26 feb posts February 26, 2009
Posted by reversengineering in Request, TOOLS.add a comment
plus more ….
DownloadLink: http://rapidshare.com/files/202799005/26_feb_2009_uploaded.rar