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

🤖 Add internal-monologue.vm #595

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/internal-monologue.vm/internal-monologue.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>internal-monologue.vm</id>
<version>0.0.0.20240412</version>
<authors>eladshamir</authors>
<description>Internal Monologue Attack: Retrieving NTLM Hashes without Touching LSASS</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20240412" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/internal-monologue.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'Internal-Monologue'
$category = 'Credential Access'

$zipUrl = 'https://github.com/eladshamir/Internal-Monologue/archive/4694611f78f211ca4a0381cd3daca1310ced4293.zip'
$zipSha256 = '262369744f1cbb468bb79e6c0a6b21aee3b18e20d2abea99b5dd0d12ea43325f'

VM-Install-From-Zip $toolName $category $zipUrl $zipSha256 -withoutBinFile -innerFolder $true
7 changes: 7 additions & 0 deletions packages/internal-monologue.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'Internal-Monologue'
$category = 'Credential Access'

VM-Uninstall $toolName $category
Loading