We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b49543 commit 64a0664Copy full SHA for 64a0664
1 file changed
AES-Encoder.ps1
@@ -13,15 +13,14 @@
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program. If not, see <https://www.gnu.org/licenses/>.
16
-# Made by https://github.com/chainski
+# Made by https://github.com/chainski
17
18
$console = $host.UI.RawUI
19
$console.WindowTitle = "Powershell AES-Encoder"
20
Set-StrictMode -Version Latest
21
$ErrorActionPreference = "Stop"
22
$PSDefaultParameterValues['*:ErrorAction']='Stop'
23
24
-
25
function random {
26
$base64String = [Convert]::ToBase64String((1..10 | ForEach-Object {[byte](Get-Random -Max 256)}))
27
$base64String = $base64String -replace '[+/=]', ''
@@ -201,4 +200,4 @@ sleep 1
201
200
[System.IO.File]::WriteAllText($outfile,$amsi+$code)
202
Write-Output "[+] Done!"
203
}
204
-}
+}
0 commit comments