Files
metasploit-gs/lib/msf/util/dot_net_deserialization/gadget_chains.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
254 B
Ruby
Raw Normal View History

2020-04-07 20:18:50 -04:00
module Msf
module Util
module DotNetDeserialization
module GadgetChains
2020-04-09 20:53:55 -04:00
NAMES = [
2022-02-09 14:38:51 -05:00
:ClaimsPrincipal,
2022-08-03 16:37:32 -04:00
:DataSet,
:DataSetTypeSpoof,
2023-03-15 17:09:21 -04:00
:ObjectDataProvider,
2020-04-09 20:53:55 -04:00
:TextFormattingRunProperties,
2020-04-11 14:11:47 -04:00
:TypeConfuseDelegate,
:WindowsIdentity
2020-04-09 20:53:55 -04:00
]
2020-04-07 20:18:50 -04:00
end
end
end
end