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
| Write-Host "YOU MUST SET YOUR HOSTNAME BEFORE CONTINUING" -ForegroundColor Red | |
| Write-Host "IF THIS IS A HYPER-V HOST YOU MUST SET YOUR ADAPTER TO INTERNAL IF NEEDED" -ForegroundColor Red | |
| $response = Read-Host -Prompt "Your hostname is currently $((Get-ComputerInfo).CsName). Is this correct? (Y/n)" | |
| if ($response -eq 'Y' -or $response -eq 'y') { | |
| Write-Host "Continuing Install..." -ForegroundColor Green | |
| } elseif ($response -eq 'N' -or $response -eq 'n') { | |
| Write-Host "Cancelling Installation." -ForegroundColor Red | |
| exit 0 | |
| } else { | |
| Write-Host "Invalid response. Please enter Y or N." |
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
| server { | |
| # define domain name to use, in my case it's a subdomain | |
| server_name server.soulsender.me; | |
| # this is the root of server.soulsender.me | |
| location / { | |
| # this is the path of your media files | |
| root /hosting; | |
| autoindex on; |
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
| <?php | |
| $ip = '127.0.0.1'; // CHANGE THIS | |
| $port = 4444; // CHANGE THIS | |
| set_time_limit (0); | |
| $VERSION = "1.0"; | |
| $chunk_size = 1400; | |
| $write_a = null; | |
| $error_a = null; |
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
| GETTING THE IP | |
| arp-scan --interface=wlan0 --localnet | |
| nmap -sN 192.168.0.1/24 | |
| SSH | |
| ssh [email protected] | |
| INSTALLING TOOLS | |
| sudo apt update | |
| sudo apt install hostapd dnsmasq gpsd gpsd-clients netcat git raspberrypi-kernel-headers |
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
| WEB & ENUMERATION | |
| nikto - General Web Scan | |
| SQLMap - SQL Injection Mapper | |
| Gobuster - Subdomain & Directory bruteforcer | |
| Sublist3r - Subdomain Lister | |
| OWASP Amass - Improved Subdomain Lister | |
| WhatWeb - Technology Identifier | |
| Wappalyzer - Technology Identifier Extension | |
| builtwith.com - In-Depth Technology Identifer | |
| dirbuster - Directory Bruteforcer |