Jump to content
APIx00E00

DuBrute Script

Recommended Posts

off off :)

Daca anulezi un camp anulez tot campul nu doar schimbi o linie

Uite aici

<?php

$ips = $_POST['ips'];

$users = $_POST['users'];

function rand_string( $length ) {

$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";

$size = strlen( $chars );

for( $i = 0; $i < $length; $i++ ) {

$str .= $chars[ rand( 0, $size - 1 ) ];

}

return $str;

}

$key = rand_string(8) . ".txt";

$fh = fopen($key, 'w') or die("can't open file");

$ips=explode("\n", $ips);

$users=explode("\n", $users);

foreach($ips as $ip){

foreach($users as $user){

$string= $ip.":".$user;

$string = preg_replace('/\s+/', '', $string);

fwrite($fh, $string);

fwrite($fh, " \r\n"); }}

$print = "Done! Poti sa descarci fisierul sursa si sa il adaugi in dubrute <a href=http://hiphopize.me" . $key . " >Click</a>";

echo $print;

?>

HTML

<html>

<head><title>RDP_SRCBuilder</title></head><center>

<body><form method="POST" action=create.php>Ips:<textarea id="ips" name="ips" cols="40" rows="15"></textarea>Users:<textarea id="users" name="users" cols="40" rows="15"></textarea><br><input type="submit" value="Show them all!"></center><br>

</body></html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...