Skip to content

Instantly share code, notes, and snippets.

View Sid110307's full-sized avatar
😐
Bored

Siddharth Praveen Bharadwaj Sid110307

😐
Bored
View GitHub Profile
@Sid110307
Sid110307 / hack.py
Created December 30, 2022 07:15
Camera Hack
#!/usr/bin/env python3
# Credit: ANGELSECURITYTEAM
import requests
import re
import colorama
colorama.init()
print("""
@Sid110307
Sid110307 / Python3ANSI.py
Created December 12, 2021 14:33
Quick help for ANSI Colors. Made with Python 3.
#!/usr/bin/env python3
for i in range(30, 37 + 1):
print("\033[%dm%d\t\t\033[%dm%d" % (i, i, i + 60, i + 60))
print("\033[39m\\033[49m - Reset color")
print("\\033[2K - Clear Line")
print("\\033[<L>;<C>H or \\033[<L>;<C>f - Put the cursor at line L and column C.")
print("\\033[<N>A - Move the cursor up N lines")
print("\\033[<N>B - Move the cursor down N lines")