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
#!/usr/bin/env python3 | |
# | |
# inputs: nmap.xml (nmap scan xml output), subdomains.csv (optional virtualhost info, hostname + ip address csv file) | |
# output: url listing (useful for tools like EyeWitness) | |
# | |
# sample usage: ./nmap-http-url.py nmap.xml subdomains.csv | sort -u | gowitness file -f - | |
# | |
description = ''' | |
Generate HTTP URLs from Nmap XML (and optionally additional VirtualHost listing, taken from e.g. subdomain enumeration). |
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
PS C:\WINDOWS\system32> Get-AppxPackage -allusers XboxApp | Remove-AppxPackage | |
PS C:\WINDOWS\system32> Get-AppxPackage -allusers Microsoft.XboxGamingOverlay | Remove-AppxPackage | |
PS C:\WINDOWS\system32> Get-AppxPackage -allusers XboxApp | Remove-AppxPackage |
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
Uninstall a python app that used setup.py | |
> python setup.py install --record files.txt | |
> cat files.txt | xargs rm -rf |
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
############################################# | |
## DEFAULT GENERAL SETTINGS (tmux show -g) ## | |
############################################# | |
set-option -g activity-action other | |
set-option -g assume-paste-time 1 | |
set-option -g base-index 0 | |
set-option -g bell-action any | |
set-option -g default-command "" | |
set-option -g default-shell "/bin/bash" |
NewerOlder