This is the list I use in order to keep track of my starred repos and their purpose
This file contains 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
#!/usr/bin/env bash | |
# Script to launch reaver/PixieWPS attacks with minimal user interaction. For script kiddies, by a script kiddie | |
# Copyright (C) 2018 Raul Olmedo - All Rights Reserved | |
# Do whatever you want with this | |
# Last revised 6/4/2018 | |
FLAG_END=0 | |
airmon-ng start wlan0 | |
echo "Listing nearby networks, please wait 10 seconds" | |
timeout 10s wash -i wlan0mon > wps_all_networks.txt |
This file contains 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
#!/usr/bin/env zsh | |
############################################################################# | |
# # | |
# Begin SSH key generation # | |
# # | |
############################################################################# | |
echo "Creating an SSH key..." | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" |
Pre requisitos: USB formateado en NTFS Live CD de alguna distro de linux (probe con macOS, pero no parece funcionar) f680 v2 o v4 con version de firmware T18 o anterior (no se si funcionará con futuras versiones)
Al lio:
Formateamos el USB en NTFS y desde linux creamos un symlink con el siguiente comando: ln -s /var/samba/lib/smb.conf .
Lo enchufamos al USB del router y nos metemos en la interfaz web, en el apartado de aplicaciones nos aseguramos de que el servidor samba este activado y funcionando, ahi mismo encontraremos las instrucciones para conectarnos
This file contains 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
struct MediaContainerModel<Type: Decodable & MediaContainerizable>: Decodable { | |
var title1: String | |
var content: [Type] | |
struct CodingKeys: CodingKey { | |
init?(intValue: Int) { | |
return nil | |
} | |
init(stringValue: String) { |