Skip to content

Instantly share code, notes, and snippets.

View AnkanDas22's full-sized avatar
🎃
Want Halloween

Ankan Das AnkanDas22

🎃
Want Halloween
  • India
View GitHub Profile
@AnkanDas22
AnkanDas22 / HackTheBoxInviteCode.py
Last active June 15, 2018 15:34
Easy way to get hackthebox invites
import base64
import requests
code=base64.b64decode((requests.post("https://www.hackthebox.eu/api/invite/generate").text)[29:].split('"')[0])
print(code)
@AnkanDas22
AnkanDas22 / cp_password.js
Last active June 10, 2018 23:28
password script for cyberpunk 2077
/*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */
function typewriter(e, t) {
e || (e = 0),
t || (t = 0);
var n = lines.eq(e)
, r = n.text();
t < texts[e].length && (n.text(r + texts[e].charAt(t)),
t++,
t >= texts[e].length && allCount > e && (e++,
t = 0),
@AnkanDas22
AnkanDas22 / RedditSteamKeys
Created March 5, 2018 18:34
Reddit Steam Key Stealer.
from fake_useragent import UserAgent
import praw, re, os, time
def userAgent():
ua = UserAgent()
return ua.random
def checkRepeat(text):
count = {}
returnlist = []
@AnkanDas22
AnkanDas22 / ButtonSmasher
Created March 5, 2018 18:10
Repeat DirectInput keypressses.
import ctypes
import time
SendInput = ctypes.windll.user32.SendInput
# C struct redefinitions
PUL = ctypes.POINTER(ctypes.c_ulong)
class KeyBdInput(ctypes.Structure):
_fields_ = [("wVk", ctypes.c_ushort),
("wScan", ctypes.c_ushort),