10 lines
276 B
PowerShell
10 lines
276 B
PowerShell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
|
|
$file = $args[0]
|
|
$filepath = './tools/converter'
|
|
cp $file $filepath/$file
|
|
.\tools\converter\encode.ps1 $args[0] -flipper
|
|
|
|
cat $filepath/payload.txt > payload.txt
|
|
rm $filepath/payload.txt
|
|
rm $filepath/$file |