Skip to content

Instantly share code, notes, and snippets.

View bolisettynihith's full-sized avatar
🎯
Focusing

B. Krishna Sai Nihith bolisettynihith

🎯
Focusing
View GitHub Profile
@bolisettynihith
bolisettynihith / InstalledStickerPackages.sql
Last active March 28, 2023 12:05
MacOSX Signal Desktop Parser and SQL queries to retrieve relevant forensic information.
-- User Sticker Packages
SELECT
datetime(sticker_packs.createdAt/1000,'unixepoch') AS "Created on",
datetime(sticker_packs.installedAt/1000,'unixepoch') AS "Installed on",
datetime(sticker_packs.lastUsed/1000, 'unixepoch') AS "Last Used",
sticker_packs.title as "Sticker Title",
sticker_packs.stickerCount as "No of stickers",
sticker_packs.status as "Status",
sticker_packs.downloadAttempts AS "No of Download Attempts",
#!/bin/bash
set -x
sudo apt-get update -y
sudo apt-get install ghex binwalk steghide gnupg stegsnow -y
sudo apt-get install libimage-exiftool-perl -y
sudo apt-get install pngcheck python3-pip ipython3 -y
sudo apt-get install fcrackzip pdfcrack -y
@bolisettynihith
bolisettynihith / bashuploader.py
Last active January 15, 2021 08:18
Python script to upload the files to bashupload.com and copy the resulted bashupload url to clipboard.
import sys
import subprocess
import pyperclip # pip3 install pyperclip
filename = sys.argv[1]
out = subprocess.getoutput("curl https://bashupload.com/{} --data-binary @{}".format(filename,filename))
ind = out.find("https")
url = out[ind::]
url = url.replace('\n','').replace('=','')
@bolisettynihith
bolisettynihith / tools.sh
Created January 13, 2021 08:19
Bash script file for downloading some of the CTF Steganography tools
#!/bin/bash
set -x
sudo apt-get update -y
sudo apt-get install exiftool strings ghex binwalk steghide zbar-tools zbarcam gnupg stegsnow -y
sudo apt install libimage-exiftool-perl -y
sudo apt install pngcheck python python-pip python3-pip python-scapy ipython ipython3 -y
sudo apt install snapd fcrackzip pdfcrack -y
sudo snap install john-the-ripper -y
sudo apt install ruby -y
@bolisettynihith
bolisettynihith / capture.py
Last active May 8, 2021 14:29
Python program for capturing network on specific interface and sending PCAP to your discord server
import os
import subprocess
import sys
import discord
import binascii
TOKEN = '<Redacted>'
CHANNEL_ID = <Redacted>
CHALL_PORT = ''