Skip to content

Instantly share code, notes, and snippets.

View Soulsender's full-sized avatar
💭
I don't like to spam commits but it sure feels like that some days

Soulsender Soulsender

💭
I don't like to spam commits but it sure feels like that some days
View GitHub Profile
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."
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;
<?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;
@Soulsender
Soulsender / commands.txt
Last active August 7, 2024 16:36
A list of commands used in the gps wardriving video. THESE WILL BE DIFFERENT FOR YOU BASED ON THINGS LIKE YOUR INTERFACE NAME AND IP ADDRESS.
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
@Soulsender
Soulsender / Tool List
Last active December 16, 2022 22:51
Tool List
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