Skip to content

Instantly share code, notes, and snippets.

View directentis1's full-sized avatar
💭
Super busy!

directentis1

💭
Super busy!
View GitHub Profile
@directentis1
directentis1 / stockfish-interface.txt
Created May 4, 2023 10:39 — forked from aliostad/stockfish-interface.txt
stockfish - Description of the universal chess interface (UCI)
COPIED FROM https://build.opensuse.org/package/view_file/games/stockfish/stockfish-interface.txt?expand=1
Description of the universal chess interface (UCI) April 2006
=================================================================
* The specification is independent of the operating system. For Windows,
the engine is a normal exe file, either a console or "real" windows application.
* all communication is done via standard input and output with text commands,
@directentis1
directentis1 / termux.md
Last active June 12, 2023 09:51
Termux for Android
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
---
Name: NamLee.Net
Key: fcc8357835cd7ef472
---
Charles is somewhat similar to Burpsuite
@directentis1
directentis1 / httptoolkit_installer.sh
Last active July 1, 2023 04:37
HttpToolkit for Linux Installer Script
#!/usr/bin/bash
httptoolkit_latest_release_url=$(curl -s -H "Accept: application/vnd.github+json" https://api.github.com/repos/httptoolkit/httptoolkit-desktop/releases/latest | grep 'browser_' | cut -d\" -f4 | grep '.deb') && wget "$httptoolkit_latest_release_url" -P /home/ubuntu/apps/ && sudo dpkg -i /home/ubuntu/apps/*.deb && rm /home/ubuntu/apps/*.deb
@directentis1
directentis1 / postman_installer.sh
Created July 1, 2023 09:45
The script use to install postman for Linux
#!/usr/bin/bash
cd /home/ubuntu/apps && wget https://dl.pstmn.io/download/latest/linux_64 -O postman-linux-x64.tar.gz && tar -xf postman-linux-x64.tar.gz && rm postman-linux-x64.tar.gz && cd /home/ubuntu/apps/Postman
@directentis1
directentis1 / nmap_downloader
Last active July 7, 2023 03:28
the script to download latest version of nmap from its primarily website
#!/usr/bin/bash
# Fetch the latest version number from the Nmap website
latest_version=$(curl -s https://nmap.org/dist/ | grep -oP 'nmap-\K([\d\.]+)' | head -n 1)
# Create a directory to store the downloaded RPMs
mkdir -p nmap_rpms
cd nmap_rpms
# Download the latest versions of Nmap, Nping, and Ncat
@directentis1
directentis1 / nmap_debian_installer
Last active July 7, 2023 08:35
convert rpm packages from its website to debian format and install it using apt or apt-get
#!/usr/bin/bash
# Install conversion tool
sudo apt-get install alien -yqq --no-install-recommends
# Convert npm packages to debian packages
cd nmap_rpms
sudo alien *.rpm
# Installing them with apt/apt-get
@directentis1
directentis1 / httpie_installer.sh
Created July 12, 2023 12:58
This script use to install latest HTTPie from their github repository.
#!/bin/bash
httpie_latest_release_url=$(curl -s -H "Accept: application/vnd.github+json" https://api.github.com/repos/httpie/desktop/releases/latest | grep 'browser_' | cut -d\" -f4 | grep '.AppImage' | grep -v "arm64") && wget "$httpie_latest_release_url" -O httpie_latest.AppImage && chmod 755 httpie_latest.AppImage \
&& ./httpie_latest.AppImage --appimage-extract \
&& mv squashfs-root /home/ubuntu/apps/httpie \
&& rm -f httpie_latest.AppImage
@directentis1
directentis1 / networkminer_installer.sh
Created July 14, 2023 16:07
Download and configure network miner for Linux x86_64
#!/bin/bash
# Install necessary packages
sudo apt install mono-devel tcpdump netsniff-ng netcat socat -yqq
# Install NetworkMiner
wget https://www.netresec.com/?download=NetworkMiner -O /tmp/nm.zip
sudo unzip /tmp/nm.zip -d /home/ubuntu/apps
sudo rm -r /tmp/nm.zip
cd /home/ubuntu/apps/NetworkMiner*