Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| import requests | |
| import sys | |
| import re | |
| HEADERS = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:67.0) Gecko/20100101 Firefox/67.0"} | |
| if len(sys.argv) != 2: | |
| print " Usage: python pulseversion.py <target ip/domain>" | |
| sys.exit(1) |
| #!/usr/bin/env python3 | |
| """ | |
| Script used to pull down the current video descriptions from ippsec's youtube channel. | |
| The raw output still has a few HTML tags that need to be manually removed and there | |
| also seem to be multiple duplicates of videos that have been removed in the output | |
| saved as ippsec-details.txt | |
| """ | |
| import re | |
| import sys |
| # The following comments fill some of the gaps in Solargraph's understanding of | |
| # Rails apps. Since they're all in YARD, they get mapped in Solargraph but | |
| # ignored at runtime. | |
| # | |
| # You can put this file anywhere in the project, as long as it gets included in | |
| # the workspace maps. It's recommended that you keep it in a standalone file | |
| # instead of pasting it into an existing one. | |
| # | |
| # @!parse | |
| # class ActionController::Base |
| ██████╗ ███████╗ ██████╗ ██████╗ ███╗ ██╗ | |
| ██╔══██╗██╔════╝██╔════╝██╔═══██╗████╗ ██║ | |
| ██████╔╝█████╗ ██║ ██║ ██║██╔██╗ ██║ | |
| ██╔══██╗██╔══╝ ██║ ██║ ██║██║╚██╗██║ | |
| ██║ ██║███████╗╚██████╗╚██████╔╝██║ ╚████║ | |
| ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝ | |
| @intx0x80 |
| #/bin/bash | |
| git clone https://github.com/danielmiessler/SecLists.git /opt/seclists | |
| git clone https://github.com/s0md3v/XSStrike.git /opt/xsstrike | |
| sudo ln -s /opt/xsstrike/xsstrike.py /usr/local/bin/xsstrike | |
| chmod +x /opt/xsstrike/xsstrike.py | |
| git clone https://github.com/s0md3v/Arjun.git /opt/arjun | |
| sudo ln -s /opt/arjun/arjun.py /usr/local/bin/arjun |
| setImmediate(function(){ | |
| Java.perform(function() { | |
| var currentApplication = Java.use("android.app.ActivityThread").currentApplication(); | |
| var context = currentApplication.getApplicationContext(); | |
| // Extra Code Goes Here | |
| }); | |
| }); |
This recipe sets up FoxyProxy to route all traffic through a proxy EXCEPT blacklisted domain (they will go out directly).
This receipe assumes a fresh FoxyProxy install, one proxy for everthing, excluding defined domains.
Use proxies based on their pre-defined patterns and priorities.| # Enable tab completion of flags | |
| source $(dirname $(gem which colorls))/tab_complete.sh | |
| # Move standard ls | |
| alias ols="ls" | |
| # Base formats | |
| alias ls="colorls -A" # short, multi-line | |
| alias ll="colorls -1A" # list, 1 per line | |
| alias ld="ll" # ^^^, NOTE: Trying to move to this for alternate hand commands | |
| alias la="colorls -lA" # list w/ info |