Skip to content

Instantly share code, notes, and snippets.

View fadhilsaheer's full-sized avatar
🇵🇸
Free Palestine!

Fadhil fadhilsaheer

🇵🇸
Free Palestine!
View GitHub Profile
@fadhilsaheer
fadhilsaheer / gdino-gameover-hack.md
Created January 11, 2022 02:09
Google dino game over script, where user get highscore without getting knocked

Original Game Over Script

function() {
    this.playSound(this.soundFx.HIT);
    vibrate(200);

    this.stop();
    this.crashed = true;
    this.distanceMeter.achievement = false;
@fadhilsaheer
fadhilsaheer / poison_apk.md
Last active April 5, 2023 05:31
Hack android devices by poisoning APK files

POISON ANDROID APPS 🐍

Hack android by poisoning apps 📱

Add malware to original app (ex: Instagram, flappybird)

when user runs the app, it acts and works like a normal app, but in a nutshell we have full control over the target's phone 👨‍💻

❗DO NOT USE THIS FOR ILLEGAL STUFF❗

@fadhilsaheer
fadhilsaheer / instagram_osint.md
Created June 7, 2021 16:05
Instagram Open Source Intelligence 👨‍💻

INSTAGRAM OSINT 🕵️‍♀️

Analyze and gather information about an Instagram user.

This data is publicly available for all

We are gonna use a tool named OSINTGRAM which is a free, open source tool . To get started make sure you have following requirements .

REQUIREMENTS

@fadhilsaheer
fadhilsaheer / hack_android.md
Last active December 28, 2022 09:46
Hack android devices using METASPLOIT 👨‍💻

HACK ANDROID 📱

H4ck Android using METASPLOIT 🐱‍💻

HACK THE WORLD 🌎 LEGALLY OF COURSE 👩‍⚖️


I assume you have a decent linux distro for hacking >

@fadhilsaheer
fadhilsaheer / clear_terminal.py
Created May 16, 2021 02:43
clear terminal according to os
import platform
import os
"""
Windows is the only major os to use `cls` to clear terminal and other for sure use `clear`
so we could check the platform and execute command accordingly
"""
def clear():
if platform.system() == "Windows":
@fadhilsaheer
fadhilsaheer / hack_windows.md
Last active August 25, 2021 04:08
lets hack into windows 👨‍💻

H4CK WINDOWS 🕵️‍♂️

H4ck Windows using METASPLOIT 🐱‍💻

DO NOT HACK ANYONE UNTILL YOU HAVE PERMISSION ❗


I assume you have a decent linux distro for hacking