Skip to content

Instantly share code, notes, and snippets.

View shamrocksu88's full-sized avatar
🎯
Focusing

Shunmugha Sundaram shamrocksu88

🎯
Focusing
View GitHub Profile
@shamrocksu88
shamrocksu88 / revip.py
Created November 28, 2019 05:04 — forked from ayoubfathi/revip.py
Using YouGetSignal API to get domains hosted on the same IP - Reverse IP
import requests
import json
import sys
import argparse
_strip = ['http://', 'https://', 'www']
G = '\033[92m'
Y = '\033[93m'
@shamrocksu88
shamrocksu88 / built-in-tools.md
Created February 20, 2020 07:00 — forked from kevinweber/built-in-tools.md
Collection of AEM Links, Commands & Tips / Cheat Sheet

Web Consoles & Tools

This file has been truncated, but you can view the full file.
/
$$$lang-translate.service.js.aspx
$367-Million-Merger-Blocked.html
$defaultnav
${idfwbonavigation}.xml
$_news.php
$search2
£º
.0
@shamrocksu88
shamrocksu88 / gist:89a938e64a75551b5a70d5f03f66daa7
Created May 25, 2020 13:59 — forked from tillson/gist:620e8ef87bc057f25b0a27c423433fda
Decode Base64 strings in a git repo's commit history
from pydriller import RepositoryMining
import re
import base64
foundSet = set()
for commit in RepositoryMining('./').traverse_commits():
for mod in commit.modifications:
if mod.source_code_before != None:
regex = re.findall(r"<text encoding=\"base64\">[^>]+</text>", mod.source_code_before)
for result in regex: