├── del0.bat ├── BOOKMARK.DLL ├── Cmdline.dll ├── OLLYDBG.EXE ├── OLLYDBG.HLP ├── OllyDump.dll ├── PhantOm.dll ├── StrongOD.dll ├── dbghelp.dll ├── ollydbg.JPG ├── OLLYDBG.EXE123 ├── analyzethis.dll ├── odbg place.JPG ├── advancedolly.dll ├── labeless_olly.dll ├── EasyController.dll ├── OllyStepNSearch.dll ├── EasyController[v 1.0.5.0]_AT4RE.gif ├── .gitattributes ├── OLLYDBG.EXE.manifest ├── .gitignore ├── README.md ├── license.txt └── ollydbg.ini /del0.bat: -------------------------------------------------------------------------------- 1 | try: 2 | del "C:\new odbg110\OLLYDBG.EXE123" 3 | if exist "C:\new odbg110\OLLYDBG.EXE123" goto try 4 | del %0 -------------------------------------------------------------------------------- /BOOKMARK.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/BOOKMARK.DLL -------------------------------------------------------------------------------- /Cmdline.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/Cmdline.dll -------------------------------------------------------------------------------- /OLLYDBG.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/OLLYDBG.EXE -------------------------------------------------------------------------------- /OLLYDBG.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/OLLYDBG.HLP -------------------------------------------------------------------------------- /OllyDump.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/OllyDump.dll -------------------------------------------------------------------------------- /PhantOm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/PhantOm.dll -------------------------------------------------------------------------------- /StrongOD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/StrongOD.dll -------------------------------------------------------------------------------- /dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/dbghelp.dll -------------------------------------------------------------------------------- /ollydbg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/ollydbg.JPG -------------------------------------------------------------------------------- /OLLYDBG.EXE123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/OLLYDBG.EXE123 -------------------------------------------------------------------------------- /analyzethis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/analyzethis.dll -------------------------------------------------------------------------------- /odbg place.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/odbg place.JPG -------------------------------------------------------------------------------- /advancedolly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/advancedolly.dll -------------------------------------------------------------------------------- /labeless_olly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/labeless_olly.dll -------------------------------------------------------------------------------- /EasyController.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/EasyController.dll -------------------------------------------------------------------------------- /OllyStepNSearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/OllyStepNSearch.dll -------------------------------------------------------------------------------- /EasyController[v 1.0.5.0]_AT4RE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/HEAD/EasyController[v 1.0.5.0]_AT4RE.gif -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /OLLYDBG.EXE.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | App Description 9 | 10 | 11 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme- 2 | Make OllyDbg v1.10 Look like Immunity Debugger & Best Plugins 3 | 4 | *** THIS IS AN OUTDATED OLD REPO JUST FOR REFERENCE *** 5 | 6 | Use the software at your own risk, I am not responsible for any damage caused to your computer as a result of using the software. 7 | 8 | 9 | ![alt tag](https://github.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/blob/master/ollydbg.JPG) 10 | 11 | ```plugin list``` 12 | 13 | - StrongOD v0.4.8.892 14 | - PhantOm Plugin v1.85 15 | - OllyStepNSearch v0.6.2 16 | - OllyDump v3.00.110 17 | - EasyController v1.0.5.0 18 | - Analyze This v0.1 19 | - Labless v1.1.2.85 20 | 21 | ```before using update the ini file to match the location of the project``` 22 | 23 | ![alt tag](https://raw.githubusercontent.com/romanzaikin/OllyDbg-v1.10-With-Best-Plugins-And-Immunity-Debugger-theme-/master/odbg%20place.JPG) 24 | 25 | 26 | Configuration 27 | ========================== 28 | 1) Downlaod the zip file or clone. 29 | 30 | 2) Extract the file to C:\OllyDbg (or any other place you want). 31 | 32 | 3) Open ollydbg.ini. 33 | 34 | 4) Replace all "C:\new odbg110" to your Extract path "C:\OllyDbg". 35 | 36 | 5) Run OLLYDBG.EXE and have a Happy reversing. 37 | 38 | 39 | Thanks :) 40 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License agreement 2 | 3 | This License Agreement ("Agreement") accompanies the OllyDbg version 1.10, 4 | OllyDbg Plugin Development Kit version 1.10 and related files ("Software"). 5 | By using the Software, you agree to be bound by all of the terms and 6 | conditions of the Agreement. 7 | 8 | The Software is distributed "as is", without warranty of any kind, expressed 9 | or implied, including, but not limited to warranty of fitness for any 10 | particular purpose. In no event will the Author be liable to you for any 11 | special, incidental, indirect, consequential or any other damages caused by 12 | the use, misuse, or the inability to use of the Software, including any lost 13 | profits or lost savings, even if Author has been advised of the possibility 14 | of such damages. 15 | 16 | The Software is owned by Oleh Yuschuk ("Author") and is Copyright (c) 2000- 17 | 2004 Oleh Yuschuk. To use this Software on a permanent basis or for commercial 18 | purposes, you must register it by filling the supplied registration form and 19 | sending it to the Author. You don't need to register Software if you use it 20 | exclusively with Randall Hyde's High Level Assembly. If you are already a 21 | registered OllyDbg user, you don't need to re-register the Software again. 22 | If the Software is registered to a company or organization, any person within 23 | the company or organization has the right to use it at work. You may install 24 | the registered Software on any number of storage devices, like hard disks, 25 | floppy disks etc. and are allowed to make any number of backup copies of this 26 | Software. 27 | 28 | You are not allowed to modify, decompile, disassemble or reverse engineer 29 | the Software except and only to the extent that such activity is expressly 30 | permitted by applicable law. You are not allowed to distribute or use any 31 | parts of the Software separately. You may make and distribute copies of this 32 | Software provided that a) the copy contains all files from the original 33 | distribution and these files remain unchanged; b) if you distribute any 34 | other files (for example, plugins) together with the Software, they must be 35 | clearly marked as such and the conditions of their use cannot be more 36 | restrictive than conditions of this Agreement; and c) you collect no fee 37 | (except for transport media, like CD or diskette), even if your distribution 38 | contains additional files. 39 | 40 | You are allowed to develop and distribute your own plugins -- Dynamic Link 41 | Libraries that connect to the Software and make use of the functions 42 | implemented in the Software -- free of charge provided that a) your plugins 43 | contain no features that persuade or force user to register them, or limit 44 | functionality of unregistered plugins; b) you allow free distribution of your 45 | plugins on the conditions similar to that of the Software; and c) you collect 46 | no fee (except for transport media, like CD or diskette). If you want to 47 | develop commercial plugin, please contact Author for a special Agreement. 48 | 49 | The distribution includes files PSAPI.DLL and DBGHELP.DLL that are the 50 | Microsoft(R) Redistributable files. These files should be installed only in 51 | the directory where the Software resides. You should use supplied PSAPI.DLL 52 | only on Windows NT(R) 4.0. You are not allowed to distribute PSAPI.DLL or 53 | DBGHELP.DLL separately from the Software. 54 | 55 | This Agreement covers only the actual version 1.10 of the OllyDbg and 56 | version 1.10 of the OllyDbg Plugin Development Kit. All other versions are 57 | covered by separate License Agreements. 58 | -------------------------------------------------------------------------------- /ollydbg.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | Check DLL versions=0 3 | Show toolbar=1 4 | Status in toolbar=0 5 | Use hardware breakpoints to step=0 6 | Restore windows=169 7 | Scroll MDI=0 8 | Horizontal scroll=0 9 | Topmost window=0 10 | Index of default font=1 11 | Index of default colours=0 12 | Index of default syntax highlighting=0 13 | Log buffer size index=0 14 | Run trace buffer size index=1 15 | Group adjacent commands in profile=1 16 | Highlighted trace register=-1 17 | IDEAL disassembling mode=0 18 | Disassemble in lowercase=0 19 | Separate arguments with TAB=0 20 | Extra space between arguments=0 21 | Show default segments=1 22 | NEAR jump modifiers=0 23 | Use short form of string commands=0 24 | Use RET instead of RETN=0 25 | Size sensitive mnemonics=1 26 | SSE size decoding mode=0 27 | Top of FPU stack=1 28 | Always show memory size=1 29 | Decode registers for any IP=0 30 | Show symbolic addresses=1 31 | Show local module names=1 32 | Gray data used as filling=1 33 | Show jump direction=1 34 | Show jump path=0 35 | Show jumpfrom path=0 36 | Show path if jump is not taken=0 37 | Underline fixups=1 38 | Center FOLLOWed command=0 39 | Show stack frames=1 40 | Show local names in stack=1 41 | Extended stack trace=0 42 | Synchronize source with CPU=0 43 | Include SFX extractor in code=0 44 | SFX trace mode=0 45 | Use real SFX entry from previous run=1 46 | Ignore SFX exceptions=0 47 | First pause=2 48 | Stop on new DLL=0 49 | Stop on DLL unload=0 50 | Stop on new thread=0 51 | Stop on thread end=0 52 | Stop on debug string=0 53 | Decode SSE registers=0 54 | Enable last error=1 55 | Ignore access violations in KERNEL32=1 56 | Ignore INT3=0 57 | Ignore TRAP=0 58 | Ignore access violations=0 59 | Step in unknown commands=0 60 | Ignore division by 0=0 61 | Ignore illegal instructions=0 62 | Ignore all FPU exceptions=0 63 | Warn when frequent breaks=0 64 | Warn when break not in code=1 65 | Autoreturn=0 66 | Save original command in trace=0 67 | Show traced ESP=0 68 | Show traced flags=0 69 | Animate over system DLLs=0 70 | Trace over string commands=0 71 | Synchronize CPU and Run trace=0 72 | Ignore custom exceptions=0 73 | Smart update=1 74 | Set high priority=1 75 | Append arguments=1 76 | Use ExitProcess=1 77 | Allow injection to get WinProc=0 78 | Sort WM_XXX by name=0 79 | Type of last WinProc breakpoint=0 80 | Snow-free drawing=0 81 | Demangle symbolic names=0 82 | Keep ordinal in name=1 83 | Only ASCII printable in dump=0 84 | Allow diacritical symbols=0 85 | String decoding=0 86 | Warn if not administrator=1 87 | Warn when terminating process=1 88 | Align dialogs=1 89 | Use font of calling window=0 90 | Specified dialog font=0 91 | Number of lines that follow EIP=0 92 | Restore window positions=1 93 | Restore width of columns=0 94 | Highlight sorted column=0 95 | Compress analysis data=1 96 | Backup UDD files=1 97 | Fill rest of command with NOPs=1 98 | Reference search mode=0 99 | Global search=1 100 | Aligned search=0 101 | Allow error margin=0 102 | Keep size of hex edit selection=1 103 | Modify tag of FPU register=1 104 | Hex inspector limits=1 105 | MMX display mode=0 106 | Last selected options card=0 107 | Last selected appearance card=0 108 | Ignore case in text search=1 109 | Letter key in Disassembler=1 110 | Looseness of code analysis=1 111 | Decode pascal strings=1 112 | Guess number of arguments=1 113 | Accept far calls and returns=0 114 | Accept direct segment modifications=0 115 | Decode VxD calls=0 116 | Accept privileged commands=0 117 | Accept I/O commands=0 118 | Accept NOPs=1 119 | Accept shifts out of range=0 120 | Accept superfluous prefixes=0 121 | Accept LOCK prefixes=0 122 | Accept unaligned stack operations=1 123 | Accept non-standard command forms=1 124 | Show ARG and LOCAL in procedures=0 125 | Save analysis to file=1 126 | Analyse main module automatically=1 127 | Analyse code structure=1 128 | Decode ifs as switches=0 129 | Save trace to file=0 130 | Trace contents of registers=1 131 | Functions preserve registers=0 132 | Decode tricks=0 133 | Automatically select register type=0 134 | Show decoded arguments=1 135 | Show decoded arguments in stack=1 136 | Show arguments in call stack=1 137 | Show induced calls=1 138 | Label display mode=0 139 | Label includes module name=0 140 | Highlight symbolic labels=0 141 | Highlight RETURNs in stack=1 142 | Ignore path in user data file=0 143 | Ignore timestamp in user data file=1 144 | Ignore CRC in user data file=0 145 | Default sort mode in Names=1 146 | Save out-of-module user data=0 147 | Tabulate columns in log file=0 148 | Append data to existing log file=0 149 | Flush gathered data to log file=0 150 | Skip spaces in source comments=1 151 | Hide non-existing source files=0 152 | Tab stops=8 153 | File graph mode=2 154 | Show internal handle names=0 155 | Hide irrelevant handles=0 156 | [Plugin Bookmarks] 157 | Restore bookmarks window=0 158 | [Plugin Command line] 159 | Restore command line window=0 160 | [Placement] 161 | OllyTest=864,127,640,480,1 162 | CPU=0,0,522,370,3 163 | CPU subwindows=325,500,319,500,535,891,497,892 164 | Breakpoints=26,26,506,187,1 165 | Log data=78,78,386,232,1 166 | Memory map=838,92,398,187,1 167 | References=78,78,626,142,1 168 | [History] 169 | View file= 170 | View text file= 171 | Object file= 172 | Import library= 173 | Log file=log.txt 174 | Run trace file=rtrace.txt 175 | API help file= 176 | Text save file= 177 | Symbolic data path=C:\OllyDbg 178 | UDD path=C:\OllyDbg 179 | Plugin path=C:\OllyDbg 180 | Executable[1]= 181 | Executable[2]= 182 | Executable[3]= 183 | Executable[4]= 184 | Executable[5]= 185 | Executable[0]= 186 | [Colours] 187 | Scheme[0]=10,12,18,0,1,2,13,13 188 | Scheme name[0]=Dave's black 189 | Scheme[1]=1,5,0,18,7,18,4,12 190 | Scheme name[1]=Fancy Nico 191 | Scheme[2]=7,12,7,10,11,7,3,13 192 | Scheme name[2]=Kostya's blue 193 | Scheme[3]=7,11,19,0,1,0,0,13 194 | Scheme name[3]=Dami's black 195 | Scheme[4]=0,12,8,18,7,8,7,13 196 | Scheme name[4]=Scheme 4 197 | Scheme[5]=14,12,7,1,3,7,3,13 198 | Scheme name[5]=Scheme 5 199 | Scheme[6]=1,12,3,11,14,2,7,13 200 | Scheme name[6]=Scheme 6 201 | Scheme[7]=15,12,7,0,8,11,7,13 202 | Scheme name[7]=Scheme 7 203 | [Fonts] 204 | Font[0]=12,8,400,0,0,0,255,2,49,0 205 | Face name[0]=Terminal 206 | Font name[0]=OEM fixed font 207 | Font[1]=9,6,700,0,0,0,255,0,48,1 208 | Face name[1]=Terminal 209 | Font name[1]=Terminal 6 210 | Font[2]=15,8,400,0,0,0,0,2,49,0 211 | Face name[2]=Fixedsys 212 | Font name[2]=System fixed font 213 | Font[3]=14,0,400,0,0,0,1,2,5,0 214 | Face name[3]=Courier New 215 | Font name[3]=Courier (UNICODE) 216 | Font[4]=10,6,400,0,0,0,1,2,5,0 217 | Face name[4]=Lucida Console 218 | Font name[4]=Lucida (UNICODE) 219 | Font[5]=9,6,700,0,0,0,255,0,48,0 220 | Face name[5]=Terminal 221 | Font name[5]=Font 5 222 | Font[6]=15,8,400,0,0,0,0,2,49,0 223 | Face name[6]=Fixedsys 224 | Font name[6]=Font 6 225 | Font[7]=14,0,400,0,0,0,1,2,5,0 226 | Face name[7]=Courier New 227 | Font name[7]=Font 7 228 | [Syntax] 229 | Commands[1]=10,7,12,12,14,12,12,13,96,7,14,0,0,0 230 | Operands[1]=1,7,7,7,13,14,10,11,0,0,0,0,0,0 231 | Scheme name[1]=Dave 232 | Commands[2]=1,1,1,1,1,1,1,4,109,12,12,0,0,0 233 | Operands[2]=1,1,2,4,12,2,2,5,0,0,0,0,0,0 234 | Scheme name[2]=Fancy Nico 235 | Commands[3]=14,4,124,124,9,110,64,13,111,8,12,0,0,0 236 | Operands[3]=1,10,4,13,11,13,15,6,0,0,0,0,0,0 237 | Scheme name[3]=Kostya's xmas tree 238 | Commands[4]=7,7,2,12,6,12,10,13,96,7,14,0,0,0 239 | Operands[4]=1,7,7,7,13,7,10,11,0,0,0,0,0,0 240 | Scheme name[4]=Dami 241 | Commands[5]=0,0,0,0,0,0,0,0,0,0,0,0,0,0 242 | Operands[5]=0,0,0,0,0,0,0,0,0,0,0,0,0,0 243 | Scheme name[5]=No highlighting 244 | Commands[0]=0,0,0,0,0,0,0,0,0,0,0,0,0,0 245 | Operands[0]=0,0,0,0,0,0,0,0,0,0,0,0,0,0 246 | Scheme name[0]=No highlighting 247 | [Arguments] 248 | Executable[1]= 249 | Executable[2]= 250 | Executable[3]= 251 | Executable[4]= 252 | Executable[5]= 253 | Executable[0]= 254 | [Appearance] 255 | CPU scheme=3 256 | CPU Disassembler=1,3,0,0,1 257 | CPU Dump=1,3,1,0,4353,0 258 | CPU Stack=1,3,1,0 259 | CPU Info=1,3,0,0 260 | CPU Registers=1,3,1,0 261 | Breakpoints=1,0,1,0,0 262 | Log data=1,0,1,0,0 263 | Memory map=1,0,1,0,0 264 | References=1,0,1,0,0 265 | [Columns] 266 | CPU Disassembler=54,102,240,1536 267 | CPU Dump=54,288,102 268 | CPU Stack=54,60,1536 269 | Breakpoints=54,54,150,216,1536 270 | Log data=54,1536 271 | Memory map=54,54,54,54,72,30,48,48,1536 272 | References=54,240,1536 273 | [Plugin PhantOm] 274 | VERSION=185 275 | HIDENAME=extremhide 276 | CAPTEXT=Phant0m 277 | PRETEXT=yOo 278 | DELTARDTSC=33000 279 | PEB=0 280 | BUG=0 281 | DRX=0 282 | DRIVER=0 283 | RDTSC=0 284 | SETCONTEXT=0 285 | BLOCK=0 286 | GETCOUNT=0 287 | COMP64=0 288 | REMOVEEP=0 289 | HANDLE=0 290 | CAPTION=0 291 | WINDOWS=0 292 | NEWBREAK=0 293 | ZWQIP=0 294 | [Plugin StrongOD] 295 | CreateProcessMode=0 296 | HidePEB=0 297 | IsPatchFloat=0 298 | IsAdvGoto=1 299 | KernelMode=0 300 | KillPEBug=0 301 | SuperEnumMod=0 302 | AdvAttach=0 303 | SkipExpection=0 304 | OrdFirst=0 305 | BreakOnLdr=0 306 | BreakOnTls=0 307 | RemoveEpOneShot=0 308 | ShowBar=17 309 | LoadSym=1 310 | AutoUpdate=1 311 | HideWindow=1 312 | HideProcess=1 313 | ProtectProcess=1 314 | DriverKey=-82693034 315 | DriverName=fengyue0 316 | UpdateURL=http://www.cracklife.com/sod/update.txt 317 | --------------------------------------------------------------------------------