The txt file contains a list of legit and scam gambling websites.
The file is not active maintained anymore but i put some examples images to detect scam on this gist.
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 | |
if (2 > $argc) { | |
$basename = basename(__FILE__); | |
echo " | |
Usage: $basename PORNHUB_URL | |
Need mcurl.sh to download video. | |
Notice: Cannot run on Mac OSX due to mcurl.sh compatible. |
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 | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
sudo apt-get install -y git htop tmux transmission-cli transmission-daemon | |
sudo apt-get -y update | |
sudo /etc/init.d/transmission-daemon stop |
This should help you get Sendmail installed with basic configuration on Ubuntu.
- If sendmail isn't installed, install it:
sudo apt-get install sendmail
- Configure
/etc/hosts
file:nano /etc/hosts
- Make sure the line looks like this:
127.0.0.1 localhost yourhostname
- Run Sendmail's config and answer 'Y' to everything:
sudo sendmailconfig
- Restart apache
sudo service apache2 restart