Skip to content

Instantly share code, notes, and snippets.

View Diaa-Hassan's full-sized avatar
🧙

Diaa Hassan Diaa-Hassan

🧙
View GitHub Profile
@Diaa-Hassan
Diaa-Hassan / pull-them-all.sh
Created August 14, 2023 10:22
pull-them-all.sh
git clone https://github.com/intellaworld/Orchestration.git &&
git clone https://github.com/intellaworld/ms01-speaker.git &&
git clone https://github.com/intellaworld/intella-voice-be.git &&
git clone https://github.com/intellaworld/intella-gpt.git &&
git clone https://github.com/intellaworld/intella-voice-admin.git &&
git clone https://github.com/intellaworld/intella-voice-user.git &&
git clone https://github.com/intellaworld/intella-payment-gateway.git
Assetnote is a new subdomains supervision tools which allow for real-time notifications about
newlly added subdomains
The tool is especially usefull for bug bounty
As I'm starting playing in bug bounties the tool seems extremelly apealing
The project can be found at https://github.com/infosec-au/assetnote
# installation #
/** My VPS is runing Ubuntu LTS 14.04 **/
@Diaa-Hassan
Diaa-Hassan / gf-and-gau-automate.sh
Created June 29, 2022 03:44 — forked from gh0sh/gf-and-gau-automate.sh
Simple script to look for juicy endpoints with gf and gau
#!/usr/bin/env bash
#
# Requirements
# - Golang (for complete bug bounty tools, clone this https://github.com/x1mdev/ReconPi)
# - gau (go get -u github.com/lc/gau)
# - gf (go get -u github.com/tomnomnom/gf)
# - Gf-Patterns (https://github.com/1ndianl33t/Gf-Patterns) - Read the README.md for how to copy json file to ~/.gf/
cd ~/.gf
ls *.json > ~/patterns
twitter dork: https://mobile.twitter.com/i/events/1417062625997991936
https://twitter.com/nil0x42/status/1533094473067995137
js enum https://www.youtube.com/watch?v=IsSWbVHk11M
https://www.mindmeister.com/1736437018?t=SEeZOmvt01
https://workbook.securityboat.in/resources/web-app-pentest/business-logic-vulnerabilities/2fa-bypass
Blockchain
https://hash.ai/@b/uniswap
https://medium.com/immunefi/hacking-the-blockchain-an-ultimate-guide-4f34b33c6e8b
https://github.com/ruby/webrick/blob/master/lib/webrick/httprequest.rb }9
https://stat545.com/character-encoding.html
@Diaa-Hassan
Diaa-Hassan / port-scan.sh
Created June 29, 2022 03:37 — forked from priyanshus/port-scan.sh
NMAP scan for a list of subdomains
#!/bin/bash
#Performs port scan using nmap
print_usage() {
cat << _EOF_
Utility to scan open ports. Can be used to scan ports for a domain or a list of domains specified in a file.
Example Usage:
-h, --help Show brief help
-d, --domain Domain name or ip to scan
-f, --file Spefify a file containing domains/IPs to scan
@Diaa-Hassan
Diaa-Hassan / scanio.sh
Created June 29, 2022 03:23 — forked from haccer/scanio.sh
PoC script to mass-locate vulnerable subdomains using results from Rapid7's Project Sonar
#!/bin/bash
# Usage : ./scanio.sh <save file>
# Example: ./scanio.sh cname_list.txt
# Premium
function ech() {
spinner=( "|" "/" "-" "\\" )
while true; do
for i in ${spinner[@]}; do
echo -ne "\r[$i] $1"
@Diaa-Hassan
Diaa-Hassan / randomizeip.sh
Created June 29, 2022 03:22 — forked from yehgdotnet/randomizeip.sh
Randomize Hostname and Renew IP
#!/bin/bash
echo +++++++++++++++++++++++++++++++++++++++++
echo Randomize Hostname and Renew IP
echo by Aung Khant, http://yehg.net
echo +++++++++++++++++++++++++++++++++++++++++
echo
########################################################
sleep 1
@Diaa-Hassan
Diaa-Hassan / goscreenshot.go
Created June 29, 2022 03:22 — forked from yehgdotnet/goscreenshot.go
goscreenshot.go
//https://golangcode.com/headless-chrome-screenshot/
package main
import (
"context"
"io/ioutil"
"log"
"github.com/chromedp/cdproto/page"
# https://twitter.com/brsn76945860/status/1171233054951501824
pip install mmh3
-----------------------------
# python 2
import mmh3
import requests
response = requests.get('https://cybersecurity.wtf/favicon.ico')
favicon = response.content.encode('base64')
██████╗ ███████╗ ██████╗ ██████╗ ███╗ ██╗
██╔══██╗██╔════╝██╔════╝██╔═══██╗████╗ ██║
██████╔╝█████╗ ██║ ██║ ██║██╔██╗ ██║
██╔══██╗██╔══╝ ██║ ██║ ██║██║╚██╗██║
██║ ██║███████╗╚██████╗╚██████╔╝██║ ╚████║
╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝
@intx0x80