Skip to content

Instantly share code, notes, and snippets.

View IHEfty's full-sized avatar

IH Efty IHEfty

View GitHub Profile

BurpSuite Loader

This project provides an easy setup for launching BurpSuite Pro using burploader.jar. Follow the instructions below to get started and troubleshoot any issues.

Note: This project is not my main focus. I am sharing it because I enjoy helping others, and it’s my passion to make things easier for people.

Image 00
@IHEfty
IHEfty / GeoDial.py
Created October 30, 2024 15:53
GeoDial suggests a combination of geography (location) and dialing (phone information). It's concise, catchy, and clearly conveys the purpose of tracking phone number locations and carrier information.
import phonenumbers as ponu
from phonenumbers import geocoder, carrier
from colorama import Fore, Style, init
init(autoreset=True)
def track_phone_number():
phone_number = input(Fore.LIGHTBLUE_EX + "Enter the phone number> ")
if not phone_number.startswith('+'):
@IHEfty
IHEfty / hangman.py
Created October 28, 2024 15:52
Simple Hangman Game...:)
import random
words = ["python", "hangman", "challenge", "programming", "computer"]
def choose_word():
return random.choice(words)
def display_hangman(tries):
stages = [
"""

Chrome Dino Game Hacks

This guide explores hacks for Chrome’s T-Rex Dinosaur Game. Typically, this game appears in Google Chrome when there’s no internet connection. Follow the instructions below to modify the game for unlimited lives, increased speed, and more—all using the Chrome Console.


Getting Started

If you can’t access the No Internet page, open a new tab and enter chrome://dino to start the game.

Basic Controls:

@IHEfty
IHEfty / Calc.py
Last active October 25, 2024 06:04
Simple Python calculator program.
import tkinter as tk
class Calculator:
def __init__(self, root):
self.root = root
self.root.title("Calculator By IH Efty")
self.root.geometry("390x600")
self.root.resizable(0, 0)
self.expression = ""
@IHEfty
IHEfty / Explorer.td
Last active October 24, 2024 17:44
Tender Explorer is a graphical file browser built using the Tender. It provides a simple, intuitive interface for navigating and exploring the file system. The explorer displays directories and files with appropriate icons, allows users to scroll through contents, and click to open folders—all within a resizable window.
import "canvas"
import "fs"
import "image"
import "path"
w := 600
h := 400
scroll_offset := 0 // Track vertical scroll position
line_height := 24 // Height of each line for drawing text
@IHEfty
IHEfty / 23CodeServer.py
Created October 24, 2024 17:15
23CodeServer is a simple local HTTP server that serves files and generates a QR code for easy access to the server on your network. It includes colorful console output and opens the server URL in your default web browser automatically. Built-in features include handling favicon requests and error handling for missing files.
import http.server
import socketserver
import qrcode
import webbrowser
import socket
import colorama
colorama.init()
class MyRequestHandler(http.server.SimpleHTTPRequestHandler):