Trolling Twitter followers with .htaccess & PHP

adamgreenough

Adam Greenough

Posted on September 23, 2020

Trolling Twitter followers with .htaccess & PHP

Thought this was pretty entertaining! David Sandberg trolls his Twitter followers by using .htaccess to spoof an image file to return a PHP script that programmatically returns an image based on the visitor IP address.

Here's the code from the Tweet for anybody wanting to try anything similar:

.htaccess

RewriteEngine on
Redirect /whatisthis.jpg /whatisthis.php

whatisthis.php

<?php
function getIMG() {
    // Get last digit of IP address
    $numb = substr($_SERVER['REMOTE_ADDR'], -1);

    // Return a different image based on IP
    if($numb == 1 || $numb == 2) {
        header("Location: 1.jpg");
    } elseif($numb == 3 || $numb == 4) {
        header("Location: 2.jpg");
    } elseif($numb == 5 || $numb == 6) {
        header("Location: 3.jpg");
    } elseif($numb == 7 || $numb == 8) {
        header("Location: 4.jpg");
    } elseif($numb == 9 || $numb == 0) {
        header("Location: 5.jpg");
    }
}

getIMG();
?>
πŸ’– πŸ’ͺ πŸ™… 🚩
adamgreenough
Adam Greenough

Posted on September 23, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related