返回列表 发帖

[文件操作] 【已解决】隐藏运行的bat无法调用PS1文件,怎么解决?

本帖最后由 hentai87 于 2019-3-9 14:00 编辑

用的VBS隐藏的
bat = CreateObject("WScript.Shell").SpecialFolders("AppData") + "\DNF流氓\1.bat"
CreateObject("Shell.Application").ShellExecute bat, , , "runas", 0

1.bat
powershell.exe -ExecutionPolicy RemoteSigned -file 1.ps1

1.ps1
Get-Process -Name notepad | Stop-Process

路径问题

powershell.exe -ExecutionPolicy RemoteSigned -file "%~dp01.ps1"COPY
1

评分人数

微信:flashercs
QQ:49908356

TOP

提权+隐藏+执行powershell 代码    一条龙服务
<# :
%1 @Powershell "& {Start-Process -FilePath '%~f0' -WindowStyle Hidden -ArgumentList 'rem' -Verb RunAs}" & goto :eof
@Powershell "& {[ScriptBlock]::Create("(gc '%~f0' -raw)").Invoke()}" & goto :eof
#>
Get-Process -Name notepad | Stop-ProcessCOPY
1

评分人数

#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

返回列表