Skip to content

Instantly share code, notes, and snippets.

View bipinkrish's full-sized avatar
💥
exploring

Bipin bipinkrish

💥
exploring
View GitHub Profile
@bipinkrish
bipinkrish / main.py
Last active April 27, 2024 10:06
Telegram String Session Generator
from pyrogram import Client
def main():
print("Telegram String Session Generator\n")
APP_ID = int(input("Enter APP ID: "))
API_HASH = input("Enter API HASH: ")
print()
with Client("Link-Bypasser", api_id=APP_ID, api_hash=API_HASH, in_memory=True) as app:
session_str = app.export_session_string()
@bipinkrish
bipinkrish / psa.py
Created August 4, 2023 16:03
PSA Scrape
import requests
from bs4 import BeautifulSoup
import time
import re
CF = "" # cf_clearance cookie value for the psa site from your browser
URL = "" # psa url, ex: https://psa.wf/movie/corner-office-2022/
SLEEP_TIME = 5 # do not change this
def try2link_bypass(url):
@bipinkrish
bipinkrish / FindDay.py
Last active June 9, 2023 11:41
Find Day from Date
day = 15
month = 8
year = 1947
cen_odds = [0,5,3,1]
mon_odds = [0,3,3,6,8,11,13,16,19,21,24,26,29]
words = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]
rem = year%100
# century odds year odds month odds day + month odds
@bipinkrish
bipinkrish / checkAadhaarPanLink.py
Created March 24, 2023 05:09
Check Status of our Aadhaar Pan Link
@bipinkrish
bipinkrish / tictactoe.py
Created November 12, 2022 18:48
TicTacToe v/s AI or with 2 Players
import random
from os import system, name
############################################################################
# Clear function
def clear():
# for windows
if name == 'nt':
@bipinkrish
bipinkrish / igg.py
Last active October 14, 2022 12:30
IGG Games Bypass - get direct links from igg games site
import requests
from bs4 import BeautifulSoup
def decodeKey(encoded):
key = ''
i = len(encoded) // 2 - 5
while i >= 0:
key += encoded[i]
i = i - 2
@bipinkrish
bipinkrish / filecrypt.py
Last active October 6, 2023 04:42
Filecrypt Bypass - get direct links of filecrypt links
from bs4 import BeautifulSoup
import cloudscraper
import requests
import json
url = input("enter filecrypt link like https://filecrypt.co/Container/73F6D9D43B.html or html filepath like 75C3806BBE.html: ")
def getlinks(dlc):
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:103.0) Gecko/20100101 Firefox/103.0',
@bipinkrish
bipinkrish / usn.py
Last active January 9, 2023 15:59
It cracks Password for the site sims.sit.ac.in/parents/
import requests
import datetime
url = "https://sims.sit.ac.in/parents/index.php"
username = input("What is the USN you wish to attempt? ").upper()
year = int(input("Which Year? (only checks for that particular year) "))
month = int(input("Which Month to start from? (type 1 if you don't know where to start) "))
day = int(input("Which Day to start from? (type 1 if you don't know where to start) "))
print()
@bipinkrish
bipinkrish / guess.py
Created August 4, 2022 11:25
I Will Guess Your Number
# functions
def decimalToBinary(n):
return bin(n).replace("0b", "").zfill(size)
def binaryToDecimal(n):
return int(n,2)
def printNumbers(numList):
ele = 0