上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 273 下一页
摘要: Nitrokod 挖矿软件感染了 11 个国家/地区的系统 发布于:2022-08-30 据外媒报道,Check Point 研究人员发现了一个名为 Nitrokod 的恶意挖矿软件活动,自2019年以来,该活动感染了 11 个国家 地区的系统。研究分析表示在初始软件安装后,攻击者将感染过程延迟了数 阅读全文
posted @ 2023-03-06 17:21 bonelee 阅读(95) 评论(0) 推荐(0)
摘要: 找到my.ini, 修改u secure_file_priv = '' 然后保存并且退出。 重启mysql 正确的解决方法是: 搜索“服务”并进入: 下拉找到Mysql 左上角处可以进行重启动。如果以后想要通过命令行来重启,那么: 可以看到我的服务名应该是mysql57而不是mysql。 selec 阅读全文
posted @ 2023-03-03 17:00 bonelee 阅读(324) 评论(0) 推荐(0)
摘要: 《逆向工程核心原理》学习笔记1 写在前面,因为用的是一个windows 桌面程序,其调用的api还是非常复杂的,但是main函数却非常简单。使用IDA反编译就知道: ; int __cdecl main(int argc, const char **argv, const char **envp) 阅读全文
posted @ 2023-03-02 11:26 bonelee 阅读(274) 评论(0) 推荐(0)
摘要: 今天面试一个小伙问旋转数组的二分搜索,https://leetcode.cn/problems/search-in-rotated-sorted-array 我自己先写了一份代码如下,是不是觉得很丑陋,重复代码较多? class Solution: def search(self, nums: Li 阅读全文
posted @ 2023-02-27 20:32 bonelee 阅读(41) 评论(0) 推荐(0)
摘要: 下载链接:https://s.threatbook.com/report/file/f4c319e43296ab323615ac4bd4b7601991218ecb6d6043b1c040a96f1a33f14f #!/bin/sh localgo() { myhostip=$(curl -sL i 阅读全文
posted @ 2023-02-21 20:02 bonelee 阅读(168) 评论(0) 推荐(0)
摘要: Azure-Sentinel/Detections/CommonSecurityLog/Fortinet-NetworkBeaconPattern.yaml RawBlame id: 3255ec41-6bd6-4f35-84b1-c032b18bbfcb name: Fortinet - Beac 阅读全文
posted @ 2023-02-16 11:13 bonelee 阅读(103) 评论(0) 推荐(0)
摘要: 请生成rundll32.exe 可以运行的打开计算器程序的dll C++代码,并给出编译代码和运行方式。 #include <windows.h> BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpRe 阅读全文
posted @ 2023-02-15 16:20 bonelee 阅读(104) 评论(0) 推荐(0)
摘要: Converting Boolean-Logic Decision Trees to Finite State Machines for simpler, high-performance detection of cybersecurity events 将布尔逻辑决策树转换为有限状态机 用于更简 阅读全文
posted @ 2023-02-03 16:51 bonelee 阅读(94) 评论(1) 推荐(0)
摘要: Python 求两个 list 的交集、并集、差集、和集 此处是对 list 进行运算,而非 set。 import collections from functools import reduce a = [1,2,3,3,4] b = [3,3,4,5,6] aa = collections.C 阅读全文
posted @ 2023-01-31 17:12 bonelee 阅读(481) 评论(0) 推荐(0)
摘要: 总结算法模板: from typing import ( List, ) class Solution: """ @param a: an integer array @param v: an integer array @param m: An integer @return: an array 阅读全文
posted @ 2023-01-25 17:06 bonelee 阅读(173) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 273 下一页