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
# ________ ______ ____ ____ ______ | |
# / _/ __ \/ ____/ / __ )/ __ \/_ __/ | |
# / // /_/ / / / __ / / / / / / | |
# _/ // _, _/ /___ / /_/ / /_/ / / / | |
# /___/_/ |_|\____/ /_____/\____/ /_/ | |
# Author: Mauro Marano | |
# site: mauromarano.it | |
import socket |
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 | |
#TO INSTALL: wget https://goo.gl/DgqH0H; mv DgqH0H ubuntu_install.sh; chmod +x ubuntu_install.sh; sudo bash ubuntu_install.sh | |
function say(){ | |
clear | |
echo $1 | |
sleep $2 |
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
clear | |
echo ' | |
____ ______ __ __ __ __ __ __ _______ ____ | |
/ __ \/ ___/ |/ / / /_ ____ ____ / /_____ _/ /_ / /__ / / / / ___// __ ) | |
/ / / /\__ \| / / __ \/ __ \/ __ \/ __/ __ `/ __ \/ / _ \ / / / /\__ \/ __ | | |
/ /_/ /___/ / | / /_/ / /_/ / /_/ / /_/ /_/ / /_/ / / __/ / /_/ /___/ / /_/ / | |
\____//____/_/|_| /_.___/\____/\____/\__/\__,_/_.___/_/\___/ \____//____/_____/ ' | |
echo '' |
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
<?php | |
/* | |
// ============================== | |
// = Realizzato da Mauro Marano = | |
//= Sito web mauromarano.it = | |
//= email [email protected] = | |
// ============================== |
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
#! /usr/bin/env python | |
#-*- coding: utf-8 -*- | |
# HOW TO: | |
# set the top class variables | |
# crontab -e and add the command to auto-lounch this command each hour: 1 * * * * * python spider.py | |
from bs4 import BeautifulSoup | |
import requests | |
import re |
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/sh | |
#################### | |
##### HOW TO USE#### | |
#################### | |
# 1) crontab -e | |
# 2) paste: 30 21 * * * sh updater.sh | |
# 3) chmod +x updater.sh |
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 | |
###################################################################### | |
#This is an example of using getopts in Bash. It also contains some | |
#other bits of code I find useful. | |
#Author: Linerd | |
#Website: http://tuxtweaks.com/ | |
#Copyright 2014 | |
#License: Creative Commons Attribution-ShareAlike 4.0 | |
#http://creativecommons.org/licenses/by-sa/4.0/legalcode |
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 | |
########################################################################### | |
# AUTHOR: Mauro Marano | |
# SITE: mauromarano.it/com | |
# Questo script serve per tenere organizzato il desktop | |
# Una volta impostate le variabili lui andrà a creare delle cartelle | |
# Per ogni tipo di file specificato. | |
# La cosa migliore è farlo girare con un cronjob. | |
# crontab -e |
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/sh | |
# Download the top used passwords from passwordrandom.com | |
#Set Script Name variable | |
SCRIPT=`basename ${BASH_SOURCE[0]}` | |
URL="http://www.passwordrandom.com/most-popular-passwords/page/" | |
OUTPUT="top_password.txt" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.