mrexodia Posted June 24, 2014 Posted June 24, 2014 Hello everyone, As Artic suggested, this topic is for feature suggestions. Post anything you wanna see in the next release here. Make sure to also post it over at https://bitbucket.org/mrexodia/x64_dbg/issues/new Greetings, Mr. eXoDia
Dragon Palace Posted June 24, 2014 Posted June 24, 2014 (edited) hello, is that possible searching Chinese strings? if you can find some source code in bbs.pediy.com when you see below OllyDBG picture, you will see 4 windows with red words explained. but what other windows called in OD and x64DBG? 1. Disassembly window2. Registers window3. Dump window4. Stack window5. How to call this window? when will make it work? Edited June 24, 2014 by chixiaojie
rxzcums Posted June 25, 2014 Posted June 25, 2014 (edited) suggust:double click EIP will go to current EIP in CPU window, just like OD. Greetings,rxz Edited June 25, 2014 by rxzcums
mrexodia Posted June 25, 2014 Author Posted June 25, 2014 @chixiaojie: Searching for UNICODE strings is possible, but currently unsupported, because x64dbg is 100% ASCII based. Rewriting for UNICODE is possible and I will work on this, but first I want to solve various other things. And for the rest of your suggestion, what's the deal with all these windows? I attached screenshots of all views available in x64dbg in the current dev build. Greetings, Mr. eXoDiax64_dbg_pictures.rar
CondZero Posted June 27, 2014 Posted June 27, 2014 Not sure if these have been requested: 1. Ability to sort the symbols (exports) by name2. Ability to search for binary strings3. Ability to set a memory breakpoint in the memory map window4. Quicker method to add exceptions to a new session5. A call stack window similar to Olly's K tab6. Information appearing in what is called the "data" window just below the disassembly window7. Ability to navigate forwards and backwards in the disassembly window using the '+' '-' keyssimilar to Olly.8. Binary edit in disassembly window (context window)9. Search for all intermodular calls in disassembly window (context menu) Also, nice job on the gui and debugger. BR, CZ 2
mrexodia Posted June 28, 2014 Author Posted June 28, 2014 @CondZero: some are already implemented (like the +/-), others will go directly to the todo list.Greetings
kassane Posted July 10, 2014 Posted July 10, 2014 It would help if you add a plugin that reads the script Ollydbgscript 1.82!
mrexodia Posted July 10, 2014 Author Posted July 10, 2014 (edited) @kassane: 100% ODBGScript/OllyScript support will never be implemented, we might do a converter in the future though. There is a script language implemented, it also directly supports stuff like this:mov page,[esp+4]+10002:[kernel32:GetProcAddress+21]=0x9090bp LoadLibraryAA converter tool would require all variables used in the ODBGScript to be prefixed with 'Script_' or something else, because x64_dbg would error on the following script:gpa "GetProcAddress","kernel32.dll"mov GetProcAddress,$RESULT <- invalid dest "GetProcAddress"GetProcAddress is already an export, so you cannot move anything to it.Prefixing the variable could make most stuff working.Read the following page for more information about the allowed input types in x64_dbg: http://x64dbg.com/help/scr/Input.htm The following page is about what kind of calculations can be done and used directly as input: http://x64dbg.com/help/scr/Calculations.htmAll the possible (script) commands can be found at http://x64dbg.com/help/scr/Commands.htmIf you know any command that you would like to see implemented from ODBGScript, please create an issue at http://issues.x64dbg.com or post a new thread here.Greetings,Mr. eXoDia Edited July 10, 2014 by Mr. eXoDia 1
mrexodia Posted July 10, 2014 Author Posted July 10, 2014 (edited) Not sure if these have been requested: 1. Ability to sort the symbols (exports) by name 2. Ability to search for binary strings 3. Ability to set a memory breakpoint in the memory map window 4. Quicker method to add exceptions to a new session 5. A call stack window similar to Olly's K tab 6. Information appearing in what is called the "data" window just below the disassembly window 7. Ability to navigate forwards and backwards in the disassembly window using the '+' '-' keys similar to Olly. 8. Binary edit in disassembly window (context window) 9. Search for all intermodular calls in disassembly window (context menu) Also, nice job on the gui and debugger. BR, CZ 1. Implemented in the current dev version. 2. ctrl+b (you cannot yet search the whole process) 3. yep, can be done already 4. could you elaborate on that? there is an 'Add Last Exception' button in the exception settings dialog 5. yep, we're working on it 6. also working on that 7. yep, it's implemented 8. yep, also implemented 9. yep, implemented as well Thanks for your suggestions. Greetings, Mr. eXoDia EDIT: oops, didn't see I already replied here, could this be merged with my previous post please? Edited July 10, 2014 by Mr. eXoDia
ToMKoL Posted July 11, 2014 Posted July 11, 2014 Is there an option for repeatable comment for the same instructions? What I want to do is to be able to comment one line and that x64dbg repeats it for all instances of the same command.Example:401000 call 12345678 ; call to some function...401070 call 12345678 ; call to some functionor401000 push 12345678 ; push some string...401050 push 12345678 ; push some stringAlso do you plan to keep compiled versions of plugins or are we supposed to install VC compiler to get working plugins? I was looking for plugin to import map files but found only link to src on x64dbg site.
mrexodia Posted July 11, 2014 Author Posted July 11, 2014 @ToMKoL: No, there is no option to do this. Plugins are separate from x64dbg, so I cannot provide support for them. If you need a plugin, ask the author, which is not me in most cases. Greetings
ToMKoL Posted July 13, 2014 Posted July 13, 2014 Thanks for answer. Do you have plans to implement 'copy data' (mainly strings) from dump window?
Artic Posted July 16, 2014 Posted July 16, 2014 (edited) x64dbg assembling - CHECK! thanks alot! Mr. eXoDia i feel honored, thanks for mention me in the Special Thanks! Edited July 16, 2014 by Artic
Siarogak Posted July 19, 2014 Posted July 19, 2014 (edited) Hi, I want to know, is it possible to add feature that allows to debug program which works as a service? Edited July 19, 2014 by Siarogak
mrexodia Posted July 20, 2014 Author Posted July 20, 2014 @Siarogak: You should be able to attach to the service process (although attaching is broken in the current release, it should be fixed by the next release).
Siarogak Posted July 20, 2014 Posted July 20, 2014 (edited) I know, but some checks can be performed when the program starts, and there is no sense in debugging when the programm runs. Edited July 20, 2014 by Siarogak
mrexodia Posted July 20, 2014 Author Posted July 20, 2014 @Siarogak: And when you open the application in the debugger it doesn't start the service? You could change the EP bytes to EBFE and attach the debugger after it started. In that way you can also debug the initialization routine.
mrexodia Posted July 22, 2014 Author Posted July 22, 2014 @FILIPOVIC: Update checker is implemented in the current dev version and save is implemented.
Artic Posted July 22, 2014 Posted July 22, 2014 really good news @eXoDia if you need a tester, i would like to test.
kassane Posted August 11, 2014 Posted August 11, 2014 You want to make your software in multi languages?
Siarogak Posted August 12, 2014 Posted August 12, 2014 (edited) is it possible to make hints and the autocompletion in the command line for API's, like you did it for commands? Edited August 12, 2014 by Siarogak
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now