Class: Rex::Post::Thread

Inherits:
Object
  • Object
show all
Defined in:
lib/rex/post/thread.rb

Overview

This class provides generalized methods for interacting with a thread running in a process on a remote machine via a post-exploitation client.

Instance Method Summary collapse

Instance Method Details

#closeObject

Close resources associated with the thread.

Raises:

  • (NotImplementedError)


52
53
54
# File 'lib/rex/post/thread.rb', line 52

def close
  raise NotImplementedError
end

#query_regsObject

Query architecture-specific register state.

Raises:

  • (NotImplementedError)


38
39
40
# File 'lib/rex/post/thread.rb', line 38

def query_regs
  raise NotImplementedError
end

#resumeObject

Resume execution of the remote thread.

Raises:

  • (NotImplementedError)


24
25
26
# File 'lib/rex/post/thread.rb', line 24

def resume
  raise NotImplementedError
end

#set_regsObject

Set architecture-specific register state.

Raises:

  • (NotImplementedError)


45
46
47
# File 'lib/rex/post/thread.rb', line 45

def set_regs
  raise NotImplementedError
end

#suspendObject

Suspend the remote thread.

Raises:

  • (NotImplementedError)


17
18
19
# File 'lib/rex/post/thread.rb', line 17

def suspend
  raise NotImplementedError
end

#terminateObject

Terminate the remote thread.

Raises:

  • (NotImplementedError)


31
32
33
# File 'lib/rex/post/thread.rb', line 31

def terminate
  raise NotImplementedError
end