mirror of
https://github.com/wietze/Invoke-ArgFuscator
synced 2026-06-08 18:17:29 +00:00
16 lines
335 B
PowerShell
Executable File
16 lines
335 B
PowerShell
Executable File
class Token {
|
|
[string]$Type;
|
|
[char[]]$TokenContent;
|
|
[boolean]$HasValue;
|
|
|
|
Token([char[]]$Content, [boolean]$HasValue) {
|
|
$this.TokenContent = $Content;
|
|
$this.Type = "argument";
|
|
$this.HasValue = $HasValue;
|
|
}
|
|
|
|
[string]ToString(){
|
|
return [string]($this.TokenContent -join "")
|
|
}
|
|
}
|