Benutzer-Werkzeuge

Webseiten-Werkzeuge


start

Dies ist eine alte Version des Dokuments!


[22:55:17.197] # 33 -> HTTP -1 (0 ms)
[22:55:17.407] # 34 -> HTTP -1 (0 ms)
[22:55:17.611] # 35 -> HTTP -1 (0 ms)
[22:55:17.825] # 36 -> HTTP -1 (0 ms)
[22:55:18.042] # 37 -> HTTP -1 (0 ms)
[22:55:18.245] # 38 -> HTTP -1 (0 ms)
[22:55:18.456] # 39 -> HTTP -1 (0 ms)
[22:55:18.669] # 40 -> HTTP -1 (0 ms)
[22:55:18.876] # 41 -> HTTP -1 (0 ms)
[22:55:19.086] # 42 -> HTTP -1 (0 ms)
[22:55:19.286] # 43 -> HTTP -1 (0 ms)
[22:55:19.496] # 44 -> HTTP -1 (0 ms)
[22:55:19.701] # 45 -> HTTP -1 (0 ms)
[22:55:19.910] # 46 -> HTTP -1 (0 ms)
[22:55:20.120] # 47 -> HTTP -1 (0 ms)
[22:55:20.321] # 48 -> HTTP -1 (0 ms)
[22:55:20.531] # 49 -> HTTP -1 (0 ms)
[22:55:20.749] # 50 -> HTTP -1 (0 ms)

PS C:\Users\Manuel Zarat>

Hallo Besucher! Willkommen in diesem kleinen Wiki rund um IT. Vieles ist noch unvollständig, unstrukturiert oder vielleicht sogar falsch bzw. irreführend.

Du kannst Artikel gerne ergänzen oder verbessern. Gerne mit so vielen Links wie nötig. Bitte keine Werbelinks und nur selbst verfasste oder lizenzfreie Texte! Copyright beachten!

Fehlende Verlinkungen

Eine Liste von Seiten die noch erstellt werden müssen.

# ID Links
1turn3 : Show backlinks
2xml3 : Show backlinks
3saslauthd2 : Show backlinks
4chef2 : Show backlinks
5netzwerkkarte2 : Show backlinks
6graylog2 : Show backlinks
7https2 : Show backlinks
8rpc1 : Show backlinks
9soundkarte1 : Show backlinks
10wifite1 : Show backlinks
11networkd1 : Show backlinks
12pcie1 : Show backlinks
13sips1 : Show backlinks
14ssd1 : Show backlinks
15srtp1 : Show backlinks
163des1 : Show backlinks
17hub1 : Show backlinks
18cuda1 : Show backlinks
19ice1 : Show backlinks
20iax21 : Show backlinks
21eaphammer1 : Show backlinks
22iscsitarget1 : Show backlinks
23tshark1 : Show backlinks
24dnscat21 : Show backlinks
25ddos1 : Show backlinks
26vnc1 : Show backlinks
27sctp1 : Show backlinks
28base641 : Show backlinks
29pjsip1 : Show backlinks
30courier1 : Show backlinks
31freepbx1 : Show backlinks
32vmfs1 : Show backlinks
33dnsrecon1 : Show backlinks
34sata1 : Show backlinks
35unix1 : Show backlinks
36playground:playground1 : Show backlinks
37webrtc1 : Show backlinks
38oakley1 : Show backlinks
39nvme1 : Show backlinks
40sendmail1 : Show backlinks
41mailx1 : Show backlinks
42fierce1 : Show backlinks
43wpa31 : Show backlinks
44creddump71 : Show backlinks
45realmd1 : Show backlinks
param(
  [string]$Url = "https://eas.akm.at/Microsoft-Server-ActiveSync",
  [string]$Username = "doesnotexist-testuser",
  [string]$Password = "WrongPassword123!",
  [int]$Count = 50,
  [int]$DelayMs = 200
)
 
# Basic Auth header bauen
$pair = "{0}:{1}" -f $Username, $Password
$b64  = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes($pair))
 
$headers = @{
  "Authorization" = "Basic $b64"
  "User-Agent"    = "EAS-Bruteforce-Test/1.0"
  "Accept"        = "*/*"
}
 
Write-Host "Target: $Url"
Write-Host "User:   $Username"
Write-Host "Count:  $Count, Delay: ${DelayMs}ms"
Write-Host ""
 
for ($i=1; $i -le $Count; $i++) {
  $sw = [System.Diagnostics.Stopwatch]::StartNew()
 
  try {
    # -SkipCertificateCheck ist in PS7 verfügbar (falls ihr intern/self-signed nutzt)
    $resp = Invoke-WebRequest -Uri $Url -Method Get -Headers $headers -MaximumRedirection 0 -SkipCertificateCheck -ErrorAction Stop
    $code = [int]$resp.StatusCode
  } catch {
    # Bei 401/429 wirft Invoke-WebRequest meist eine Exception -> Code auslesen
    $code = $null
    if ($_.Exception.Response -and $_.Exception.Response.StatusCode) {
      $code = [int]$_.Exception.Response.StatusCode
    } elseif ($_.ErrorDetails -and $_.ErrorDetails.Message -match '"status"\s*:\s*(\d{3})') {
      $code = [int]$matches[1]
    }
  }
 
  $sw.Stop()
  $ts = (Get-Date).ToString("HH:mm:ss.fff")
 
  if ($null -eq $code) { $code = -1 }
 
  Write-Host ("[{0}] #{1,3} -> HTTP {2} ({3} ms)" -f $ts, $i, $code, $sw.ElapsedMilliseconds)
 
  if ($code -eq 429) {
    Write-Host "Got 429 -> rate limit seems active. Stopping."
    break
  }
 
  Start-Sleep -Milliseconds $DelayMs
}
start.1771451807.txt.gz · Zuletzt geändert: 2026/02/18 22:56 von jango