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 / 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 / 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 / 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
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
---
Name: NamLee.Net
Key: fcc8357835cd7ef472
---
Charles is somewhat similar to Burpsuite
@directentis1
directentis1 / termux.md
Last active June 12, 2023 09:51
Termux for Android
@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,