-
waf域名
- huaweicloudwaf.com
- huaweicloudwaf.cn
- waf.huaweicloud.com
-
ddos
- aliyunddos0012.com
- aliyunddos0*.com
-
oss
This file contains 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 threading import Thread | |
n = 100000000 | |
def CountDown(n): | |
while n > 0: | |
n -= 1 | |
def test1(): | |
CountDown(n) |
This file contains 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
<body> | |
can you alert "flag"? <br> | |
<pre> | |
source code: https://gist.github.com/leveryd/40fcaed60727b6163b034145e332640f | |
</pre> | |
<script> | |
function hello(a, b, c){ | |
if(a=="a" && b=="b" && c=="c"){ |
This file contains 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
# coding:utf-8 | |
""" 管理后台、未授权的管理后台 """ | |
import unittest | |
from urllib2 import urlparse | |
from bs4 import BeautifulSoup | |
from bs4.element import Tag | |
from poc_common.utils import get_hostname_port_url | |
from poc_common.utils import c_requests as requests | |
from scripts.poc_common.misinformation import is_valid |
This file contains 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
func ExtractFromText(text string) []string { | |
s := utils.NewStringSet() | |
reg := regexp.MustCompile(`'(/[\w\d\-./]+)'?`) | |
apis := reg.FindAllString(text, -1) | |
for _, api := range apis { | |
api = reg.ReplaceAllString(api, "$1") | |
if strings.HasPrefix(api, "//") == true { | |
continue |
This file contains 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
启信宝查询结果,总共241条 | |
[u'bdeceimg.com', u'baidu.com', u'baidu.mobi', u'baiduapp.com', u'baidu-2img.cn', u'baidu-img.cn', u'baidu-1img.cn', u'baidu-3img.cn', u'baidustatic.com', u'baidu-jpgnew.com', u'baidu-imgnew.com', u'baiducontent.com', u'baidu-tech.com', u'baiduwebgame.com', u'baidu-img.com', u'baidu-jpg.com', u'baiduux.com', u'baidupcs.cn', u'baidupcs.com.cn', u'baidupcs.com', u'baidupcs.net', u'baiduyangguang.org', u'baifubao.com', u'bdimg.com', u'dwz.cn', u'duapp.com', u'cloudajs.org', u'clouda.com', u'hao123img.com', u'hao123.com', u'hao222.net', u'hao222.com', u'jomodns.com', u'hongmeiti.net', u'hongmeiti.cn', u'hongmeiti.com', u'hongmeiti.com.cn', u'dnsproxy.cn', u'dusdn.net', u'fhldns.net', u'fhldns.cn', u'fhldns.com.cn', u'dusdn.com', u'dnsproxy.com.cn', u'911dns.com.cn', u'dusdn.cn', u'fhldns.com', u'911dns.cn', u'bddns.cn', u'bdstatic.com', u'bdstatic.cn', u'estrongs.com', u'tieba.com', u'haluan2u.com', u'tradaquan.com', u'lasmasas.com', u'jingling.cn', u'eyoubaidu.com', u'nuomi.com', u'bcehosts.com', |
This file has been truncated, but you can view the full file.
This file contains 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
_waf_HOOK_LIST = ["http://www.jitashe.org/xx"]; | |
_waf_NC_APPKEY = "NND3"; | |
function _waf_reset_ua_opt(argument) { | |
if (!window.UA_Opt) { | |
window.UA_Opt = new Object; | |
} | |
UA_Opt.SendInterval = 5, | |
UA_Opt.SendMethod = 8, |
This file contains 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
# coding:utf-8 | |
""" | |
1. 安装依赖 | |
pip3 install scapy | |
2. 修改TCPOptions数据结构,增加options类型 | |
文件位置大概在 /usr/local/lib/python3.6/site-packages/scapy/layers/inet.py |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <signal.h> | |
#include <unistd.h> | |
long int count; | |
void sig_term_handler(int signum, siginfo_t *info, void *ptr) |
This file contains 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
#include <pthread.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#define NUM_OF_TASKS 1 | |
void *func() | |
{ |
OlderNewer