mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Add MachoManiac
This commit is contained in:
parent
04c0b7aeae
commit
50b1c46678
34 changed files with 5269 additions and 0 deletions
25
helpers/macho/macho.operators.js
Normal file
25
helpers/macho/macho.operators.js
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
let OPERATORS = {
|
||||
False: 0,
|
||||
True: 1,
|
||||
Ident: 2,
|
||||
AppleAnchor: 3,
|
||||
AnchorHash: 4,
|
||||
InfoKeyValue: 5,
|
||||
And: 6,
|
||||
Or: 7,
|
||||
CDHash: 8,
|
||||
Not: 9,
|
||||
InfoKeyField: 10,
|
||||
CertField: 11,
|
||||
TrustedCert: 12,
|
||||
TrustedCerts: 13,
|
||||
CertGeneric: 14,
|
||||
AppleGenericAnchor: 15,
|
||||
EntitlementField: 16,
|
||||
CertPolicy: 17,
|
||||
NamedAnchor: 18,
|
||||
Platform: 20,
|
||||
toString: function() {
|
||||
return JSON.stringify(this);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue