Linux

Get your own back on spammers

The Spam Book generator will generate random addresses and other garbage when ever viewed. Written in PHP.

Get your own back on spammers, create fake contact lists:

<?
/*

Get your own back on spammers, use this light weight script to fill up spammers databases with junk

*/
$number_of_addresses	= 100;
$make_pretty			= true;
$use_names_in_email		= true;

$emailaddress_chars = "1234567890abcdefghijklmnopqrstuvwxyz";

Lowercase Directory Structure Recursively

We were required to lowercase all directories on a linux server, there was no easy solution so we needed to write one from scratch.

Syndicate content