Skip to content

Instantly share code, notes, and snippets.

@iomoath
iomoath / install-squid.sh
Last active March 23, 2023 01:46 — forked from bl4ck5un/install-squid.sh
Install a basic squid proxy with authentication on Centos 6 x64. Just modify the variables at the top and run the script on a clean system.
#!/bin/sh
PROXY_USER=user-name
PROXY_PASS=user-pass
PROXY_PORT=5061
# Clear the repository index caches
yum clean all
# Update the operating system
@iomoath
iomoath / key.md
Created December 30, 2021 23:12
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

@iomoath
iomoath / twitter-tweet.py
Created December 23, 2021 23:51 — forked from BitTheByte/twitter-tweet.py
Script to tweet like the Official Twitter Application with 2fa support
# -*- coding: utf-8 -*-
from base64 import b64decode,b64encode
from urllib.parse import quote,parse_qs,urlsplit,urlparse
from random import randint
from bs4 import BeautifulSoup
import calendar
import requests
import hashlib
import base64
Java.perform(function() {
console.log(`\n[!] Frida Basic Hooks started
[Info]
[Author] BitTheByte (Ahmed Ezzat)
[GITHUB] https://gist.github.com/BitTheByte/19e5a08fd112275e8d5eeb269c490a09
[Version] v0.1
[Features]
* Enable Debugging Mode for webview(s)
* Root Detection Bypass
@iomoath
iomoath / Custom-AES-GCM.cs
Created November 5, 2021 21:43 — forked from HirbodBehnam/Custom-AES-GCM.cs
A fucked up way to encrypt files with AES-GCM, C# and bouncy castle
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using Org.BouncyCastle.Crypto.Engines;
using Org.BouncyCastle.Crypto.Modes;
using Org.BouncyCastle.Crypto.Parameters;