This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Function to display a menu and get the user's choice | |
| function Show-Menu { | |
| param ( | |
| [string]$Title = "Menu", | |
| [string[]]$MenuItems | |
| ) | |
| Clear-Host | |
| # Display the title |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Client | |
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "time" | |
| ) | |
| func main() { |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| useragent_string,browser_family,browser_version,operating_system,operating_system_version,device_family,is_mobile,is_tablet,is_touch_capable,is_pc,is_bot,overview | |
| "Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)",Other,,Other,,Other,False,False,False,False,False,Other / Other / Other | |
| "Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)",Other,,Other,,Other,False,False,False,False,False,Other / Other / Other | |
| Mozilla/5.0 (compatible; ABrowse 0.4; Syllable),Other,,Other,,Other,False,False,False,False,False,Other / Other / Other | |
| Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729),IE,8.0,Windows,Vista,Other,False,False,False,True,False,PC / Windows Vista / IE 8.0 | |
| Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Acoo Browser 1.98.744; .NET CLR 3.5.30729),IE,8.0,Windows,Vista,Other,False,False,False,True,False,PC / Windows Vista / IE 8.0 | |
| Mozilla/4.0 (compatible; MSIE 8. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "[+] Getting docker swarm ingress network ID" | |
| INGRESS=`sudo docker network ls | grep ingress | cut -b -10` | |
| echo "[+] Ingress: $INGRESS" | |
| echo "[+] Running netshoot container with tcpdump" | |
| read -p "[?] Filename for packet capture: " OUTPUT_FILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Had some issues installing spacy on windows. These were the steps that worked for me. | |
| # Install cuda toolkit SDK 11.0 | |
| # https://developer.nvidia.com/cuda-11.0-download-archive | |
| ############################ | |
| # INSIDE ANACONDA TERMINAL # | |
| ############################ | |
| # Create virtual env for spacy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| IP=$1 | |
| LEVEL=$2 | |
| case $LEVEL in | |
| 1) | |
| gobuster dir -u http://$IP -w /usr/share/seclists/Discovery/Web-Content/common.txt -s '200,204,301,302,307,403,500' -t 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os/exec" | |
| "os/user" | |
| "os" | |
| "syscall" | |
| "regexp" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "strings" | |
| "io/ioutil" | |
| ) | |
| /* | |
| ARP Cache Header |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "path/filepath" | |
| "regexp" | |
| "syscall" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "github.com/StackExchange/wmi" | |
| "golang.org/x/sys/windows/registry" | |
| "log" | |
| ) | |
| type AntivirusProcess struct { | |
| DisplayName string |