Skip to content

Instantly share code, notes, and snippets.

View ShayekhBinIslam's full-sized avatar

Shayekh Bin Islam ShayekhBinIslam

  • Dhaka, Bangladesh
View GitHub Profile
#! /bin/zsh
sudo apt update
# Snap
# sudo apt install snapd
# SSH
sudo apt-get remove --purge openssh-server
sudo apt-get install openssh-server
sudo service ssh restart
sudo service ssh status
#! /bin/bash
# https://portswigger.net/burp/releases/professional-community-2022-8-1
chmod +x burpsuite_community_linux_v2022_8_1.sh
./burpsuite_community_linux_v2022_8_1.sh
# sudo apt install git
git clone https://github.com/labcif/autopsy-installer
# cp jdk-8u341-linux-x64.tar.gz autopsy-installer
# cp autopsy-4.11.0.zip autopsy-installer
cd autopsy-installer
@ShayekhBinIslam
ShayekhBinIslam / pretty_print_json.py
Last active April 30, 2020 10:07
Pretty Print Json
import json
def pretty_print_json(data, indent=2):
print(json.dumps(json.loads(data), indent=indent))