.htaccess 및 PHP로 트위터 팔로워 트롤링
데이비드 F. 샌드버그
@포니스매셔
트롤 튜토리얼 twitter.com/ponysmasher/st…
오후 21:21 - 2020년 9월 22일
데이비드 F. 샌드버그
@포니스매셔
나는 이것을 알아야 할 것입니다. 그러나 누구는 이것이 어떤 영화(?)에서 나온 것인지 말해 줄 수 있습니다: https://t.co/Fpc6GmSmzg
163
1275년
비슷한 것을 시도하려는 사람을 위한 트윗의 코드는 다음과 같습니다.
.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();
?>
Reference
이 문제에 관하여(.htaccess 및 PHP로 트위터 팔로워 트롤링), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/adamgreenough/trolling-twitter-followers-with-htaccess-php-5175텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)