Skip to content

Instantly share code, notes, and snippets.

View Vishvesh-rao's full-sized avatar
😬
When in doubt, use brute force.

Vishvesh a.k.a Str1d3r Vishvesh-rao

😬
When in doubt, use brute force.
View GitHub Profile
@Vishvesh-rao
Vishvesh-rao / exploit.py
Last active September 4, 2021 22:34
inctfi 21
from Crypto.Util.number import GCD
from pwn import *
context.log_level = "Debug"
remote_ip,port = 'crypto.challenge.bi0s.in','1221'
io = remote(remote_ip,port)
re = lambda : io.recv()
ru = lambda a: io.recvuntil(a)
@Vishvesh-rao
Vishvesh-rao / jarvis.py
Last active November 19, 2020 19:43
Automated voice assistant for linux
############-MODULES-##############
import speech_recognition as sr
import pyautogui as pygui
from datetime import *
import subprocess as s
import urllib.request
from gtts import gTTS
import pyttsx3