Skip to content

Instantly share code, notes, and snippets.

View amalmurali47's full-sized avatar

Amal Murali amalmurali47

View GitHub Profile
var hash = document.location.hash.substr(1);
if(hash){
displayReason(hash);
}
document.getElementById("reasons").onchange = function(e){
if(e.target.value != "")
displayReason(e.target.value);
}
function reasonLoaded () {
var reason = document.getElementById("reason");
@amalmurali47
amalmurali47 / send_whatsapp_msg.js
Created January 31, 2020 06:34
Send messages on web.whatsapp.com
function sendMessage (message) {
window.InputEvent = window.Event || window.InputEvent;
var event = new InputEvent('input', {
bubbles: true
});
var textbox = document.querySelector('div._3u328');
textbox.textContent = message;
import os
from collections.abc import MutableSet
class DiskSet(MutableSet):
def __init__(self, path, isRelative=False):
if isRelative is True:
self.path = path
else:
@amalmurali47
amalmurali47 / go-setup.sh
Last active December 12, 2021 15:58
Go automatic upgrade/installation script for Linux
#!/bin/bash
version=$(curl -s "https://go.dev/dl/?mode=json" | jq '.[0].version' -r)
wget "https://dl.google.com/go/${version}.linux-amd64.tar.gz"
sudo tar -C /usr/local -xzf go*.linux-amd64.tar.gz
{
echo '# Golang'
echo 'export GOPATH=$HOME/go'
@amalmurali47
amalmurali47 / README.md
Created May 1, 2019 18:31
Delete all Telegram contacts.

How to delete all your Telegram contacts at once?

  1. Go to https://web.telegram.org and sign in if you're not already signed in.
  2. On the top-left, click on the hamburger icon to show the dropdown menu, and choose "Contacts" from the list.
  3. Choose "Edit".
  4. Open the Developer Console of your browser (preferably Chrome or Firefox). On Chrome, that is Ctrl + Shift + J.
  5. Run the following JS snippet:
var x = document.getElementsByClassName('contacts_modal_contact')
@amalmurali47
amalmurali47 / g
Last active August 10, 2018 05:12
g
{ patterns = (
{ include = '#comment-block'; },
{ include = '#selector'; },
{ name = 'meta.at-rule.charset.css';
begin = '\s*((@)charset\b)\s*';
end = '\s*((?=;|$))';
captures = {
1 = { name = 'keyword.control.at-rule.charset.css'; };
2 = { name = 'punctuation.definition.keyword.css'; };
};
@amalmurali47
amalmurali47 / save_the_dogs.py
Created July 8, 2018 15:56
Solution for Google CTF 2018 Web Challenge - Chat Cat
#!/usr/bin/env python3
import sys
from itertools import combinations_with_replacement as comb
alpha = 'abcdefghijklmnopqrstuvwxyz'
alpha += alpha.upper() + '0123456789_'
def gen(l):
@amalmurali47
amalmurali47 / bucket-disclose.sh
Created July 7, 2018 07:11 — forked from fransr/bucket-disclose.sh
Using error messages to decloak an S3 bucket. Uses soap, unicode, post, multipart, streaming and index listing as ways of figure it out. You do need a valid aws-key (never the secret) to properly get the error messages
#!/bin/bash
# Written by Frans Rosén (twitter.com/fransrosen)
_debug="$2" #turn on debug
_timeout="20"
#you need a valid key, since the errors happens after it validates that the key exist. we do not need the secret key, only access key
_aws_key="AKIA..."
H_ACCEPT="accept-language: en-US,en;q=0.9,sv;q=0.8,zh-TW;q=0.7,zh;q=0.6,fi;q=0.5,it;q=0.4,de;q=0.3"
H_AGENT="user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36"
@amalmurali47
amalmurali47 / brute_secret_note.py
Created July 1, 2018 15:49
My solution to H1-702 2018 CTF Web Challenge.
#!/usr/bin/env python3
import json
from base64 import b64decode
import requests as rq
def rpc(method, data=None, post=False):
headers = {
@amalmurali47
amalmurali47 / view_all_scripts_in_page.js
Created June 28, 2018 09:45
Bookmarklet for viewing all scripts used in a page.
javascript:(function()%7Bs%3Ddocument.getElementsByTagName(%27SCRIPT%27)%3Btx%3D%27%27%3Bsr%3D%5B%5D%3Bfor(i%3D0%3Bi<s.length%3Bi%2B%2B)%7Bwith(s.item(i))%7Bt%3Dtext%3Bif(t)%7Btx%2B%3Dt%3B%7Delse%7Bsr.push(src)%7D%3B%7D%7D%3Bwith(window.open())%7Bdocument.write(%27<textarea id%3D"t">%27%2B(sr.join("%5Cn"))%2B"%5Cn%5Cn-----%5Cn%5Cn"%2Btx%2B%27</textarea><script src%3D"http://jsbeautifier.org/beautify.js"></script><script>with(document.getElementById("t"))%7Bvalue%3Djs_beautify(value)%3Bwith(style)%7Bwidth%3D"99%25"%3Bheight%3D"99%25"%3BborderStyle%3D"none"%3B%7D%7D%3B</script>%27)%3Bdocument.close()%3B%7D%7D)()%3B