Run any line/command in x64dbg
up vote
1
down vote
favorite
Is it possible, to run whichever line I want?
For example, if it is at black position, and i want to run the RED CIRCLED command:
I couldn't find a way to do that, neither in right click or etc... Just want to select that line and do i.e. "RUN THIS LINE"
debugging x64dbg
add a comment |
up vote
1
down vote
favorite
Is it possible, to run whichever line I want?
For example, if it is at black position, and i want to run the RED CIRCLED command:
I couldn't find a way to do that, neither in right click or etc... Just want to select that line and do i.e. "RUN THIS LINE"
debugging x64dbg
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Is it possible, to run whichever line I want?
For example, if it is at black position, and i want to run the RED CIRCLED command:
I couldn't find a way to do that, neither in right click or etc... Just want to select that line and do i.e. "RUN THIS LINE"
debugging x64dbg
Is it possible, to run whichever line I want?
For example, if it is at black position, and i want to run the RED CIRCLED command:
I couldn't find a way to do that, neither in right click or etc... Just want to select that line and do i.e. "RUN THIS LINE"
debugging x64dbg
debugging x64dbg
asked 2 days ago
T.Todua
1815
1815
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago
add a comment |
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
You can use the Set New Origin Here option in the context menu of the disassembly view to change EIP/RIP to the selected line:
In x64dbg commands this option can be expressed as: cip = dis.sel()
.
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
You can use the Set New Origin Here option in the context menu of the disassembly view to change EIP/RIP to the selected line:
In x64dbg commands this option can be expressed as: cip = dis.sel()
.
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
add a comment |
up vote
3
down vote
accepted
You can use the Set New Origin Here option in the context menu of the disassembly view to change EIP/RIP to the selected line:
In x64dbg commands this option can be expressed as: cip = dis.sel()
.
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
You can use the Set New Origin Here option in the context menu of the disassembly view to change EIP/RIP to the selected line:
In x64dbg commands this option can be expressed as: cip = dis.sel()
.
You can use the Set New Origin Here option in the context menu of the disassembly view to change EIP/RIP to the selected line:
In x64dbg commands this option can be expressed as: cip = dis.sel()
.
answered 2 days ago
mrexodia
1,012614
1,012614
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
add a comment |
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
and then I press the "Continue" button to execute that line, right?
– T.Todua
2 days ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2freverseengineering.stackexchange.com%2fquestions%2f19913%2frun-any-line-command-in-x64dbg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You can change the instruction pointer to that line with right click -> set new origin at
– mrexodia
2 days ago