This is a simple guide to perform javascript recon in the bugbounty
- The first step is to collect possibly several javascript files (
more files=more paths,parameters->more vulns)
| import socket | |
| import random | |
| import argparse | |
| import sys | |
| from io import BytesIO | |
| # Referrer: https://github.com/wuyunfeng/Python-FastCGI-Client | |
| PY2 = True if sys.version_info.major == 2 else False |
| /* | |
| Navicat Premium Data Transfer | |
| Source Server : localhost | |
| Source Server Type : MySQL | |
| Source Server Version : 50542 | |
| Source Host : localhost | |
| Source Database : rule | |
| Target Server Type : MySQL |
| /robots.txt | |
| /index.php?a=1%3Cscript%3Ealert(abc)%3C/script%3E | |
| /nevercouldexistfilenosec | |
| /nevercouldexistfilewebsec | |
| /nevercouldexistfilenosec.aspx | |
| /nevercouldexistfilewebsec.aspx | |
| /nevercouldexistfilenosec.shtml | |
| /nevercouldexistfilewebsec.shtml | |
| /nevercouldexistfilenosec/ | |
| /nevercouldexistfilewebsec/ |
| 88888 88888 | |
| 88 ad8888ba, ad8888ba, ad8888ba, 88 | |
| 88 8P' "Y8 8P' "Y8 8P' "Y8 88 | |
| 88 d8 d8 d8 88 | |
| 88 88,dd888bb, 88,dd888bb, 88,dd888bb, 88 | |
| 88 88P' `8b aaaaaaaa 88P' `8b aaaaaaaa 88P' `8b 88 | |
| 88 88 d8 """""""" 88 d8 """""""" 88 d8 88 | |
| 88 88a a8P 88a a8P 88a a8P 88 | |
| 88 "Y88888P" "Y88888P" "Y88888P" 88 |
| __ __ _____ _____ | |
| \ \ / // ____/ ____| | |
| \ V /| (___| (___ | |
| > < \___ \\___ \ [RedBirdTeam] | |
| / . \ ____) |___) | | |
| _____ __ / / \_\_____/_____/ _____ _____ | |
| | __ \ /\\ \ / / | / _ \ /\ | __ \ / ____| <script>alert(/Payloads XSS Filter Bypass List/)</script> | |
| | |__) / \\ \_/ /| | | | | | / \ | | | | (___ | |
| | ___/ /\ \\ / | | | | | |/ /\ \ | | | |\___ \ |
| Homebrew build logs for exolnet/deprecated/php@5.6 on macOS 10.13.4 | |
| Build date: 2019-09-30 00:58:45 |
| ## Sublime Text 3 Serial key build is 3176 | |
| > * Added these lines into /etc/hosts | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 license.sublimehq.com | |
| > * Used the license key | |
| ----- BEGIN LICENSE ----- |
| #!/usr/bin/env python3 | |
| """ | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| import logging | |
| class S(BaseHTTPRequestHandler): |