Posts

Es werden Posts vom Juni, 2022 angezeigt.

Netstat Verbindungen Port anzeigen

 netstat -an | findstr ":443"

KB Artikel finden

 wmic qfe | find "KB5014692"

Blue Team CheatSheet

  Blue Team Cheat Sheet

Start http.server on Kali Linux

python3 -m http.server

Command Injection Payload List

  GitHub - payloadbox/command-injection-payload-list: 🎯 Command Injection Payload List

Detection Lab Logins

  Domain Name:  windomain.local Admininstrator login:  vagrant:vagrant Fleet login:   https://192.168.56.105:8412 - admin@detectionlab.network:Fl33tpassword! Splunk login:   https://192.168.56.105:8000 - admin:changeme MS ATA login:   https://192.168.56.103 - wef\vagrant:vagrant Guacamole login:   http://192.168.56.105:8080/guacamole - vagrant:vagrant Velociraptor login:   https://192.168.56.105:9999 - admin:changeme

Google Hacking / Dorking

Filter Example Description site site:website.com returns results only from the specified website address inurl inurl:admin returns results that have the specified word in the URL filetype filetype:pdf returns results which are a particular file extension intitle intitle:admin returns results that contain the specified word in the title

GPO Search

Find String in Group Policy Settings # Get the string we want to search for $string = Read-Host -Prompt "What string do you want to search for?"   # Set the domain to search for GPOs $DomainName = $env:USERDNSDOMAIN   # Find all GPOs in the current domain write-host "Finding all the GPOs in $DomainName " Import-Module grouppolicy $allGposInDomain = Get-GPO -All -Domain $DomainName [ string []] $MatchedGPOList = @ () # Look through each GPO's XML for the string Write-Host "Starting search...." foreach ( $gpo in $allGposInDomain ) {     $report = Get-GPOReport -Guid $gpo .Id -ReportType Xml     if ( $report -match $string ) {         write-host "********** Match found in: $( $gpo .DisplayName ) **********" -foregroundcolor "Green"         $MatchedGPOList += " $( $gpo .DisplayName ) " ;     } # end if     else {         Write-Host "No match in: $( $gpo ....