This file list interesting link related to computer security (tools, info, tuto, interesting sites, ressources)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int led_pin = 1; | |
| String code="-.-.-.--.--.--.-.-.-"; | |
| int tl=500; | |
| int pause=tl*2; | |
| void setup(){} | |
| void loop() { | |
| for(int i=0;i<code.length();i++) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Based on https://github.com/swisskyrepo/PayloadsAllTheThings | |
| This needs to be adapted to exploit a Docker container. Replace the IP with your own. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/bin/bash | |
| function info(){ | |
| local -r message="${1}" | |
| echo -e "\033[1;36m[+] ${message}\033[0m" 2>&1 | |
| } | |
| function check_sudo_and_run() { | |
| # Vérifier si l'utilisateur a des droits sudo | |
| if sudo -n true 2>/dev/null; then |
OlderNewer