Posted August 25, 20178 yr Alter to graph. Same line different jumps. Should I open an issue ? Regards.
August 25, 20178 yr Author 7 hours ago, mrexodia said: What exactly is the problem? No problem, mrexodia. Just wondering if it maybe a case to issue. btw amazing job with x64dbg, this tool is neat. 3 hours ago, Hero said: While in graph view, pressing F5 (refresh) should fix the problem. Thanks for the tip!
August 30, 20178 yr On 8/25/2017 at 5:48 PM, opc0d3 said: No problem, mrexodia. Just wondering if it maybe a case to issue. Yes, could you explain in more detail what you think is the issue? I see two arrows leaving the basic block (green for jump taken, red for jump not taken), but that looks correct to me...
September 1, 20178 yr Author On 8/30/2017 at 9:05 AM, mrexodia said: Yes, could you explain in more detail what you think is the issue? I see two arrows leaving the basic block (green for jump taken, red for jump not taken), but that looks correct to me... In the first image there is a JNE (flag ZF=0) and in the second image it is showing the JE (flag ZF=1), I was wondering why it changes the jump. Can I take this opportunity to ask about x64dbg Patches ? Before patch a program it runs normal w/o admin rights, but after patch it asks for admin privileges. How could I change it ? Thanks for your time!
September 2, 20177 yr @opc0d3 There is no change to the jump? As for admin rights, this shouldn't happen (x64dbg does nothing to change this), but it could if your file is called 'launcher' or 'setup' or 'install'
September 3, 20177 yr Author On 9/2/2017 at 9:07 AM, mrexodia said: @opc0d3 There is no change to the jump? As for admin rights, this shouldn't happen (x64dbg does nothing to change this), but it could if your file is called 'launcher' or 'setup' or 'install' The jump goes to the right place . I was asking because I was statically analyzing a program made by myself and I was wondering why was JE since accordingly to my code should be JNE. I only realized thatthe jump was right after going to CPU tab, but now I see that F5 fix this, after pressing it the JE changes to JNE. My filename it's normal nothing like as you mentioned. Well, seems to be one time only thing... Thanks for your time!
September 3, 20177 yr Oh lol, I totally missed the difference between je and jne but glad to hear it's solved!
October 2, 20177 yr In the last photo (3769) you can not detach the tabs. possible error in these changes. src/gui/Src/Gui/TabWidget.cpp // Convert a tab to an external window-void MHTabWidget::DetachTab(int index, QPoint & dropPoint)+void MHTabWidget::DetachTab(int index, const QPoint & dropPoint) src/gui/Src/Gui/TabWidget.h @@ -37,7 +37,7 @@ class MHTabWidget: public QTabWidget public slots: void AttachTab(QWidget* parent); - void DetachTab(int index, QPoint &); + void DetachTab(int index, const QPoint &); const statement. Edited October 2, 20177 yr by sstrato
Create an account or sign in to comment