- CS 插件 https://github.com/stars/Ridter/lists/cobaltstrike-plugins
- 权限对抗(提权/免杀) https://github.com/stars/Ridter/lists/weaponized
- 后渗透工具 https://github.com/stars/Ridter/lists/post-exploitation
- 代码审计 https://github.com/stars/Ridter/lists/%E4%BB%A3%E7%A0%81%E5%AE%A1%E8%AE%A1
- 横向移动(域相关) https://github.com/stars/Ridter/lists/active-directory-domain
- 漏洞利用 https://github.com/stars/Ridter/lists/vulnerabilities
- C2 https://github.com/stars/Ridter/lists/command-and-control
- 云攻防 https://github.com/stars/Ridter/lists/cloud
- LLM 大模型 https://github.com/stars/Ridter/lists/llm
- AI Agent(安全应用) https://github.com/stars/Ridter/lists/ai-agent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| /** | |
| * Typora macOS 激活脚本 | |
| * 原理:替换二进制中的 RSA 公钥,用自己的私钥签名生成 Activation Token | |
| */ | |
| const crypto = require('crypto'); | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const { spawnSync } = require('child_process'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /*********************************** | |
| *威盾PHP加密专家解密算法 By:zhrt | |
| *http://www.oicto.com | |
| *2013.12.31 | |
| *把该程序放到网站程序的目录下,即可针对文件所在目录及子目录的文件进行破解,源加密文件被更改名为.bak.php. | |
| ***********************************/ | |
| //decode("Image.class.php"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| echo=echo | |
| for cmd in echo /bin/echo; do | |
| $cmd >/dev/null 2>&1 || continue | |
| if ! $cmd -e "" | grep -qE '^-e'; then | |
| echo=$cmd | |
| break | |
| fi | |
| done |
这里选择安装 docker-ce 版本
根据不同的平台请参考官方教程
https://docs.docker.com/engine/install/
另外安装docker过程可能受国内网络环境影响会有点慢
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <title>Get Real IP</title> | |
| </head> | |
| <h3>你的代理IP是:<div id=1></div></h3> | |
| <h3>你的真实IP是:<div id=2></div></h3> | |
| <script> | |
将 OpenWrt 设置为交换机 / AP 模式 :https://www.moewah.com/archives/4977.html | https://archive.ph/zoncl | https://web.archive.org/web/20220930113530/https://www.moewah.com/archives/4977.html
能够将路由器当无线AP使,同时有线网口作为交换机使用
特点:不需要创建新网段,只是相当于在主路由器下接了一个“具有特别功能”的交换机
设置步骤1.设置Openwrt连接路由器的LAN口地址为静态(方便管理)
1.删除所有的接口,保留LAN口就可以
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from scapy.all import * | |
| import ipaddress | |
| import argparse | |
| # from https://npfs06.top/ | |
| # need install scapy: | |
| # pip isntall scapy | |
| def icmp_request(ip_dst): | |
| global a # call a |
NewerOlder