load without any analysis (file header at offset 0x0): r2 -n /path/to/file
- analyze all:
aa
- show sections:
iS
- list functions:
afl
- list imports:
ii
- list entrypoints:
ie
- seek to function:
s sym.main
Any distribution of architecture as easy as possible.
# Install docker latest version from original website
curl -fsSL https://get.docker.com/ | sh
# Adding your user to the "docker" group
sudo usermod -aG docker $(whoami)
## you will have to log out and back in for this to take effect!
Le chiffrement RSA est un chiffrement asymétrique.
Oumar voudrait pouvoir correspondre secrètement avec Aminata , sans que Sarah ne puisse lire les messages que Aminata lui envoie. Oumar génère un jeu de deux clés de chiffrement:
<?php | |
/** | |
* Class RD_Text_Extraction | |
* | |
* Example usage: | |
* | |
* $response = RD_Text_Extraction::convert_to_text($path_to_valid_file); | |
* | |
* For PDF text extraction, this class requires the Smalot\PdfParser\Parser class. |
Cisco has released Cisco Packet Tracer 7.3.0, a specific, powerful and free program that Cisco Networking Academy has developed for its students.
Cisco Packet Tracer 7.3 has many new features. The redesigned theme of Packet Tracer 7.3.0 looks great.
Users who want to download Cisco Packet Tracer 7.3.0 can register with the Netacad website and download the program to their computers.
# Author: @chaignc | |
# Two commands in this script: | |
# record2discord => send all typed bash command to your discord channel, see bellow for the blacklist | |
# last2discord => send the last typed command to your discord channel. | |
DISCORD_WEBHOOK_URL="Your_Discord_WebHook_URL" # UPDATE this with your web hook (take 2 minutes and read about this online) | |
_send2discord() { | |
# Blacklist some commands | |
[[ ! $BASH_COMMAND =~ .*autojump.* ]] && \ |
app.alert("XSS") |
echo "Blind SSRF testing - append to parameters and add new parameters @hussein98d" | |
echo "Usage: bash script.sh domain.com http://server-callbak" | |
echo "This script uses https://github.com/ffuf/ffuf, https://github.com/lc/gau, https://github.com/tomnomnom/waybackurls" | |
if [ -z "$1" ]; then | |
echo >&2 "ERROR: Domain not set" | |
exit 2 | |
fi | |
if [ -z "$2" ]; then | |
echo >&2 "ERROR: Sever link not set" | |
exit 2 |
echo "Blind SSRF testing - append to parameters and add new parameters @hussein98d" | |
echo "Usage: bash script.sh domain.com http://server-callbak" | |
echo "This script uses https://github.com/ffuf/ffuf, https://github.com/lc/gau, https://github.com/tomnomnom/waybackurls" | |
if [ -z "$1" ]; then | |
echo >&2 "ERROR: Domain not set" | |
exit 2 | |
fi | |
if [ -z "$2" ]; then | |
echo >&2 "ERROR: Sever link not set" | |
exit 2 |
#By: Zeyad Azima (https://github.com/Zeyad-Azima) | |
# install: | |
## pip3 install requests | |
## pip3 install shodan | |
# Run: python3 shodrecon.py target | |
import shodan, requests, json, threading, sys | |
# Your Api key here | |
API_KEY = "" |