Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show CMD popup when running bat file. #15

Open
merlin123h opened this issue Jan 31, 2021 · 1 comment
Open

Show CMD popup when running bat file. #15

merlin123h opened this issue Jan 31, 2021 · 1 comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request

Comments

@merlin123h
Copy link

merlin123h commented Jan 31, 2021

Hi.
When i want to run .bat file, it shows cmd window that is displayed for at least 3-5 seconds. After that, the window has been
closed automatically. I really do not want any page or popup to be displayed. One of these popups attached and you can see it. Please guide me how to run the bat file fully silently without any popup or window openings. Thanks.

1

@r00t-3xp10it
Copy link
Owner

r00t-3xp10it commented Feb 11, 2021

If you want stealth ...
Then use a VBS script insted of BATCH scripts as dropper ..
The follow demo box (vbs script) executes Update-KB4524147.bat in a hidden teminal prompt..

Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "cmd /c start %TMP%\Update-KB4524147.bat", 0, True

Or this powershell cmdline can also execute Update-KB4524147.bat in a hidden teminal prompt..

powershell -WindowStyle Hidden Start-Process -FilePath $env:TMP\Update-KB4524147.bat

:octocat: working with meterpeter payload droppers :octocat:

@r00t-3xp10it r00t-3xp10it added the enhancement New feature or request label Feb 11, 2021
@r00t-3xp10it r00t-3xp10it added documentation Improvements or additions to documentation good first issue Good for newcomers and removed good first issue Good for newcomers labels Oct 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants